/* 
Theme Name: Construction Site Theme 
Author: construction
Description: A custom WordPress theme designed specifically for construction sites. Perfect for showcasing construction projects, services, and company portfolios with a clean, professional, and responsive design. 
Version: 1.0 
Text Domain: construction-site-theme 
*/

  @font-face {
  font-family: 'Poppins';
  src: url('./fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('./fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('./fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
     font-family: "Poppins", sans-serif;
    }

    body {
      /* font-family: Arial, Helvetica, sans-serif; */
     
    }



.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  padding-top: 10px;
  gap:15px;
}
#menu-header-menu {

  display: flex;
  list-style: none;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.logo-head img {
  margin-top: 30px;
  height: 163px;
}
.custom-logo{
  max-width: 230px;
  height: 180px;
}
.navbar-head {
  width: 100%;
  background: #434446;
  padding: 10px 20px;
  display: flex;
  gap: 50px;
  justify-content: center;
  transition: all 0.3s ease;
}

.navbar-head a {
  text-decoration: none;
  color: white;
  font-weight: 400;
  transition: 0.3s;
  font-size: 19px;
}

.navbar-head a:hover,
.navbar-head a.active {
  color: #D8B872;
}

.navbar-head a,
.logo-head img {
  /* text-shadow: 0 0 5px rgba(0, 0, 0, 0.3); */
}

/* ---------- HAMBURGER MENU ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}

.hamburger span {
  display: block;
  height: 3px;
  background:black;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ---------- MOBILE VIEW ---------- */
@media (max-width: 850px) {
 

  .hamburger {
    display: flex;
  }

  .navbar-head {
    flex-direction: column;
    position: absolute;
    top: 100%;
    background: black;
    left: 0;
    width: 100%;
    gap: 20px;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
  }

  .navbar-head.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Hamburger animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}



    /* Hero Section */
.hero {
  color: #fff;
  position: relative;
  height: 120vh;
  background-repeat: no-repeat;
  background-position:top;
  background-size: cover;
  display: flex;
  flex-direction: column;
}


    /* Overlay for readability */
   .hero::after {
  content: "";
  position: absolute;
  inset: 0;
 
}

    /* Navbar */
  

    /* Hero Text */
    .hero-content {
      position: relative;
      z-index: 2;
      margin-top: auto;
      margin-bottom: 60px;
      margin-left: 140px;
      max-width: 720px;
      background:rgba(0, 0, 0, 0.4);
      padding:22px;
    }

    .hero-content h1 {
      font-size: 2.2rem;
      margin-bottom: 15px;
      font-weight: normal;
      line-height: 1.1;
    }

    .hero-content p {
      font-size: 1.2rem;
      line-height: 1.6;
          margin-bottom: 25px;
    }
    .hero-content a{
      text-decoration: none;
      color: white;
    }

@media (max-width:900px){
	  .hero-content{
           		margin-bottom: 14px;
    margin-left: 36px;
           }
      .hero-content h1 {
        font-size: 1.5rem;
    }
      .hero-content p, .hero-content a {
        font-size: 0.8rem;
    }
  .hero {
  	height:115vh;
  }
}

    @media (max-width: 768px) {
      .navbar {
        flex-direction: column;
        gap: 15px;
        right: 20px;
        padding: 15px;
      }

      .hero-content h1 {
        font-size: 1.5rem;
      }

      .hero-content p, .hero-content a  {
        font-size: 0.8rem;
      }
      .hero-content{
        margin-left: 0px;
        padding-right: 15px;
      }
      .logo {
        position: static;
      }
       .logo-head img {
    height:146px;
    margin-top:0;
  }
  .custom-logo{
  	max-width:208px;
  }
    }



    body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            /* background-color: #f5f5f5; */
            
        }
        .container {
            display: flex;
            max-width: 1230px;
            padding: 20px;
            gap: 13px;
            margin: 40px auto;
        }
        .image-section {
            flex: 1;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        .img1-collage {
  width: 40vw;         /* scales with viewport width */
  max-width: 470px;    /* keeps it from growing too large */
  height: auto;        /* maintain aspect ratio */
}

.img2-collage {
  width: 28vw;
  max-width: 326px;
  height: auto;
  margin-top: -20%;    /* relative positioning */
  right: 19%;
  position: relative;  /* required if you’re using right/left offsets */
}

.img3-collage {
  width: 20vw;
  max-width: 240px;
  height: auto;
  margin-top: -15%;
  left: 3%;
  position: relative;
}

        .image-section img {
            
            position: relative;
            border-radius: 20px;
            object-fit: cover;
        }
        .text-section {
            flex: 1;
            padding: 20px;
            border-radius: 10px;
        }
        .text-section h2 {
            color: #333;
            font-size: 35px;
            margin: 10px 0;
            font-weight: 400;
        }
         .text-section p {
            font-size: 15px;
            line-height: 2;
    margin: 10px 0;
    font-weight: 100;
    /* text-align: justify; */
         }
        .text-section ul {
            list-style-type: none;
            padding: 0;
            line-height: 2;
        }
        .text-section ul li {
            margin-bottom: 10px;
            font-size: 17px;
        }
        .text-section button {
            background-color:#D8B872;
            color: black;
            border: none;
            padding: 15px 30px;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 5%;
            font-size: 18px;
            font-weight: 600;
        }
        .text-section button:hover {
            background-color: #e65c00;
        }

        .ring-icon{
            height: 12px;
            width: 17px;
                filter: brightness(0) saturate(100%) invert(73%) sepia(47%) saturate(403%) hue-rotate(10deg) brightness(95%) contrast(90%);
        }


         @media (max-width: 992px) {
      .container {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .image-section {
        grid-template-columns: 1fr 1fr;
      }

      .text-section {
        padding: 0 10px;
      }

      .text-section h2 {
        font-size: 24px;
      }
           
         
           
    }

    @media (max-width: 600px) {
      .image-section {
        grid-template-columns: 1fr; /* stack images too */
                /* margin-top: 49%; */
                flex-direction: column;
      }

      
      .img1-collage {
        grid-column: 1;
            width: 68vw;
      }
      .img2-collage {
            width: 50vw;
            right: 0;
            left: 40%;
      }
      .img3-collage {
            width: 33vw;
            left: 18%;
            margin-top: -10%;
      }
      .text-section h2 {
        font-size: 22px;
      }

      .text-section p,
      .text-section ul li {
        font-size: 14px;
      }
      .container{
        flex-direction: column;
      }
    }



    .srv-hero {
      
      background-position: center center;
      padding: 110px 20px;
      position: relative;
      /* font-family: 'Montserrat', sans-serif; */
      color: #0b1b34;


       background-color:black; /* grey tint */
  background-blend-mode: multiply; /* blends bg + color */
  filter: brightness(1); /* optional: darken */
    }
    

    .srv-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.98;
    }

    .srv-wrap {
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .srv-services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px 28px;
      align-items: start;
    }

    .srv-intro-box {
      padding: 28px 20px;
      color: white;
      font-size: 35px;
      line-height: 1.5;
      min-height: 120px;
      display: flex;
      align-items: center;
      font-weight: 400;
    }

    .srv-card {
      background: transparent;
      border: 1.5px solid white;
      padding: 28px 26px;
      min-height: 150px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: 12px;
      position: relative;
    }

    .srv-card .srv-icon {
      width: 46px;
      height: 46px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .srv-card .srv-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(73%) sepia(47%) saturate(403%) hue-rotate(10deg) brightness(95%) contrast(90%);
    }

    .srv-card h3 {
      margin: 0;
      font-size: 18px;
      font-weight: 300;
      color: white;
      letter-spacing: 0.2px;
    }

    .srv-card p {
      margin: 0;
      font-size: 14.8px;
      color: white;
      line-height: 1.45;
    }

    .srv-card.srv-tall {
      min-height: 170px;
    }

    .srv-card::after {
      content: "";
      position: absolute;
      inset: 6px;
      pointer-events: none;
      border: 1px solid rgba(255,255,255,0.05);
    }

    @media (max-width: 1000px) {
      .srv-services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 640px) {
      .srv-hero {
        padding: 60px 12px;
      }
      .srv-services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }
    }



    .steps-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 50px 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      text-align: center;
      padding-top: 30px;
    }

    .step {
      position: relative;
      padding: 20px;
      display: flex;
      flex-direction: column;
    }

    .step-number {
      font-size: 3rem;
      font-weight: 700;
      color: grey;
      display: block;
    }

    .step-card {
      background: #fff;
      border-radius: 16px;
      padding: 40px 20px 30px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      position: relative;
      z-index: 1;
      display:flex;
      flex-direction:column;
      align-items:center;
    }

    .step-card img {
      width: 50px;
      height: 50px;
      margin-bottom: 15px;
      filter: brightness(0) saturate(100%) invert(73%) sepia(47%) saturate(403%) hue-rotate(10deg) brightness(95%) contrast(90%);
    }

    .step-divider {
      width: 50px;
      height: 3px;
      background: black;
      margin: 10px auto;
      border-radius: 2px;
    }

    .step h3 {
      font-size: 1.1rem;
      font-weight: 300;
      color: #1e293b;
      margin-bottom: 10px;
    }

    .step p {
      font-size: 0.9rem;
      color: #555;
      line-height: 1.5;
    }

    /* Responsive tweaks */
    @media (max-width: 768px) {
      .step-number {
        font-size: 2.5rem;
        order: 1;
      }
      .step-card {
        padding: 30px 15px 20px;
        order: 2;
      }
    }

    @media (max-width: 480px) {
      .step-number {
        font-size: 2rem;
      }
      .step-card img {
        width: 70px;
        height: 70px;
      }
    }



    .experience-section {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: url("/exp-bg.jpg") no-repeat right center;
      background-size: cover;
      /* min-height: 500px; */
      color: #fff;
      padding: 0px 80px;
      margin-top: 5%;
    }

    /* Left side (image + experience box) */
    .left-side {
      position: relative;
      flex: 1;
      display: flex;
      align-items: flex-end;
      gap: 20px;
    }

    .people-img {
      max-height: 620px;
      position: relative;
      z-index: 2;
      margin-top: -10%;
    }

    .experience-box {
      position: absolute;
      bottom: 20px;
      left: 0;
      background: #fff;
      padding: 15px 30px;
      border-radius: 6px;
      display: inline-block;
      font-weight: bold;
      z-index: 3;
    }

    .experience-box span {
      font-size: 40px;
      font-weight: 700;
      color: #f60;
    }

    .experience-box small {
      font-size: 18px;
      color: #111;
      margin-left: 5px;
    }

    /* Right side */
    .right-side {
      flex: 1;
      padding-left: 40px;
    }

    .right-side p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 40px;
    }

    .stats {
      display: flex;
      align-items: center;
      gap: 60px;
      margin-bottom: 40px;
    }

    .stat {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .stat img {
      height: 35px;
    }

    .stat h3 {
      font-size: 32px;
      font-weight: bold;
      color: #f60;
      margin: 0;
    }

    .stat span {
      font-size: 15px;
      color: #fff;
    }

    .explore-btn {
      background: #f60;
      color: #fff;
      padding: 12px 28px;
      font-size: 15px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .explore-btn:hover {
      background: #e65c00;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .experience-section {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
      }

      .left-side {
        justify-content: center;
      }

      .right-side {
        padding-left: 0;
        margin-top: 40px;
      }

      .stats {
        justify-content: center;
        gap: 40px;
      }

      .stat {
        align-items: center;
      }
    }

    @media (max-width: 600px) {
      .experience-box span {
        font-size: 28px;
      }

      .experience-box small {
        font-size: 14px;
      }

      .stat h3 {
        font-size: 24px;
      }
      .experience-section{
        margin-top:14%;
      }
      .people-img {
        max-height: 383px;
        margin-top: -20%;
      }

    }




    .faq-area {
  padding: 60px 15px;
  padding-bottom: 0;
  /* font-family: Arial, sans-serif; */
  background: #fff;
  margin-top: 2%;
}

.faq-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* Left images exactly like your screenshot */
.faq-left {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-left img {
  width: 90%;
  border-radius: 0;
  object-fit: cover;
}

/* Right column */
.faq-right {
  flex: 1 1 52%;
}

.faq-sub {
  color: #D8B872;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.faq-title {
  font-size: 34px;
  margin: 10px 0;
  font-weight:300;
  line-height: 1.2;
}

.faq-title strong {
  color: #666;
  font-weight: 400;
}

.faq-desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Accordion */
.faq-accordion {
  border-top: 1px solid #ddd;
}

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

.faq-header {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 300;
  color: #333;
  text-align: left;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-header .icon {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.faq-body p {
  padding: 0 0 15px;
}

/* Active state: open answer */
.faq-item.active .faq-body {
  max-height: 500px;
}

.faq-item.active .faq-header .icon {
  content: '−';
}
.img2{
    position: relative;
    bottom:15% ;
    right: 9%;
    width: 70%;
}



.build-section {
      text-align: center;
      padding: 50px 20px;
      background: white;
      padding-top: 0;
    }

    .build-section h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #1e293b;
    }

    .build-section p {
      font-size: 1rem;
      color: #555;
      margin-bottom: 30px;
    }

    .build-image {
      display: inline-block;
    }

	.build-image
	{
		width:80%;
	}
    .build-image img {
      width: 100%;    
      max-height: 70%;  
      border-radius: 8px;
      object-fit: fill; 
    }
     @media (max-width: 768px) {
     

      .build-section h2 {
        font-size: 1.3rem;
      }

      .build-section p {
        font-size: 0.9rem;
      }

      .build-image {
        max-width: 100%;
      }
    }

    @media (max-width: 480px) {
     

      .build-section h2 {
        font-size: 1.3rem;
      }

      .build-section p {
        font-size: 0.8rem;
      }
      .build-image
      {
        width:100%;
      }
    }

    .procedure{
      text-align: center;
      margin-top: 3%;
      color:black;
      font-weight: 400;
    }




    .partner-logos {
  width: 100%;
  overflow: hidden;
  background: #fff; /* Change background if needed */
  padding: 20px 0;
  margin-bottom: 33px;
}

.logos-slider {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}

.logos-track {
  display: flex;
  animation: scroll 65s linear infinite;
}

.logos-track img {
  height: 60px; /* Adjust logo size */
  margin: 0 40px;
  object-fit: contain;
 /* Optional: makes logos grey */
  transition: filter 0.3s ease;
}

.logos-track img:hover {
  filter: grayscale(0%); /* Highlight logo on hover */
}

/* Infinite scroll keyframes */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.cta-main{
  padding: 10px 8px;
  background-color: #D8B872;
    margin-top: 30px;
    border:none;
    border-radius: 6px;
}


 #scrollToTopBtn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: #D8B872;
      color: black;
      border: none;
      border-radius: 50%;
      width: 45px;
      height: 45px;
      font-size: 32px;
      cursor: pointer;
      display: none; /* hidden by default */
      justify-content: center;
      align-items: center;
      z-index: 999;
      transition: opacity 0.3s ease;
    }

    #scrollToTopBtn:hover {
      background: #D8B872;
    }


    @media (max-width:500px)
    {
      #scrollToTopBtn {
    
    bottom: 10px;
    right: 18px;
      }
    }
  
















