/* RESET */



*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
color:#333;
line-height:1.6;
/* change from white */
}


/* CONTAINER */

.container{
width:90%;
max-width:1200px;
margin:auto;
}


/* HEADER */

.header{
background:#fff;
position:sticky;
top:0;
z-index:1000;
border-bottom:1px solid #eee;
}

.nav-container{
display:grid;
grid-template-columns: 1fr auto 1fr;
align-items:center;
padding:15px 0;
}


/* LOGO */

.logo img{
width:100px;
}


/* BRAND CENTER */

.brand-center{
text-align:center;
}

.brand-title{
font-size:24px;
font-weight:700;
letter-spacing:1px;
}

.brand-red{
color:#e60000;
}

.brand-black{
color:#111;
margin-left:5px;
}

.brand-tag{
font-size:13px;
color:#e60000;
font-weight:500;
letter-spacing:1px;
margin-top:2px;
}
.trusted{
    font-weight: bold;
    position: relative;
    left: -10px;
}


/* NAV AREA */

.nav-area{
display:flex;
justify-content:flex-end;
align-items:center;
gap:20px;
}


/* NAVIGATION */

.nav ul{
display:flex;
gap:35px;
list-style:none;
}

.nav-link{
text-decoration:none;
color:#333;
font-weight:500;
position:relative;
padding-bottom:6px;
transition:0.3s;
}


/* NAV UNDERLINE ANIMATION */

.nav-link::after{

content:'';
position:absolute;
width:0%;
height:2px;
left:0;
bottom:0;
background:#e60000;
transition:0.3s;

}

.nav-link:hover::after{
width:100%;
}

.nav-link.active::after{
width:100%;
}


/* HAMBURGER */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}


/* HERO PLACEHOLDER */

.hero{
height:70vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
background:#f5f5f5;
text-align:center;
}

.hero h1{
font-size:48px;
margin-bottom:10px;
}

.hero p{
font-size:18px;
color:#666;
}


/* IMAGE SLIDER */

.project-slider{
background:#fff;
padding:40px 0;
overflow:hidden;
}

.slider-row{
width:100%;
overflow:hidden;
margin:20px 0;
}

.slider-track{
display:flex;
gap:20px;
width:max-content;
}

.slider-track img{
width:300px;
height:200px;
object-fit:cover;
border-radius:6px;
box-shadow:0 4px 10px rgba(0,0,0,0.15);
}


/* LEFT SCROLL */

.slider-left .slider-track{
animation:scrollLeft 40s linear infinite;
}

/* RIGHT SCROLL */

.slider-right .slider-track{
animation:scrollRight 40s linear infinite;
}


@keyframes scrollLeft{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

@keyframes scrollRight{

0%{
transform:translateX(-50%);
}

100%{
transform:translateX(0);
}

}


/* CTA */

.cta{
background:#e60000;
color:#fff;
text-align:center;
padding:60px 20px;
}

.cta h2{
font-size:32px;
margin-bottom:20px;
}

.cta-btn{
background:#fff;
color:#e60000;
padding:14px 30px;
text-decoration:none;
font-weight:600;
border-radius:4px;
transition:0.3s;
}

.cta-btn:hover{
background:#111;
color:#fff;
}


/* FOOTER */
.footer {
  background: #0d0d0d;
  color: #fff;
  padding: 50px 0 20px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  text-align: center;
  gap: 20px;
}

/* LEFT */
.footer-left h3 {
  color: #e60023;
  margin-bottom: 10px;
}

/* CENTER */
.footer-center h3 {
  color: #e60023;
  margin-bottom: 15px;
}

.map-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #e60023;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
}

.map-btn:hover {
  background: #c4001d;
}

/* RIGHT */
.footer-right h3 {
  color: #e60023;
  margin-bottom: 10px;
}

.footer-right p {
  margin: 5px 0;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #222;
  font-size: 14px;
  color: #aaa;
}

.map-box {
  width: 100%;
  height: 150px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* MOBILE VIEW */
@media (max-width: 768px) {

  .footer-grid {
    grid-template-columns: 1fr;   /* 🔥 stack vertically */
    text-align: center;
    gap: 30px;
  }

  /* SPACING BETWEEN SECTIONS */
  .footer-left,
  .footer-center,
  .footer-right {
    margin-bottom: 10px;
  }

  /* MAP HEIGHT SMALLER */
  .map-box {
    height: 180px;
  }

}
/* RESPONSIVE */



@media(max-width:768px){

/* HEADER LAYOUT */

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
position:relative;
}

/* LOGO */

.logo img{
width:75px;
}


/* BRAND CENTER */

.brand-center{
position:absolute;
left:50%;
transform:translateX(-50%);
text-align:center;
}

.brand-title{
font-size:18px;
}

.brand-tag{
font-size:11px;
}


/* NAV MENU */

.nav{
display:none;
position:absolute;
top:85px;
left:0;
width:100%;
background:#fff;
border-top:1px solid #eee;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.nav ul{
flex-direction:column;
padding:20px;
gap:20px;
}

.nav.active{
display:block;
}


/* HAMBURGER */

.menu-toggle{
display:block;
font-size:28px;
cursor:pointer;
}


/* HERO */

.hero h1{
font-size:30px;
}

.hero p{
font-size:15px;
}


}


