   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
       font-family: "Segoe UI", sans-serif;
   }

   /* ---------- HEADER ---------- */
   /* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: #0f172a;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}
 


/* Container */
.nav-wrapper {
  max-width: 1400px;
  margin: auto;
  padding: 10px 6%;   /* 🔥 bigger header */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo img {
  height: 75px;   /* 🔥 large logo */
}

/* Menu */
.nav-menu a {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: white;
  text-decoration: none;
  margin-left: 30px;
  padding: 8px 0;
  transition: color 0.3s ease;
}

/* Hover underline animation */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffb703, #fb8500);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* Hover color */
.nav-menu a:hover {
  color: #fb8500;
}

/* CTA Button */
.nav-cta {
  margin-left: 40px;
  padding: 12px 30px;
  background: linear-gradient(135deg, #ffb703, #fb8500);
  color: #000 !important;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(251,133,0,0.4);
}

.nav-cta::after {
  display: none;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-menu {
    display: none; /* mobile menu can be added */
  }
}


   /* ---------- HERO ------*/
   .hero-modern {
  position: relative;
  height: 100vh;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

/* Background Slides */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease, transform 6s ease;
}

.hero-bg.active {
  opacity: 1;
  transform: scale(1);
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.35)
  );
  z-index: 1;
}

/* Glass Content Box */
.hero-box {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 60px;
  margin-left: 8%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  color: #fff;
  box-shadow: 0 25px 70px rgba(0,0,0,0.3);
}

/* Text Styling */
.hero-tag {
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 1px;
}

.hero-box h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-box p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.95;
}

/* Buttons */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.btn-primary {
  padding: 14px 30px;
  background: #ffb703;
  color: #000;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline {
  padding: 14px 30px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-box {
    margin: 0 6%;
    padding: 40px;
  }

  .hero-box h1 {
    font-size: 34px;
  }
}
/* ===== ABOUT SECTION ===== */
.about-layout {
  padding: 120px 6%;
  background: #0f172a;
  color: #ffffff;
}

.about-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* TEXT */
.about-text h2 {
  font-size: 14px;
  letter-spacing: 2px;
  color: #ffb703;
  margin-bottom: 10px;
}

.about-text h3 {
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 25px;
}

.about-text p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #e5e7eb;
  margin-bottom: 18px;
}

/* IMAGES */
.about-images {
  position: relative;
}

.about-images img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.img-large {
  height: 420px;
}

.img-small {
  position: absolute;
  width: 65%;
  bottom: -60px;
  right: -30px;
  height: 280px;
  border: 6px solid #0f172a;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .img-small {
    position: static;
    width: 100%;
    height: 300px;
    margin-top: 30px;
  }
}




   /* ---------- SERVICES ---------- */
   /* CLEAR GAP BETWEEN HERO & SERVICES */
   .section-divider {
       height: 120px;
       background: linear-gradient(to bottom,
               rgba(0, 0, 0, 0.15),
               rgba(255, 255, 255, 1));
   }

   /* SERVICES SECTION */
   .services {
       background: #f7f8fa;
       padding: 90px 0 100px;
   }

   /* HEADER STYLE – COMPLETELY DIFFERENT FROM HERO */
   .services-header {
       text-align: center;
       max-width: 750px;
       margin: 0 auto 70px;
   }

   .services-header span {
       display: inline-block;
       font-size: 13px;
       letter-spacing: 2px;
       color: #c59d5f;
       margin-bottom: 12px;
   }

   .services-header h2 {
       font-size: 40px;
       color: #111;
       margin-bottom: 15px;
   }

   .services-header p {
       font-size: 16px;
       color: #666;
       line-height: 1.7;
   }

   /* GRID */
   .services-grid {
       padding: 0 0;
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
       gap: 35px;
   }

   /* BASE CARD */
   .service-card {
       background: #fff;
       border-radius: 18px;
       padding: 22px;
       box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
       transition: all 0.35s ease;
       position: relative;
   }

   .service-card:hover {
       transform: translateY(-10px);
   }

   /* IMAGE */
   .service-img {
       height: 170px;
       border-radius: 14px;
       overflow: hidden;
       margin-bottom: 18px;
   }

   .service-img img {
       width: 100%;
       height: 100%;
       object-fit: cover;
   }

   /* TEXT */
   .service-card h3 {
       font-size: 20px;
       text-align: center;
       margin-bottom: 8px;
   }

   .service-card p {
       font-size: 14px;
       text-align: center;
       color: #555;
       line-height: 1.6;
   }

   /* UNIQUE CARD ACCENTS */
   .service-card.residential {
       border-top: 4px solid #c59d5f;
   }

   .service-card.office {
       border-top: 4px solid #3a7bd5;
   }

   .service-card.commercial {
       border-top: 4px solid #2ecc71;
   }





   /* ---------- ABOUT ---------- */
   .about {
       width: 90%;
       margin: auto;
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 40px;
       align-items: center;
   }

   .about img {
       width: 100%;
       border-radius: 4px;
   }

   .about h2 {
       margin-bottom: 15px;
   }

   .about p {
       line-height: 1.7;
       color: #555;
   }

   /* ---------- FOOTER ---------- */