.hero-banner-curved {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-banner-curved .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-banner-curved .hero-content-service {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  margin-bottom: 10%;
}

.hero-banner-curved h1 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 15px;
}

.hero-banner-curved p {
  font-size: 20px;
  line-height: 1.6;
}

/* Curved Bottom */
.hero-banner-curved .curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100px;
  background: white;
  clip-path: ellipse(75% 100% at 50% 100%);
}


@media (max-width:500px)
{
  .hero-banner-curved p {
    font-size:16px;
  }
  
}


.parallax-section {
  position: relative;
  min-height: 390px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  color: #D8B872;
  padding: 60px 20px; /* ✅ ensures spacing inside */
}


/* Overlay layer */
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Content Layer */
.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

/* Heading, Text, Button Spacing */
.parallax-content h2 {
  margin-bottom: 20px;
  font-size: 42px;
  font-weight: 400;
  color:white;
}

.parallax-content p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px; /* ✅ space before button */
  color: white;
}

.btn {
  background: #D8B872;
  padding: 13px 25px;
  color: black;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #D8B872;
  transform: translateY(-2px);
}


@supports (-webkit-touch-callout: none) {
  .parallax-section {
    background-attachment: scroll;
  }
}





.faqx-section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    color: black;
  }

  .faqx-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .faqx-header h4 {
    color: #402a66;
    margin: 0;
    font-size: 26px;
    font-weight: 600;
  }

  .faqx-header h2 {
    margin: 18px 0 0;
    font-size: 38px;
    font-weight: 400;
    color: black;
  }

  /* GRID LAYOUT */
  .faqx-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    align-items: start;

  }

  @media (max-width: 768px) {
    .faqx-grid {
      grid-template-columns: 1fr;
    }
  }

  /* FAQ ITEM */
  .faqx-item {
    border-radius: 12px;
    background: black;
    overflow: hidden;
    border: 1px solid #D8B872;
    height: 100%;
  }

  .faqx-item input {
    display: none;
  }

  .faqx-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 300;
    transition: background 0.3s;
    font-size: 18px;
    line-height: 1.3;
    color:white;
    /* height: 100%; */
  }

  .faqx-label:hover {
    background: #D8B872;
  }

  .faqx-label svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
    fill: white;
  }

  /* CONTENT */
  .faqx-content {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 20px;
    font-size: 15px;
    line-height: 1.6;
  }

  .faqx-item input:checked ~ .faqx-label {
    background: #D8B872;
    color: black;
  }

  .faqx-item input:checked ~ .faqx-label svg {
    transform: rotate(180deg);
    fill: #fff;
  }

  .faqx-item input:checked ~ .faqx-content {
    max-height: 200px;
    padding: 16px 20px 20px;
  }




  :root{
    --muted:#9aa0a4;
    --heading:#2b2b2b;
    --accent:#e66b3b;
    --underline:#2f4fa6;
    --max-width:980px;
  }

 

 .svc-section, .svc-inner { box-sizing: border-box; }

