/* ==========================
   GLOBAL STYLES
========================== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --gold:#d3bf9e;
  --hover-gold:#986641;
  --dark:#272016;
  --dark-gray:#5a3a21;
  --light:#fcfbf6;
  --muted:#f8eee5;
}
html{
scroll-behavior:smooth;
}
body{
  font-family:'Source Sans 3',sans-serif;
  background:var(--light);
  color:var(--dark-gray);
  line-height:1.8;
  overflow-x:hidden;
}

.hero-content h1,
.section-title,
.footer h3,
.footer h4{
  font-family:'Abril Fatface',serif;
  font-weight:400;
}

/* ==========================
   HERO SECTION
========================== */
.hero-video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-2;
    animation: heroZoom 20s ease-in-out infinite alternate;

  pointer-events:none;
}

@keyframes heroZoom{
  0%{
    transform:scale(1);
  }
  100%{
    transform:scale(1.1);
  }
}
.hero-left{
  animation: fadeUp 1.2s ease forwards;
}

.hero-form{
  animation: fadeUp 1.6s ease forwards;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
.hero{
  position:relative;
  height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
}


/* DARK OVERLAY */

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
  z-index:-1;
}

/* HERO CONTAINER */

.hero-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width:1200px;
  margin:auto;
  padding:0 20px;
  width:100%;
  z-index: 2;
}

/* LEFT CONTENT */

.hero-left{
  max-width:550px;
  color:white;
}

.hero-tagline{
  display:inline-block;
  color:var(--gold);
  letter-spacing:3px;
  font-size:13px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.hero-left h1{
  font-size:64px;
  line-height:1.2;
  color:var(--light);
}

.hero-left h1 span{
  color:var(--gold);
}

.hero-services{
  margin-top:20px;
  color:#e8e3dc;
  letter-spacing:2px;
  font-size:14px;
}

/* CTA BUTTON */

.cta{
  display:inline-block;
  margin-top:40px;
  padding:16px 40px;
  font-weight:600;
  font-size:14px;
  background:var(--gold);
  color:var(--dark);
  border-radius:30px;
  text-decoration:none;
  transition:all .3s ease;
}

.cta:hover{
  background:var(--hover-gold);
  transform:translateY(-3px);
}

/* FORM */

.hero-form{
  background:white;
  padding:30px;
  border-radius:10px;
  width:320px;
  box-shadow:0 15px 40px rgba(0,0,0,0.3);
}

.hero-form h3{
  margin-bottom:15px;
  color:var(--dark);
}

.hero-form input,
.hero-form select{
  width:100%;
  padding:10px;
  margin-bottom:12px;
  border:1px solid #ddd;
  border-radius:6px;
}

.hero-form button{
  width:100%;
  padding:12px;
  background:var(--gold);
  border:none;
  color:white;
  font-weight:600;
  cursor:pointer;
  border-radius:6px;
  transition:.3s;
}

.hero-form button:hover{
  background:var(--hover-gold);
}

/* ==========================
   HERO RESPONSIVE
========================== */

@media (max-width: 900px){

  .hero-container{
    flex-direction:column;
    text-align:center;
    gap:40px;
  }

  .hero-left h1{
    font-size:42px;
  }

}

@media (max-width: 500px){

  .hero{
    height:auto;
    padding:120px 20px 80px;
  }

  .hero-left h1{
    font-size:34px;
  }

  .hero-form{
    width:100%;
  }

}
/* ==========================
   HERO RESPONSIVE
========================== */

@media (max-width: 1024px){

  .hero-content{
    margin-left:40px;
  }

  .hero-content h1{
    font-size:52px;
  }

}

/* Tablet & Mobile */

@media (max-width: 768px){

  .hero{
    min-height:100vh;
    padding:120px 24px 80px;
    align-items:flex-start;
  }

  .hero-content{
    margin-left:0;
    max-width:100%;
    text-align:left;
  }

  .hero-tagline{
    font-size:12px;
    letter-spacing:2px;
    margin-bottom:14px;
  }

  .hero-content h1{
    font-size:40px;
    line-height:1.15;
  }

  .hero-services{
    font-size:13px;
    letter-spacing:1px;
    margin-top:18px;
    max-width:100%;
  }

  .hero-pricing{
    margin-top:28px;
    gap:16px;
    flex-direction:column;
  }

  .price-box{
    width:40%;
    padding:18px 20px;
  }

  .price-box h3{
    font-size:24px;
  }

  .cta{
    margin-top:32px;
    width:100%;
    text-align:center;
    padding:14px 0;
  }

}

/* Small Phones */

@media (max-width: 480px){

  .hero-content h1{
    font-size:34px;
  }

  .hero-services{
    font-size:12px;
  }

  .hero-tagline{
    font-size:11px;
  }

}


/* ==========================
   SECTIONS BASE
========================== */
.section {
  padding: 100px 80px;
}

.section-title {
  font-size: 46px;
  text-align: center;
  margin-bottom: 50px;
}


/* ==========================
   STATISTICS – FULL WIDTH
========================== */

.statistics {
    background: var(--dark);
    padding: 60px 20px;
    text-align: center;
    color: var(--muted);
    width: 100%;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

.stat-item {
    flex: 1 1 200px;
}

.stat-number {
    font-size: 60px;
    font-family: 'Abril Fatface', serif;
    color: var(--muted);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 18px;
    color: var(--light);
    font-weight: 500;
}

/* Mobile */
@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .stat-number {
        font-size: 48px;
    }

    .stat-item p {
        font-size: 16px;
    }
}

/* ============================
   WHY ELLORA – ULTRA PREMIUM
============================ */

.why-ellora{
  background:
    radial-gradient(circle at top right, rgba(211,191,158,0.12), transparent 40%),
    linear-gradient(180deg, #0b0b0b, #111);
  padding:120px 70px;
  color:var(--muted);
  position:relative;
}

/* Soft gold divider line */

.why-ellora::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:160px;
  height:3px;
  background:linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Subtitle */

.section-subtitle{
  text-align:center;
  max-width:720px;
  margin:20px auto 90px;
  color:#cfcfcf;
  font-size:17px;
  line-height:1.8;
  letter-spacing:.6px;
}

/* GRID */

.ellora-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:100px;
  align-items:center;
}

/* LEFT CONTENT */
.ellora-text{
  position: relative;
  bottom:30px;
}


.ellora-text h3{
  font-size:32px;
  color:var(--gold);
  margin-bottom:28px;
  font-family:'Abril Fatface', serif;
  letter-spacing:1.6px;
}

.ellora-text p{
  color:#e0e0e0;
  font-size:17px;
  line-height:1.9;
  margin-bottom:26px;
}

/* RIGHT CARDS */

.ellora-cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:36px;
}