/* ===== FOOTER ===== */
.site-footer {
  background: #020617;   /* same as header */
  color: #e5e7eb;
  padding: 60px 6% 0;
}

/* Footer layout */
.footer-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
}

/* Logo */
.footer-logo {
  height: 70px;
  margin-bottom: 20px;
}

/* Text */
.footer-col p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #cbd5f5;
}

/* Headings */
.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
}

/* Accent underline */
.footer-col h4::after {
  content: "";
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, #ffb703, #fb8500);
  position: absolute;
  left: 0;
  bottom: -8px;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 15.5px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #cbd5f5;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffb703;
}

/* Bottom bar */
.footer-bottom {
  margin-top: 70px;
  padding: 10px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 100px 6%;
  background: #0f172a;
  color: #ffffff;
}

.contact-wrapper {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
}

/* Contact Info */
.contact-info h2 {
  font-size: 38px;
  margin-bottom: 15px;
  color: #ffb703;
}

.contact-info p {
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.6;
  color: #e5e7eb;
}

.info-box {
  margin-bottom: 18px;
  font-size: 15.5px;
}

.info-box a {
  color: #fb8500;
  text-decoration: none;
}

.contact-social {
  margin-top: 25px;
}

.contact-social a {
  margin-right: 18px;
  display: inline-block;
}

.contact-social img {
  width: 28px;
  transition: 0.3s ease;
}

.contact-social img:hover {
  transform: scale(1.2);
}

/* Contact Form */
.contact-form form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  background: #1f2937;
  color: #e5e7eb;
}

.contact-form textarea {
  resize: none;
}

.btn-submit {
  padding: 14px 30px;
  margin-top: 15px;
  background: linear-gradient(135deg, #ffb703, #fb8500);
  color: #000;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
/* FORCE INPUT VISIBILITY */
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;

  background-color: #ffffff;   /* IMPORTANT */
  color: #111827;              /* Dark text */

  border: 1px solid #d1d5db;
  border-radius: 8px;

  font-size: 15px;
  outline: none;

  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Textarea height */
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Placeholder color */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6b7280;
}

/* On focus effect */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ffb703;
  box-shadow: 0 0 0 3px rgba(255,183,3,0.25);
}

/* Form layout fix */
.contact-form form {
  width: 100%;
}