.svc-section {
  width: 100%;
  padding: 56px 20px;
  display: flex;
  justify-content: center;
  padding-top: 0;
}
.svc-inner {
  max-width: 1300px;
  width: 100%;
  text-align: center;
}

/* Title */
.svc-title {
  font-size: 40px;
  margin: 6px 0 47px;
  color: var(--heading);
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Rows container */
.svc-rows {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Each row: 3 columns: left | icons | right */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 260px 1fr;
  align-items: center;
  gap: 20px;
}

/* Text blocks */
.svc-left, .svc-right {
  min-height: 84px;
}
.svc-left { text-align: right; padding-right: 28px; }
.svc-right { text-align: left; padding-left: 28px; }

.svc-left h3, .svc-right h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  color: #2f2f2f;
  font-weight: 300;
}
.svc-left p, .svc-right p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.45;
  display: inline-block;
}

/* Icons container */
.svc-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  justify-items: center;
  align-items: center;
}

.icon-box {
  width: 85px;
  height: 85px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.03);
  border: 2px solid #D8B872;
}
.icon-box img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(73%) sepia(47%) saturate(403%) hue-rotate(10deg) brightness(95%) contrast(90%);
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 920px) {
  .svc-row {
    grid-template-columns: 1fr 200px 1fr;
  }
  .icon-box {
    width: 80px;
    height: 80px;}
  .icon-box img {
    width: 45px;}
  .svc-row {
  gap:0}
  .svc-inner { padding: 0 12px; }
}