.ellora-card{
  background:rgba(20,20,20,0.75);
  backdrop-filter:blur(12px);
  padding:42px 34px;
  border-radius:20px;
  text-align:center;
  transition:all .45s ease;
  border:1px solid rgba(211,191,158,0.15);
  box-shadow:0 15px 40px rgba(0,0,0,.6);
}

/* ICON */

.ellora-card i{
  font-size:38px;
  color:var(--gold);
  margin-bottom:20px;
}

/* TITLE */

.ellora-card h4{
  color:#fff;
  font-size:19px;
  margin-bottom:12px;
  letter-spacing:1px;
}

/* TEXT */

.ellora-card p{
  color:#cfcfcf;
  font-size:15px;
  line-height:1.7;
}

/* HOVER */

.ellora-card:hover{
  transform:translateY(-12px) scale(1.03);
  box-shadow:0 25px 60px rgba(211,191,158,0.25);
  border-color:var(--gold);
}

.ellora-card:hover i{
  text-shadow:0 0 14px rgba(211,191,158,0.9);
}
/* button */

.why-cta-outline {
  border: 1.5px solid var(--gold);
  padding: 12px 36px;
  border-radius: 30px;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  top: 25px;
}

.why-cta-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

/* TRUST STRIP */

.ellora-trust{
  margin-top:100px;
  padding-top:45px;
  border-top:1px solid rgba(255,255,255,0.12);
  display:flex;
  justify-content:center;
  gap:60px;
  flex-wrap:wrap;
  color:#e0e0e0;
  font-size:15px;
  letter-spacing:.6px;
}

.ellora-trust span{
  display:flex;
  align-items:center;
  gap:10px;
}

/* RESPONSIVE */

@media(max-width:992px){

  .ellora-grid{
    grid-template-columns:1fr;
    gap:70px;
  }

}

@media(max-width:600px){

  .why-ellora{
    padding:90px 25px;
  }

  .ellora-cards{
    grid-template-columns:1fr;
  }

}


/* ==========================
   ABOUT SECTION
========================== */

.about{
  background:var(--light);
  padding:100px 20px;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
  max-width:1200px;
  margin:auto;
}

.about-image{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.about-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* Optional overlay (soft effect) */
.video-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.4));
  pointer-events: none;
}

/* VIDEO OVERLAY */

.video-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.15),
    rgba(0,0,0,.35)
  );
  border-radius:12px;
}

/* TEXT SIDE */