/* Row spacing */
.form-row {
  margin-bottom: 18px;
}
/* CONTACT SECTION */
.contact-section{
  max-width:1200px;
  margin:auto;
  padding:60px 20px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

/* Contact Box */
.contact-box{
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(14px);
  border-radius:20px;
  padding:40px;
  color:#fff;
  box-shadow:0 20px 40px rgba(0,0,0,0.25);
}

.contact-box h2{
  font-size:32px;
  margin-bottom:10px;
}

.contact-box p{
  font-size:14px;
  opacity:0.85;
  margin-bottom:30px;
}

/* Inputs */
.input-group{
  position:relative;
  margin-bottom:25px;
}

.input-group input,
.input-group textarea{
  width:100%;
  padding:14px;
  background:transparent;
  border:1px solid rgba(255,255,255,0.4);
  border-radius:10px;
  color:#fff;
  outline:none;
}

.input-group textarea{
  resize:none;
}

.input-group label{
  position:absolute;
  top:50%;
  left:14px;
  transform:translateY(-50%);
  font-size:13px;
  color:#ccc;
  pointer-events:none;
  transition:0.3s;
}

/* Floating Labels */
.input-group input:focus + label,
.input-group textarea:focus + label,
.input-group input:valid + label,
.input-group textarea:valid + label{
  top:-8px;
  background:#203a43;
  padding:0 6px;
  font-size:11px;
  color:#00ffd5;
}

/* Button */
.contact-box button{
  width:100%;
  padding:14px;
  border:none;
  border-radius:30px;
  background:linear-gradient(90deg,#00ffd5,#00c6ff);
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.contact-box button:hover{
  transform:scale(1.04);
}

/* Social Icons */
.social-links{
  margin-top:30px;
  display:flex;
  gap:20px;
}

.social-links a{
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.2);
  color:#fff;
  font-size:20px;
  transition:0.3s;
}

.social-links a:hover{
  background:#fff;
  color:#000;
  transform:translateY(-6px);
}

/* Map */
.map-box{
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(0,0,0,0.25);
}

.map-box iframe{
  width:100%;
  height:100%;
  border:none;
}

/* Responsive */
@media(max-width:900px){
  .contact-section{
    grid-template-columns:1fr;
  }
  .map-box{
    height:350px;
  }
}
/* CONTACT SECTION */
.contact-section {
  padding: 60px 20px;
  background: #f7f7f7;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
}

.contact-header h2 {
  font-size: 32px;
  margin-bottom: 8px;
  color: #222;
}

.contact-header p {
  font-size: 15px;
  color: #555;
  margin-bottom: 18px;
}

.contact-info {
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #333;
}

.info-item i {
  color: #007acc;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.input-row {
  display: flex;
  gap: 16px;
}

.input-group {
  position: relative;
  width: 100%;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
  border-radius: 6px;
  background: #fff;
}

.input-group label {
  position: absolute;
  top: -8px;
  left: 12px;
  background: #f7f7f7;
  padding: 0 4px;
  font-size: 12px;
  color: #007acc;
}

.textarea-group textarea {
  resize: none;
}

.btn-submit {
  padding: 14px;
  background: #007acc;
  color: #fff;
  font-size: 15px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

.btn-submit:hover {
  background: #005fa3;
}

.map-frame {
  grid-column: 1 / -1;
  margin-top: 30px;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}
/* WHAT WE DO SECTION */
 /* WHAT WE DO SECTION */
.what-we-do {
  padding: 90px 20px;
  background-color: #f6f7f9;
  font-family: "Inter", sans-serif;
}

.wwd-container {
  max-width: 1200px;
  margin: auto;
}

.wwd-header {
  text-align: center;
  margin-bottom: 60px;
}

.wwd-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 14px;
}

.wwd-header p {
  font-size: 16px;
  color: #555;
  max-width: 720px;
  margin: auto;
  line-height: 1.6;
}

/* GRID */
.wwd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* CARD */
.wwd-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.wwd-card:hover {
  transform: translateY(-10px);
}

/* IMAGE */
.wwd-img {
  height: 220px;
  overflow: hidden;
}

.wwd-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.wwd-card:hover .wwd-img img {
  transform: scale(1.1);
}

/* CONTENT */
.wwd-content {
  padding: 26px 24px 30px;
}

.wwd-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.wwd-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* HIGHLIGHT CARD */
.wwd-card.highlight {
  border: 2px solid #0b3c5d;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .wwd-header h2 {
    font-size: 34px;
  }

  .wwd-img {
    height: 200px;
  }
}
/* ABOUT US SECTION */
.about-us {
  padding: 100px 20px;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT CONTENT */
.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  letter-spacing: 3px;
  color: #0b3c5d;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.about-tag::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #0b3c5d;
}


.about-content h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  color: #1e1e1e;
  margin-bottom: 22px;
}

.about-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* BULLET POINTS */
.about-points {
  list-style: none;
  padding: 0;
  margin-top: 22px;
}

.about-points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

.about-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #0b3c5d;
  font-size: 14px;
}

/* RIGHT IMAGE */
.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-image img {
    height: 360px;
  }
}
/* STATS SECTION */
.stats-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #0b3c5d, #092a40);
  font-family: "Inter", sans-serif;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