@media (max-width: 720px) {
  .svc-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  /* Stack each service row vertically */
  .svc-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  /* Hide middle icon column (we’ll show icons inline instead) */
  .svc-icons {
    display: none;
  }

  /* Left & right content unified layout */
  .svc-left, .svc-right {
    display: flex;
    flex-direction: column; /* stack icon > heading > text */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10px;
    gap: 10px;
  }

  /* Add icons above heading */
  .svc-left::before,
  .svc-right::before {
    content: '';
    display: block;
    width: 48px;
    height: 48px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 6px;
    filter: brightness(0) saturate(100%) invert(73%) sepia(47%) saturate(403%) hue-rotate(10deg) brightness(95%) contrast(90%);
  }

  /* Assign the correct icons for each row */
  .svc-row:nth-child(1) .svc-left::before {
    background-image: url('./images/gen-const.png');
  }
  .svc-row:nth-child(1) .svc-right::before {
    background-image: url('./images/prop-main.png');
  }

  .svc-row:nth-child(2) .svc-left::before {
    background-image: url('./images/proj-mngm.png');
  }
  .svc-row:nth-child(2) .svc-right::before {
    background-image: url('./images/virtual-design.png');
  }

  .svc-row:nth-child(3) .svc-left::before {
    background-image: url('./images/pre-const.png');
  }

  /* Text styling */
  .svc-left h3, .svc-right h3 {
    font-size: 18px;
    
    color: #2f2f2f;
    margin-bottom: 6px;
  }

  .svc-left p, .svc-right p {
    font-size: 15px;
    line-height: 1.45;
    color: var(--muted);
    max-width: 90%;
  }

  /* Reduce gap between rows */
  .svc-rows {
    gap: 40px;
  }
}



  
    .footer {
  background: #000;
  color: #fff;
  padding: 40px 12%;
  /* font-family: 'Montserrat', sans-serif; */
}

