/* =================== NAVBAR ====================== */

body {
  padding-top: 90px; /* space to avoid overlap */
  margin: 0;
  overflow-x: hidden;
}

nav.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  background: white;
  z-index: 999;
  border-radius: 0 0 40px 40px;
  padding: 12px 0;
  transition: .4s ease;
}

nav.navbar.sticky {
  position: fixed;
  background: #ffffff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.15);
}

/* LOGO */
.navbar .navbar-brand img {
  height: 80px;
  width: auto;
}

/* MENU LINKS */
.navbar .nav-link {
  color: black !important;
  font-weight: 600;
  text-transform: capitalize;
  padding: 8px 15px !important;
  transition: .3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #7a3d30 !important;
}

/* TOGGLER */
.navbar-toggler {
  border: none;
  font-size: 26px;
  color: black;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* DROPDOWN */
.dropdown-menu {
  border-radius: 10px;
  padding: 12px 0;
}

.dropdown-item {
  font-weight: 500;
  text-transform: capitalize;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .navbar-collapse {
    background: white;
    padding: 15px 10px;
    border-radius: 15px;
    margin-top: 15px;
    text-align: center;
  }
  .navbar-nav .nav-item { margin: 10px 0; }
  nav.navbar { border-radius: 0 0 15px 15px; }
}



/* =================== NAVBAR    END ====================== */






    /* ================== 2. ABOUT / MISSION ================== */

    .about-mission-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px;
      padding: 60px 30px;
      background: #f7f1ea;
      border-radius: 20px;
      overflow: hidden;
      max-width: 1200px;
      margin: 40px auto;
    }

    .left-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 15px;
    }

    .right-grid {
      display: grid;
      gap: 20px;
    }

    .box {
      background: #e3d5cc;
      padding: 35px;
      border-radius: 15px;
    }

    .box h3 {
      margin-bottom: 12px;
      font-size: 22px;
      font-weight: 600;
    }

    .box p {
      font-size: 15px;
      line-height: 1.6;
    }

    @media (max-width: 992px) {
      .about-mission-section {
        grid-template-columns: 1fr;
      }
      .left-img {
        order: 1;
      }
      .right-grid {
        order: 2;
      }
    }

    @media (max-width: 576px) {
      .about-mission-section {
        padding: 40px 20px;
      }
      .box {
        padding: 25px;
      }
      .box h3 {
        font-size: 20px;
      }
      .box p {
        font-size: 14px;
      }
    }

    /* ================== 3. CURTAIN SECTION ================== */

    .curtainSection {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 500px;
      overflow: hidden;
    }

    .curtainContent {
      width: 100%;
      height: 100%;
      position: relative;
    }

    .curtainContent img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    @media (max-width: 576px) {
      .curtainSection {
        height: 90vh;
      }
      .curtainContent img {
        object-position: center top;
      }
    }

    .topShape {
      position: absolute;
      top: 0;
      width: 100%;
      height: 120px;
      background:#671411;
      clip-path: ellipse(60% 100% at 50% 0%);
      z-index: 10;
    }

    .curtainContainer {
      position: absolute;
      top: 0;
      height: 100%;
      width: 50%;
      display: flex;
      transition: transform 5s cubic-bezier(.25,.8,.25,1);
      z-index: 5;
      pointer-events: none;
    }

    #leftCurtain { left: 0; justify-content: flex-end; transform: translateX(0); }
    #rightCurtain { right: 0; justify-content: flex-start; transform: translateX(0); }

    .unCurtain {
      width: 10vw;
      height: 100%;
      background: repeating-linear-gradient(
        to left,
        var(--accent) 5vw,
        #8c1212 10vw,
        #f26b6b 12vw
      );
      animation: swing 4s ease-in-out infinite;
      transform-origin: center;
    }

    .open #leftCurtain { transform: translateX(-150%); }
    .open #rightCurtain { transform: translateX(150%); }

    @keyframes swing {
      50% { transform: rotate(-1.5deg); }
    }

    .overlay {
      position: absolute;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
      transition: opacity 5s ease-in-out;
      z-index: 6;
    }
    .open .overlay { opacity: 0; }

    @media(max-width:1200px) {
      .unCurtain { width: 12vw; }
    }

    @media(max-width:992px) {
      .curtainContainer { width: 55%; }
      .topShape { height: 90px; }
    }

    @media(max-width:768px) {
      .curtainContainer { width: 65%; }
      .unCurtain { width: 18vw; }
      .topShape { clip-path: ellipse(75% 100% at 50% 0%); }
    }

    @media(max-width:576px) {
      .curtainContainer { width: 75%; }
      .unCurtain { width: 22vw; }
      .topShape { height: 70px; clip-path: ellipse(85% 100% at 50% 0%); }
    }

    @media(max-width:400px) {
      .curtainContainer { width: 90%; }
      .unCurtain { width: 28vw; }
    }

    /* ================== 4. MIRROR SHOWCASE SECTION ================== */

    .mirrorShowcase {
      width: 100%;
      padding: 80px 20px;
      background: #f5e9dc;
      display: flex;
      justify-content: center;
    }

    .mirrorShowcase-container {
      max-width: 1400px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 50px;
    }

    .mirrorShowcase-content {
      width: 50%;
      text-align: center;
      color: var(--text-dark);
    }

    .mirrorShowcase-content h2 {
      font-size: clamp(32px, 4vw, 64px);
      font-weight: 600;
      line-height: 1.2;
      margin-bottom: 25px;
    }

    .mirrorShowcase-btn {
      padding: 10px 25px;
      border: 1px solid var(--text-dark);
      border-radius: 25px;
      background: transparent;
      font-size: 15px;
      cursor: pointer;
      text-decoration: none;
      color: var(--text-dark);
      transition: .3s ease;
    }

    .mirrorShowcase-btn:hover {
      background: var(--text-dark);
      color: #fff;
    }

    .mirrorShowcase-image {
      width: 50%;
      position: relative;
    }

    .mirrorShowcase-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .mirrorShowcase-tag {
      position: absolute;
      right: 45px;
      top: 50%;
      transform: translateY(-50%);
      background: var(--text-dark);
      color: #fff;
      padding: 18px 20px;
      border-radius: 50%;
      font-size: 16px;
      text-align: center;
      text-decoration: none;
      line-height: 18px;
      font-weight: 500;
    }

    @media (max-width: 1024px) {
      .mirrorShowcase-container {
        flex-direction: column;
        gap: 40px;
      }
      .mirrorShowcase-content,
      .mirrorShowcase-image {
        width: 100%;
      }
      .mirrorShowcase-tag {
        right: 20px;
        top: 40%;
      }
    }

    @media (max-width: 600px) {
      .mirrorShowcase-tag {
        right: 15px;
        padding: 14px 16px;
        font-size: 14px;
      }
    }

    /* ================== 5. HERO WITH FLOATING CARD ================== */

    .hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      margin-top: 40px;
    }

    .hero-image {
      width: 100%;
      height: 100vh;
      object-fit: cover;
      display: block;
      border-top-left-radius: 60px;
      border-top-right-radius: 60px;
    }

    .floating-card {
      position: absolute;
      right: 5%;
      top: 50%;
      transform: translateY(-50%);
      background: #fff;
      padding: 24px;
      border-radius: 16px;
      max-width: 420px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
      z-index: 10;
    }

    .floating-card h3 {
      margin-bottom: 12px;
      font-size: 1.4rem;
      font-weight: 700;
    }

    .floating-card p {
      margin: 12px 0 16px;
      font-size: 1rem;
      line-height: 1.5;
    }

    .card-image {
      width: 100%;
      height: auto;
      max-width: 350px;
      max-height: 240px;
      border-radius: 14px;
      display: block;
      margin: 0 auto 15px auto;
      object-fit: cover;
      border-top-left-radius: 60px;
      border-top-right-radius: 60px;
    }

    @media(max-width: 768px) {
      .hero-section {
        min-height: auto;
        padding: 0 0 120px 0;
      }

      .hero-image {
        height: 55vh;
        border-radius: 0;
      }

      .floating-card {
        position: relative !important;
        top: auto;
        right: auto;
        transform: none;
        margin: -40px auto 0;
        width: 92%;
        max-width: 380px;
        text-align: center;
        padding: 20px;
      }

      .card-image {
        max-width: 230px;
        max-height: 170px;
        border-top-left-radius: 32px;
        border-top-right-radius: 32px;
      }
    }

    @media(max-width: 480px) {
      .floating-card {
        width: 95%;
        margin-top: -30px;
        padding: 16px;
      }

      .card-image {
        max-width: 180px;
        max-height: 140px;
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
      }

      .floating-card h3 { font-size: 1.1rem; }
      .floating-card p { font-size: 0.88rem; }
    }

    /* ================== 6. SERVICES SECTION ================== */

    .serviceSection {
      width: 100%;
      background: black;
      color: white;
      padding: 80px 20px;
      display: flex;
      justify-content: center;
    }

    .serviceContainer {
      width: 100%;
      max-width: 1300px;
      margin: auto;
    }

    .serviceTitle {
      font-size: clamp(34px, 6vw, 70px);
      font-weight: 800;
    }

    .serviceSubtitle {
      font-size: 18px;
      margin-top: 10px;
      opacity: 0.7;
    }

    .serviceDivider {
      margin: 40px 0;
      border: none;
      border-top: 1px solid #fff;
    }

    .serviceRow {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 25px;
      padding: 40px 0;
      border-bottom: 1px solid #fff;
    }

    .serviceLeft,
    .serviceMiddle,
    .serviceRight {
      flex: 1 1 100%;
      text-align: center;
    }

    .serviceLeft h3 {
      font-size: 32px;
      font-weight: 600;
    }

    .serviceLeft span {
      font-size: 15px;
      opacity: 0.8;
      margin-top: 5px;
      display: block;
    }

    .serviceMiddle {
      font-size: 16px;
      line-height: 1.6;
      opacity: 0.9;
    }

    .serviceRight {
      display: flex;
      justify-content: center;
    }

    .serviceIcon {
      font-size: 45px;
      color: #8d8d8d;
    }

    @media (min-width: 992px) {
      .serviceLeft {
        flex: 0 0 30%;
        text-align: left;
      }
      .serviceMiddle {
        flex: 0 0 55%;
        text-align: left;
      }
      .serviceRight {
        flex: 0 0 10%;
        justify-content: flex-end;
      }
    }

    @media (max-width: 600px) {
      .serviceSection {
        padding: 60px 15px;
      }
    }

    /* ================== 7. FOOTER ================== */

    .custom-footer {
      background: #671411;
      padding: 80px 20px 40px;
      color: #fff;
      text-align: center;
      margin-top: 40px;
    }

    .footer-container {
      max-width: 1200px;
      margin: auto;
    }

    .footer-logo img {
      width: 160px;
      height: auto;
      margin-bottom: 30px;
    }

    .footer-line {
      border: none;
      border-top: 1px solid rgba(255,255,255,.4);
      width: 90%;
      margin: 0 auto 30px;
    }

    .footer-columns {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 50px;
      margin-bottom: 40px;
      text-align: center;
    }

    .footer-col h4 {
      margin-bottom: 15px;
      font-size: 18px;
      opacity: 0.9;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-col ul li {
      font-size: 18px;
      margin-bottom: 10px;
      transition: .3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .footer-col ul li i {
      font-size: 18px;
      color: #ffffffc1;
    }

    .footer-copy {
      margin-top: 10px;
      font-size: 15px;
      opacity: .75;
    }

    @media (max-width: 600px) {
      .footer-logo img {
        width: 120px;
      }
      .footer-col ul li {
        font-size: 16px;
      }
    }




  
  section { width:100%; padding:70px 20px; display:flex; justify-content:center; }

  .container {
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 20px;
  }

  /* ================== ABOUT CREATIVE ================== */
  .creativeAbout-container {
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:60px;
  }

  .creativeAbout-content { width:50%; color:#333; }
  .creativeAbout-content h2 {
    font-size:clamp(32px,5vw,65px);
    font-weight:700;
    margin-bottom:25px;
    line-height:1.1;
  }
  .creativeAbout-content p {
    font-size:clamp(15px,1.6vw,18px);
    line-height:1.7;
    margin-bottom:25px;
    max-width:520px;
  }

  .creativeAbout-btn {
    display:inline-block;
    padding:10px 28px;
    border:1px solid #333;
    border-radius:6px;
    text-decoration:none;
    color:#333;
    font-size:16px;
    margin-bottom:35px;
  }
  .creativeAbout-btn:hover { background:#333; color:#fff; }

  .creativeAbout-smallImg img {
    width:100%; max-width:350px; border-radius:8px; object-fit:cover;
  }

  .creativeAbout-image { width:50%; }
  .creativeAbout-image img {
    width:100%; height:100%; border-radius:10px; object-fit:cover;
  }

  @media(max-width:1024px){
    .creativeAbout-container { flex-direction:column; text-align:center; gap:40px; }
    .creativeAbout-content, .creativeAbout-image { width:100%; }
    .creativeAbout-smallImg img { margin:auto; }
  }


  /* ================== ECO DESIGN ================== */
  /* .ecoDesign-section {
    background-image:url("../home/16.jpg");
    background-size:cover;
    background-position:center;
    background-attachment:scroll;
    position:relative;
  } */

  .ecoDesign-container {
    display:flex;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
  }

  .ecoDesign-content {
    flex:1 1 480px;
    background:#7a3d30;
    padding:60px;
    color:white;
    border-radius:8px;
  }

  .ecoDesign-content h2 { font-size:clamp(32px,5vw,64px); margin-bottom:20px; }
  .ecoDesign-content p { font-size:17px; margin-bottom:25px; line-height:1.7; }

  .ecoDesign-btn {
    padding:12px 26px; background:#f5e7e3; color:#4a342d;
    border-radius:8px; text-decoration:none; font-size:16px;
  }

  .ecoDesign-floating-img {
    flex:1 1 360px;
    max-width:350px;
    border-radius:15px;
    overflow:hidden;
    margin:auto;
  }

  .ecoDesign-floating-img img {
    width:100%; height:100%; border-radius:12px; object-fit:cover;
  }


  /* ================== MISSION / VISION ================== */
  .vm-section { background:#7a3d30; padding-top:0; }
  .vm-card {
    width:100%; max-width:1600px; margin:auto;
    background:#f2e5df; border-top-left-radius:40px; border-top-right-radius:40px;
    padding:80px 50px;
  }

  .vm-title h2 {
    font-size:clamp(32px,4vw,50px);
    color:#7a3d30; text-align:center;
    margin-bottom:50px;
  }

  .vm-content {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:60px;
  }

  .vm-text {
    flex:1 1 350px;
    color:#7a3d30;
    text-align:center;
  }

  .vm-text h3 { font-size:26px; margin-bottom:15px; }
  .vm-text p { font-size:17px; line-height:1.7; }

  .vm-center-imgs {
    flex:1 1 350px;
    max-width:360px;
    position:relative;
    min-height:300px;
  }

  .large-img, .small-img { position:absolute; transition:.4s; }
  .large-img { width:220px; height:300px; top:0; right:0; }
  .small-img { width:160px; height:210px; bottom:-20px; left:-35px; }

  .vm-img img {
    width:100%; height:100%; border-radius:14px; object-fit:cover;
  }

  @media(max-width:600px){
    .large-img{ width:180px;height:240px; }
    .small-img{ width:130px;height:180px; left:-10px; bottom:-10px; }
    .vm-card{ padding:50px 20px; }
  }


  /* ================== ECO DESIGN ================== */
  .ecoDesign-section {
    background-image:url("assets/home/16.jpg");
    background-size:cover;
    background-position:center;
    background-attachment:scroll;
    position:relative;
  }

  .ecoDesign-container {
    display:flex;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
  }

  .ecoDesign-content {
    flex:1 1 480px;
    background:#7a3d30;
    padding:60px;
    color:white;
    border-radius:8px;
  }

  .ecoDesign-content h2 { font-size:clamp(32px,5vw,64px); margin-bottom:20px; }
  .ecoDesign-content p { font-size:17px; margin-bottom:25px; line-height:1.7; }

  .ecoDesign-btn {
    padding:12px 26px; background:#f5e7e3; color:#4a342d;
    border-radius:8px; text-decoration:none; font-size:16px;
  }

  .ecoDesign-floating-img {
    flex:1 1 360px;
    max-width:350px;
    border-radius:15px;
    overflow:hidden;
    margin:auto;
  }

  .ecoDesign-floating-img img {
    width:100%; height:100%; border-radius:12px; object-fit:cover;
  }


  /* ================== MISSION / VISION ================== */
  .vm-section { background:#7a3d30; padding-top:0; }
  .vm-card {
    width:100%; max-width:1600px; margin:auto;
    background:#f2e5df; border-top-left-radius:40px; border-top-right-radius:40px;
    padding:80px 50px;
  }

  .vm-title h2 {
    font-size:clamp(32px,4vw,50px);
    color:#7a3d30; text-align:center;
    margin-bottom:50px;
  }

  .vm-content {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:60px;
  }

  .vm-text {
    flex:1 1 350px;
    color:#7a3d30;
    text-align:center;
  }

  .vm-text h3 { font-size:26px; margin-bottom:15px; }
  .vm-text p { font-size:17px; line-height:1.7; }

  .vm-center-imgs {
    flex:1 1 350px;
    max-width:360px;
    position:relative;
    min-height:300px;
  }

  .large-img, .small-img { position:absolute; transition:.4s; }
  .large-img { width:220px; height:300px; top:0; right:0; }
  .small-img { width:160px; height:210px; bottom:-20px; left:-35px; }

  .vm-img img {
    width:100%; height:100%; border-radius:14px; object-fit:cover;
  }

  @media(max-width:600px){
    .large-img{ width:180px;height:240px; }
    .small-img{ width:130px;height:180px; left:-10px; bottom:-10px; }
    .vm-card{ padding:50px 20px; }
  }

  /* ================== ABOUT CREATIVE ================== */


.contact-banner {
  width: 100%;
  height: 75vh;
  min-height: 420px;
  background: url('../curtains/close-up-window-home.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding: 50px;
  overflow: hidden;
}

.contact-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.65)
  );
  z-index: 1;
}

.contact-banner-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

.contact-banner-content h1 {
  font-size: 62px;
  font-weight: 700;
}

.contact-banner-content p {
  font-size: 18px;
  max-width: 420px;
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-banner { padding: 40px 30px; }
  .contact-banner-content h1 { font-size: 48px; }
  .contact-banner-content p { font-size: 16px; }
}

@media (max-width: 768px) {
  .contact-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .contact-banner-content p {
    text-align: left;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-banner-content h1 { font-size: 36px; }
  .contact-banner-content p { font-size: 15px; }
}


