/* ================= HOME SLIDER ================= */

.home-slider{
width:100%;
overflow:hidden;
position:relative;
background:#fff;
}

.slider-wrapper{
width:100%;
}

/* TRACK */

.slides-track{
display:flex;
transition:transform 0.7s ease;
}

/* SLIDE */

.slide{
min-width:100%;
display:grid;
grid-template-columns:repeat(3,1fr);
}

/* IMAGE */

.slide img{
width:100%;
aspect-ratio:4/3;
object-fit:cover;
display:block;
}

/* ARROWS */

.slider-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.35);
color:#fff;
border:none;
font-size:26px;
width:40px;
height:55px;
cursor:pointer;
z-index:5;
}

.prev{ left:0; }
.next{ right:0; }

/* DOTS */

.slider-dots{
position:absolute;
bottom:12px;
width:100%;
display:flex;
justify-content:center;
gap:8px;
}

.dot{
width:10px;
height:10px;
background:#ccc;
border-radius:50%;
cursor:pointer;
}

.dot.active{
background:#f2b705;
}

/* MOBILE */

@media (max-width:768px){

.slide{
    
grid-template-columns:repeat(3,1fr);
}

.slide img{
height:115px;          /* increase this as you want */
aspect-ratio:auto;     /* override desktop ratio */
object-fit:cover;
}

}

.brand{
display:flex;
align-items:flex-start;
font-family:'Poppins',sans-serif;
}

/* ARVIND */

.arvind{
color:#e60000;
font-size:26px;
font-weight:700;
margin-right:6px;
}

/* HOMES + TRUSTED BLOCK */

.homes-block{
display:flex;
flex-direction:column;
align-items:flex-start;
}

/* HOMES */

.homes{
color:#111;
font-size:26px;
font-weight:700;
}

/* TRUSTED MARK */

.trusted{
color:#e60000;
font-size:12px;
letter-spacing:1px;
margin-top:-15px;
}

/* ================= INTRO SECTION ================= */

.home-intro{
  height: 120px;              /* control section height */
  display: flex;
  align-items: center;        /* 🔥 vertical center */
  justify-content: center;    /* 🔥 horizontal center */
  padding: 0;                 /* remove extra space */
}

/* HEADING */
.section-title{
  margin-top: 60px;
  margin-bottom: 60px;                 /* remove all gaps */
  padding: 0;
  line-height: 1.2;
  text-align: center;
}

/* GRID */

.service-cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

/* CARD */

.service-card{
background:#fff;
border-radius:6px;
overflow:hidden;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
transition:0.3s;
}

.service-card:hover{
transform:translateY(-6px);
box-shadow:0 4px 15px rgba(255, 0, 0, 0.08);
background:#ffb0b0;

}

/* IMAGE */

.service-card img{
width:100%;
aspect-ratio:4/3;
object-fit:cover;
}

/* TEXT */

.service-card h3{
font-size:20px;
margin:15px;
color:#111;
}

.service-card p{
font-size:14px;
color:#555;
margin:0 15px 20px 15px;
line-height:1.6;
}


/* MOBILE */

@media(max-width:768px){

.service-cards{
grid-template-columns:1fr;
}

.section-title{

font-size:24px;
}

}



/* ================= STATS SECTION ================= */

.stats-section{
background:#f7f7f7;
padding:70px 20px;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
text-align:center;
}

.stat-box{
padding:20px;
}

.stat-box h2{
font-size:42px;
color:#e60000;
margin-bottom:8px;
}

.stat-box p{
font-size:16px;
color:#444;
}

/* MOBILE */

@media(max-width:768px){

.stats-grid{
grid-template-columns:1fr;
}

.stat-box h2{
font-size:34px;
}

}


.process-section{
padding:40px 20px;
background:#fafafa;
}

.section-title{
text-align:center;
font-size:34px;
margin-bottom:60px;
}

/* GRID */

.process-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
position:relative;
}



/* horizontal timeline */

.process-grid::before{
content:"";
position:absolute;
top:50px;
left:0;
width:100%;
height:3px;
background:#fafafa;

z-index:0;
}  


/* CARD */

.process-card{
background:#fff;
border-radius:6px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
overflow:hidden;
text-align:center;
position:relative;
z-index:1;

opacity:0;
transform:translateY(40px);
transition:0.6s;
}

.process-card.show{
opacity:1;
transform:translateY(0);
}

.process-card img{
width:100%;
aspect-ratio:4/3;
object-fit:cover;
}

.process-card h3{
color:#ff3c3c;
margin:15px;
}

.process-card p{
margin:0 15px 20px;
font-size:14px;
line-height:1.6;
}

/* dot */

.dot{
width:16px;
height:16px;
background:#ff3c3c;
border-radius:50%;
position:absolute;
top:-8px;
left:50%;
transform:translateX(-50%);
}

/* MOBILE */

@media(max-width:768px){

.process-grid{
grid-template-columns:1fr;
padding-left:40px;
}

/* vertical line */

.process-grid::before{
    background: red;
top:0;
left:15px;
width:3px;
height:100%;
}

.dot{
left:-27px;
top:20px;
transform:none;
}

}