.footer-container {
  display: flex;
gap:270px;
  align-items: flex-start;
  flex-wrap: nowrap;
}

/* Left */
.footer-left {
  max-width: 400px;
}

.footer-logo {
  width: 230px; /* adjust to your logo size */

}

.footer-tagline {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-left p {
  margin: 5px 0;
  font-size: 15px;
  font-weight: 400;
  color:white;
}


.footer-left p a {
  color: white;
  text-decoration: none; /* optional, removes underline */
}

/* Right */
.footer-right {
  display: flex;
  gap: 100px;
  margin-top: 25px;
}

.footer-column h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 16px;
  color:#D8B872;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #999; /* hover effect */
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: left;
    gap: 0;
  }
  .footer-right {
    margin-top: 30px;
    flex-direction: column;
    gap: 30px;
  }
}

.impressum{
            text-align: center;
            padding: 3%;
            margin-top: 18%;
        }
.impressum h1, h2{
    margin: 10px 0;
}

    .agb h2{
            font-size: 18px;
        }
        
.agb h3{
            font-size: 16.5px;
            margin: 10px 0;
        }
        .agb{
            text-align: center;
            padding: 20px 0;
            width: 70%;
            margin: 0 auto;
            font-family: "Poppins", sans-serif;
             margin-top: 18%;
        }