.about-text h3{
  font-size:34px;
  margin-bottom:20px;
  color:var(--dark);
}

.about-text p{
  color:var(--dark-gray);
  line-height:1.9;
  font-size:16px;
  margin-bottom:20px;
}

/* BUTTON */

.cta-outline{
  display:inline-block;
  margin-top:15px;
  border:1.5px solid var(--gold);
  padding:14px 40px;
  border-radius:30px;
  color:var(--gold);
  text-decoration:none;
  font-weight:500;
  transition:.3s ease;
}

.cta-outline:hover{
  background:var(--gold);
  color:var(--dark);
}

/* ==========================
   ABOUT RESPONSIVE
========================== */

@media(max-width:900px){

  .about-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .about-image video{
    height:360px;
  }

}

@media(max-width:500px){

  .about{
    padding:70px 20px;
  }

  .about-text h3{
    font-size:28px;
  }

  .about-text p{
    font-size:15px;
  }

}



/* ==========================
   VIDEO TESTIMONIAL
========================== */

/* ==========================
   VIDEO TESTIMONIAL – PREMIUM FIX
========================== */

.video-testimonial{
  padding: 120px 20px;
  background: linear-gradient(180deg, #0c0c0c, #111);
  color: #fff;
  text-align: center;
}

.video-testimonial-container{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

/* VIDEO BOX */
.video-box{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}

/* VIDEO */
.video-box video{
  width: 100%;
  display: block;
  border-radius: 16px;
  cursor: pointer;
}

/* REMOVE BLOCKING OVERLAY */
.video-overlay{
  display: none;
}

/* PLAY BUTTON */
.play-btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 22px;
  pointer-events: none;
  transition: .3s ease;
}

/* Hide play button when playing */
.video-box.playing .play-btn{
  opacity: 0;
}

/* TEXT */
.video-text{
  text-align: left;
}

.video-quote{
  font-size: 20px;
  line-height: 1.9;
  font-style: italic;
  color: #eaeaea;
}

.video-text h4{
  margin-top: 25px;
  color: var(--gold);
  font-size: 18px;
}

.video-text span{
  color: #bbb;
  font-size: 14px;
}

/* MOBILE */
@media(max-width:768px){
  .video-testimonial-container{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .video-text{
    text-align: center;
  }
}
/* =====================================
   WHY CHOOSE US – PREMIUM SECTION
===================================== */

.why-us-section{
  display:grid;
  grid-template-columns: 2fr 1fr;
  background:#6b3d05; /* rich brown */
  min-height:100vh;
}

/* LEFT SIDE */

.why-left{
  padding:70px 60px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}
.price-boxes{
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
  padding:22px 30px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.15);
  min-width:220px;
  transition:.4s ease;
}

.price-boxes:hover{
  transform:translateY(-6px);
  background:rgba(255,255,255,.12);
}

.price-boxes small{
  font-size:12px;
  letter-spacing:1.5px;
  color:#ddd;
}
.price-boxes h3{
  color:#fff;
  font-size:20px;
  margin-bottom:20px;
  letter-spacing:1px;
}

.price-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:18px;
  color:#fff;
  font-size:16px;
}

.price-pill{
  background:#f4efe9;
  color:#6b3d05;
  padding:10px 20px;
  border-radius:40px;
  font-weight:600;
  font-size:15px;
}

/* RIGHT SIDE */

.why-right{
  background:#f6f2ea;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.why-content{
  padding:80px 60px 40px;
}

.why-content h2{
  font-size:48px;
  color:#6b3d05;
  margin-bottom:25px;
}

.why-content p{
  color:#4b3a2b;
  line-height:1.8;
  font-size:16px;
  margin-bottom:40px;
}

.why-content h3{
  font-size:42px;
  color:#6b3d05;
  font-weight:600;
}


/* WHY US FEATURES */