/* STAT CARD */
.stat-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px 20px;
  border-radius: 18px;
  backdrop-filter: blur(6px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* NUMBER */
.stat-card h3 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

/* LABEL */
.stat-card p {
  font-size: 15px;
  letter-spacing: 1px;
  color: #e0e0e0;
  text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
  }

  .stat-card h3 {
    font-size: 36px;
  }
}
/* SERVICES SECTION */
.services-section {
  padding: 100px 20px;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 12px;
}

.services-header p {
  font-size: 16px;
  color: #555;
  max-width: 720px;
  margin: auto;
  line-height: 1.6;
}

/* 12 COLUMN GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

/* EACH IMAGE TAKES 6 COLUMNS (2 PER ROW) */
.service-item {
  grid-column: span 6;
  position: relative;
  height: 360px;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

/* IMAGE */
.service-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

/* OVERLAY */
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.15)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #ffffff;
  transition: opacity 0.4s ease;
}

.service-overlay h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-overlay p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 90%;
}

/* HOVER EFFECT */
.service-item:hover img {
  transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .service-item {
    grid-column: span 12;
    height: 300px;
  }
}

@media (max-width: 576px) {
  .service-item {
    height: 260px;
  }
}
/* CLIENTS / TRUSTED BY SECTION */
.clients-section {
  padding: 80px 20px;
  background-color: #fafafa;
  font-family: "Inter", sans-serif;
}

.clients-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.clients-title {
  font-size: 34px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 34px;
}

/* GRID OF LOGOS */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
  align-items: center;
  justify-items: center;
}

/* LOGO ITEMS */
.client-logo img {
  width: 100%;
  max-width: 160px;
  height: auto;
  transition: filter 0.4s ease, opacity 0.4s ease;
  
  /* start as grayscale (black & white) */
  filter: grayscale(100%);
  opacity: 0.6;
}

/* HOVER — show full color */
.client-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
/* CONTACT SECTION */
/* INTERIOR CONTACT SECTION */
.interior-contact {
  padding: 160px 20px;
  background: #f7f7f7;
  font-family: "Inter", sans-serif;
}

.interior-contact-container {
  max-width: 1250px;
  margin: auto;
}

/* HEADER */
.interior-contact-header {
  text-align: center;
  margin-bottom: 90px;
}

.interior-contact-header span {
  font-size: 60px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9a7b4f;
  font-weight: 600;
}

.interior-contact-header h2 {
  font-size: 48px;
  margin: 20px 0;
  color: #1e1e1e;
}

.interior-contact-header p {
  max-width: 620px;
  margin: auto;
  font-size: 16px;
  color: #666;
}

/* GRID */
.interior-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  background: #ffffff;
  padding: 70px;
  border-radius: 26px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.08);
  margin-bottom: 100px;
}

/* INFO */
.interior-contact-info h3 {
  font-size: 26px;
  margin-bottom: 30px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.info-box small {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 6px;
}

.info-box p {
  font-size: 16px;
  color: #222;
}

/* FORM */
.interior-contact-form input,
.interior-contact-form textarea,
.interior-contact-form select {
  width: 100%;
  padding: 16px 18px;
  margin-bottom: 18px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.interior-contact-form select {
  background: #ffffff;
}

.interior-contact-form input:focus,
.interior-contact-form textarea:focus,
.interior-contact-form select:focus {
  outline: none;
  border-color: #9a7b4f;
}

.interior-contact-form button {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  background: #9a7b4f;
  color: #ffffff;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.interior-contact-form button:hover {
  background: #7d623d;
}

/* MAP */
.interior-contact-map iframe {
  width: 100%;
  height: 460px;
  border: none;
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .interior-contact-grid {
    grid-template-columns: 1fr;
    padding: 45px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .interior-contact-header h2 {
    font-size: 36px;
  }
}
/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
/* MOBILE HEADER & NAV */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  background: #0f172a;
  padding: 15px 20px;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.mobile-logo {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.mobile-logo span {
  color: #ffb703;
}

/* HAMBURGER ICON */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* MOBILE NAV MENU */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #1e293b;
  padding: 80px 30px 30px;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
  transition: right 0.4s ease;
  box-shadow: -5px 0 20px rgba(0,0,0,0.3);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #ffb703;
}

/* MOBILE VIEW */
@media (max-width: 992px) {
  .site-header {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  /* Adjust hero for mobile header */
  .hero-modern {
    margin-top: 60px;
  }
}




 

 