.privacy{
    text-align: center;
    width: 80%;
    margin: 0 auto;
    padding: 20px 0;
     margin-top: 18%;
}


.privacy h3, h4{
    margin: 10px 0;
}

.endofsite{
	margin-top:15px;
  text-align:center;
}

@media (max-width:768px) {
  .impressum, .agb, .privacy{
      margin-top: 35%;
     }
}


@media (max-width:500px)
{
    .hero {
  	height:100vh !important;
  }
    .faq-area {
      padding: 10px 0;

    }
    .img2{
      display: none;
    }
    .faq-image-top{
      display: flex;
      justify-content: center;
    }
    .faq-wrapper{
      gap: 0;
      flex-direction: column;
    }
    .faq-right {
      padding: 15px;
    }
    .faq-title{
      font-size: 30px;
    }
    .procedure {
      margin-top: 30px;
      font-size:25px;
    }
    .steps-section {
      padding: 10px 20px;
    }
    .hero-banner-curved h1{
      margin-bottom: 67px;
      font-size: 31px;
    }
    .parallax-content h2{
      font-size: 34px;
    }
    .parallax-content p {
      font-size: 18px;
    }
    .faqx-header h2{
      font-size: 31px;
    }    
    .faqx-label{
      padding: 13px 20px;
      font-size: 16px; 
    }
    .faqx-section{
      padding-top: 20px;
    }
     .impressum, .agb, .privacy{
      margin-top: 33%;
     }
  #menu-header-menu {
  	flex-direction:column;
    gap:12px;
  }
  .hero-content {
  	margin-bottom:80px;
  }
  
  
}