.why-features{
  margin-top:30px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

.feature-item{
  display:flex;
  align-items:center;
  gap:10px;
}

.feature-item span{
  color:var(--gold);
  font-size:18px;
}

.feature-item p{
  font-size:15px;
  color:#4b2a0a;
  letter-spacing:1px;
  margin:0;
}

/* Mobile */
@media(max-width:768px){
  .why-features{
    grid-template-columns:1fr;
  }
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:1024px){
  .why-us-section{
    grid-template-columns:1fr;
  }

  .why-left{
    grid-template-columns:1fr;
  }

  .why-content h2{
    font-size:36px;
  }

  .why-content h3{
    font-size:32px;
  }
}

@media(max-width:600px){

  .why-left{
    padding:50px 25px;
  }

  .why-content{
    padding:50px 25px;
  }

  .price-row{
    font-size:14px;
  }

  .price-pill{
    font-size:13px;
    padding:8px 18px;
  }
}
/* ==========================
   SERVICES
========================== */
.services{
  background: var(--muted);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.service-card {
  position: relative;
  color: #fff;
  padding: 50px 30px;
  text-align: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.8s ease;
  background-size: cover;
  background-position: center;
  text-shadow: 0 4px 12px rgba(0,0,0,0.7);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(30px);
    min-height: 300px;
     background-size: cover;
  background-position: center;

}

.service-card.active {
  opacity: 1;
  transform: translateY(0);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  transition: background 0.3s ease;
}

.service-card:hover::before {
  background: rgba(0,0,0,0.2);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.7);
}

.service-icon {
  width: 50px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card:nth-child(1){
  background-image: url("../img/ellora/living-room.jpeg");
}

.service-card:nth-child(2){
  background-image: url("../img/ellora/kitchen.jpg");
}

.service-card:nth-child(3){
  background-image: url("../img/ellora/master bedroom.png");
}

.service-card:nth-child(4){
  background-image: url("../img/ellora/wadrobe front.png");
}

.service-card:nth-child(5){
  background-image: url("../img/ellora/office-interior.jpg");
}

.service-card:nth-child(6){
  background-image: url("../img/ellora/renovation2.jpeg");
}


/* ==========================
   TESTIMONIALS – PREMIUM
========================== */


.testimonials {
    background: var(--light);
    padding: 100px 20px;
    text-align: center;
}

.testimonials h2.section-title {
    
    margin-bottom: 60px;
    position: relative;
}

/* Testimonial Grid */
.testimonial-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Individual Testimonial Card */
.testimonial-box {
    background: var(--hover-gold);
    padding: 50px 30px 30px 30px;
    border-radius: 20px;
    max-width: 350px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.7);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.7);
}

/* Quote Icon */
.quote-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 70px;
    color: var(--gold);
    opacity: 0.3;
}

/* Client Photo */
.client-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 20px auto 15px auto;
    border: 3px solid var(--light);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Testimonial Text */
.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--light);
    font-style: italic;
    margin: 15px 0 20px 0;
}

/* Client Info */
.client-info h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 5px;
}

.client-info span {
    color: var(--muted);
    font-size: 14px;
}

/* Mobile */
@media(max-width: 992px){
    .testimonial-grid {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .testimonial-box {
        max-width: 90%;
    }
}

/* ===============================
   FAQ SECTION
=============================== */
.faq-section {
  padding: 100px 60px;
  background: var(--muted);
  text-align: left;
}

.faq-title {
  margin-bottom: 50px;
  text-align: center;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--dark-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: .3s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
}

.faq-answer {
  display: none;
  padding: 10px 0 20px;
  color: #444;
  font-size: 17px;
  line-height: 1.7;
}

/* Open state */
.faq-answer.show {
  display: block;
}

/* ==========================
   CTA BANNER
========================== */

.cta-banner {
  background: var(--dark);
  padding: 120px 20px;
  text-align: center;
}

.cta-banner h2 {
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 24px;
}


/* ==========================
   EXTRA UI ELEMENTS
========================== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 26px;
  transition: 0.3s;
  z-index: 10;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

#scrollTopBtn {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 45px;
  height: 45px;
  border: none;
  background: var(--gold);
  border-radius: 50%;
  display: none;
  cursor: pointer;
  font-size: 18px;
  z-index: 100;
  transition: 0.3s;
}

#scrollTopBtn:hover {
  background: var(--hover-gold);
}

.sticky-offer {
  position: fixed;
  right: 0;
  top: 40%;
  background: var(--gold);
  color: #000;
  padding: 8px 10px;
  writing-mode: vertical-rl;
  letter-spacing: 2px;
  border-radius: 4px 0 0 4px;
  z-index: 100;
}

/* ==========================
   RESPONSIVE
========================== */
@media(max-width:768px){
  .faq-title {
    font-size: 34px;
  }
  .faq-question {
    font-size: 18px;
  }
}
@media(max-width: 1200px) {
 
  .services-grid { gap: 20px; }
}

@media(max-width: 900px) {

  .section { padding: 60px 24px; }
  
  .about-grid, .services-grid, .gallery-grid, .why-grid { grid-template-columns: 1fr; }
  .services-grid { height: auto; }
  
  .service-card { padding: 40px 20px; font-size: 16px; }
  .footer-container { grid-template-columns: 1fr; gap: 40px; }
  .cta-banner h2 { font-size: 32px; }
}

@media(max-width: 600px) {
  .sticky-offer { top: 35%; padding: 6px 8px; }
}
