.section-wrapper{
  width: 100%;
  padding: 0 6%;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center,
      rgba(122,61,48,0.35) 0%,
      rgba(20, 20, 20, 0) 100%);
}

/* moving light reflections */
.section-wrapper::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.18),
        rgba(255,255,255,0.02),
        rgba(255,255,255,0.18)
    );
    background-size: 300% 100%;
    animation: shine 6s linear infinite;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
}

/* subtle fabric shadow waves */
.section-wrapper::after{
    content: "";
    position: absolute;
    inset: 0;
    /* background: url('..home/woven-light.png'); */
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

@keyframes shine {
    0% { background-position: 300% 0; }
    100% { background-position: 0% 0; }
}


/* Vertical Infinite Moving Line */
.section-wrapper::before{
 content: "";
 position: absolute;
 left: 50%;
 top: 0;
 width: 1px;
 height: 100%;
 background: repeating-linear-gradient(
     to bottom,
     BLACK 0,
     BLACK 10px,
     transparent 10px,
     transparent 20px
 );
 animation: moveV 3s linear infinite;
 z-index: 1;
}

@keyframes moveV {
 0% { background-position: 0 0; }
 100% { background-position: 0 40px; }
}

/* SERVICE ROW */
.service-row{
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 40px;
 padding: 80px 0;
 position: relative;
 z-index: 5;
}

/* Horizontal Infinite Moving Line */
.service-row::before{
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 height: 1px;
 width: 100%;
background: repeating-linear-gradient(
     to right,
     #6b1515 0,
     #bfbfbfa4 10px,
     transparent 10px,
     transparent 20px
);
 animation: moveH 3s linear infinite;
 z-index: 1;
}

@keyframes moveH {
 0% { background-position: 0 0; }
 100% { background-position: 40px 0; }
}

.service-row:nth-child(even){
 flex-direction: row-reverse;
}

/* CONTENT */
.service-content{
 flex: 1;
 text-align: center;
 padding: 0 40px;
 z-index: 10;
}

.service-content h2{
 font-size: 42px;
 margin-bottom: 15px;
 font-weight: 500;
}

.service-content p{
 max-width: 400px;
 margin: auto;
 font-size: 18px;
 line-height: 1.6;
 color: #444;
}

/* IMAGE */
/* IMAGE WRAPPER */
.service-image {
  flex: 1;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

/* SAME SIZE IMAGE — DESKTOP */
.service-image img {
  width: 100%;
  height: 500px;   /* Desktop size */
  object-fit: cover;
  transition: .9s ease;
  clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
  filter: brightness(0.95) contrast(1.05);
}

/* HOVER EFFECT */
.service-image:hover img {
  transform: scale(1.12);
  filter: brightness(1.06) contrast(1.12);
}

/* LIGHT SHINE EFFECT */
.service-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  transform: skewX(-25deg);
  transition: .8s;
}

.service-image:hover::after {
  left: 130%;
}

/* MOBILE RESPONSIVE — SAME SIZE */
@media(max-width: 900px) {

  .service-row {
    flex-direction: column !important;
    text-align: center;
    padding: 50px 0;
  }

  .service-image img {
    width: 100%;
    height: 350px;   /* Mobile size */
    object-fit: cover;
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
  }
}


.about-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;
}

/* DARK GRADIENT OVERLAY */
.about-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0.897),
    rgba(0, 0, 0, 0.692),
    rgba(0, 0, 0, 0.637)
  );
  z-index: 1;
}


/* CONTENT */
.about-banner-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

.about-banner-content h1 {
  font-size: 62px;
  font-weight: 700;
  margin: 0;
}

.about-banner-content p {
  font-size: 18px;
  max-width: 420px;
  line-height: 1.5;
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-banner {
    padding: 40px 30px;
  }
  .about-banner-content h1 {
    font-size: 48px;
  }
  .about-banner-content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .about-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .about-banner-content p {
    text-align: left;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .about-banner-content h1 {
    font-size: 36px;
  }
  .about-banner-content p {
    font-size: 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;
      }
    }










    /* CONTACT BANNER CSS */



    /* ================== 6. ABOUT BANNER ================== */



/* MAIN CONTACT BANNER */
.about-banner-contact {
  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;
}

/* DARK GRADIENT OVERLAY */
.about-banner-contact::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;
}

/* CONTENT */
.about-banner-content-contact {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

.about-banner-content-contact h1 {
  font-size: 62px;
  font-weight: 700;
  margin: 0;
}

.about-banner-content-contact p {
  font-size: 18px;
  max-width: 420px;
  line-height: 1.5;
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-banner-contact {
    padding: 40px 30px;
  }
  .about-banner-content-contact h1 {
    font-size: 48px;
  }
  .about-banner-content-contact p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .about-banner-content-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .about-banner-content-contact p {
    text-align: left;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .about-banner-content-contact h1 {
    font-size: 36px;
  }
  .about-banner-content-contact p {
    font-size: 15px;
  }
}




/* SERVICE BANNER */
.service-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;
}

/* BLACK GRADIENT OVERLAY */
.service-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;
}

/* CONTENT */
.service-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

.service-content h1 {
  font-size: 62px;
  font-weight: 700;
  margin: 0;
}

.service-content p {
  font-size: 18px;
  max-width: 420px;
  line-height: 1.5;
  text-align: justify;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .service-banner {
    padding: 40px 30px;
  }
  .service-content h1 {
    font-size: 48px;
  }
  .service-content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .service-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .service-content p {
    text-align: left;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .service-content h1 {
    font-size: 36px;
  }
  .service-content p {
    font-size: 15px;
  }
}




/* PROJECT BANNER */
.project-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;
}

/* BLACK GRADIENT OVERLAY */
.project-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;
}

/* CONTENT AREA */
.project-banner-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

.project-banner-content h1 {
  font-size: 62px;
  font-weight: 700;
  margin: 0;
}

.project-banner-content p {
  font-size: 18px;
  max-width: 420px;
  line-height: 1.5;
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .project-banner {
    padding: 40px 30px;
  }
  .project-banner-content h1 {
    font-size: 48px;
  }
  .project-banner-content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .project-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .project-banner-content p {
    text-align: left;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .project-banner-content h1 {
    font-size: 36px;
  }
  .project-banner-content p {
    font-size: 15px;
  }
}