.contact-main-img{
	margin-top:17.5%;
}

@media(min-width:1870px){
	.contact-main-img{
	margin-top:10%;
}
}

@media(min-width:1500px)and (max-width:1869px){
	.contact-main-img{
	margin-top:14%;
}
}

@media (min-width:1600px)
  {
    .hero{
     	height: 70vh; 
    }
}

@media(max-width:1200px){
	.contact-main-img {
    margin-top: 24%;
}
}

@media (max-width:1080px)
  {
    .footer-container{
     	gap:50px; 
    }
   
}

@media(max-width:930px)
{
	 .contact-main-img {
    margin-top: 31%;
}
}

@media (max-width:800px)
  {
    .text-section p {
    font-size: 15px;
   
      font-weight: normal;}
   .hero-banner-curved h1 {
     font-size: 33px;}
    .svc-title {
    font-size: 34px;
      margin: 6px 0 30px;}
  
    
}

@media (max-width:600px){
	  .container{
    
      flex-direction:column;
    }
}

@media (max-width:1300px)
  {
    .faq-wrapper{
     	max-width:870px; 
    }
}

.contact-section h2 {
    font-size:32px !important;
    margin-bottom: 15px;
  	text-align: left;
  font-weight:300;
}
.contact-section p {
  font-size: 16px !important;
    font-weight: normal;
    line-height: 28px;
    color: #000000;
    margin-bottom: 30px;
  
}
.contact-list li {
    margin-bottom: 15px;
    font-size: 16px !important;
  font-weight: normal;
    display: flex;
    align-items: center;
}
.contact-list li a {
  color: black;
  text-decoration: none; /* optional: removes underline */
}

.contact-list li .icon {
    font-size: 30px;
    color: #D6AF50;
    margin: 0px 17px 0px 0px;
    padding: 13px !important;
  
}
.contact-list li .icon img {
 	width: 30px !important;
  height: 30px !important;
}
.contact-right h3 {
  font-size: 36px;
    margin-bottom:30px;
  text-align: center;
  font-weight:normal;
}
.contact-right{
  border-radius: none !important; 
}
.contact-right input, .contact-right textarea, .contact-right select {
    width:100%;
    margin-bottom:15px;
    border: 1px solid #959595 !important;
  	border-radius: none !important;
  	background-color: transparent !important;
  	color: #959595 !important;
}
.contact-right input::placeholder,
.contact-right textarea::placeholder,
.contact-right select::placeholder {
    color: #959595 !important; /* change to your desired color */
    opacity: 1 !impotant; /* ensures color shows correctly across browsers */
}

.wpforms-field-label{
	color: white !important;
  opacity: 0.7 !important;
}
.wpforms-field-label-inline{
color: white !important;
  
}
.contact-form-btn{
  background: #d6af50 !important;
  color: white !important;
  text-align: center !important;
  width: 100% !important;
}
.contact-main-img{
	width:100%; 
  	height:67vh;
}

.contact-main-img img{
	width:100%;
  height:100%;
}

.contact-logo{
	display:flex;
  justify-content:center;
}

@media (max-width: 768px) {
  .mobile-break {
    display: inline;
  }
   .contact-main-img{
    
      margin-top:31%;
    }
    
}


@media (max-width:500px)
  {
    .contact-section h2{
    	font-size:23px !important;
      text-align:center
    }
    
    .contact-section p, .contact-list li  {
    	font-size:14px;
    }
   .contact-list li .icon img {
    width: 23px !important;
    height: 23px !important;
}
    .contact-list li .icon {
    	padding:6px !important;
    }
    .container{
    	margin-top:0 !important;
      flex-direction:column;
    }
    .partner-logos{
    	padding:0;
    }
    .contact-main-img{
    	height:22.5vh;
      margin-top:43.5%;
    }
  
}

contact-right input::placeholder{
  color: white !important; /* Replace with your desired color */
  opacity: 1;  /* Ensures full visibility in some browsers like Firefox */
}


.mobile-break {
  display: none;
}



