    :root {
      --muted: #9aa6b2;
      --accent: #7c3aed;
      --accent-2: #06b6d4;
      --text-light: #e6eef6;
      --panel: rgba(15, 23, 36, 0.8);
      --card: rgba(13, 22, 34, 0.85);
      --glass: rgba(255, 255, 255, 0.04);
      --gradient: linear-gradient(90deg, #8e2de2, #4a00e0, #00b09b, #ff6a00, #ee0979);
    }


    * {
      box-sizing: border-box;
      

    }

    html,
    body {
      height: 100%;
      
    }

    body {
      margin: 0;
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
      background:
        linear-gradient(rgba(11, 18, 32, 0.8), rgba(11, 18, 32, 0.8)),
        url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?q=80&w=1600&auto=format&fit=crop") no-repeat center center fixed;
      background-size: cover;
      color: #e6eef6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 1.5;
      padding-bottom: 60px;
      
      
      
    }

    .container {
      max-width: 90%;
      margin: 0 auto;
      padding: 2px
    }
/* 
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 0;
      position: relative; keep hamburger inside header
    } */

    /* .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      position: relative;
    } */
     .header {
    width: 100%;
    padding-top: 20px;
}
     .brand {
    display: flex;
    flex-direction: column;
    position: relative;
    display: inline-block;
}
.header .container {
    max-width: 1200px;     /* keeps everything centered */
    margin: 0 auto;        /* centers the container */
    padding: 0 20px;       /* space on left & right */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Nav in center */
.site-nav {
    display: flex;
    gap: 30px;
}

.site-nav a {
    color: white;
    text-decoration: none;
     margin-left: 25px;        /* pushes nav toward the right side */
  margin-right: 20px;       /* adds spacing before Get Quote */
}

/* Quote button */
.header-quote {
    background: #7d3cff;
    padding: 10px 25px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
}

.hamburger {
    display: none; /* visible only in mobile; add responsive rules later */
}
    .brand img {
      background: none;
      /* solid background behind logo */
      border-radius: 0;
      /* remove rounded corners if you don’t want them */
      box-shadow: none;
      width: 208px;
      height: 208px;
      display: block;
    }

    .brand .overlay-text {
      position: absolute;
      bottom: 30px;
      /* put inside logo */
      left: 50%;
      transform: translateX(-50%);
      color: white;
      font-size: 14px;
      font-weight: 600;
      background: none;
      padding: 4px 8px;
      border-radius: 6px;
      white-space: nowrap;
    }

    /* .logo{
      width:48px;height:48px;border-radius:10px;background:none;
      display:flex;align-items:center;justify-content:center;font-weight:800;color:white;box-shadow:0 6px 18px rgba(2,6,23,0.6);
    } */
    nav {
      display: flex;
      gap: 18px;
      align-items: center

    }

    nav a {
  
color: white;

display: inline-block;
      text-decoration: none;
      padding: 8px;
      border-radius: 8px;
      margin-top: 40px;
      position: relative;
      font-size: large;
      transition: color 0.3s ease;
    }
    nav a:hover {
  color:  #7c3aed !important; /* same as #7c3aed */
  background: transparent;
  
}
    /* .rowdies-bold {
  font-family: "Rowdies", sans-serif;
  font-weight: 2000px;
  font-style: normal;
} */
/* 
    nav a:hover {
      color: white;
      background: var(--transparent);
    } */
    
/* Hover effect: glowing underline */
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px; /* underline thickness */
  /* background: #7c3aed; underline color */
  /* box-shadow: 0 0 8px #7c3aed, 0 0 16px #7c3aed; glowing effect */
  border-radius: 2px;
  transition: width 0.3s ease;
  background: currentColor;
  box-shadow: 0 0 8px currentColor, 0 0 16px currentColor;
}

  


nav a:hover::after {
  width: 50%; /* full underline on hover */
  
}
/* --- other styles above --- */

/* Final nav hover color fix */



   
    /* nav a.btn:hover {
      opacity: 0.85; */
      /* background: var(--accent); */
      /* keep gradient, not glass */
      /* color: white;
    } */

    .btn {
      display: inline-block;
      margin-top: 2rem;
      padding: 0.75rem 1.5rem;
      border-radius: 30px;
      font-weight: 600;
      background-color: var(--accent);
      color: white;
      text-decoration: none;
      transition: 0.3s;
    }

    .btn:hover {
      opacity: 0.85;
    }
/* Hamburger button */
.hamburger {
  display: none; /* show via media query */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 24px;
  cursor: pointer;
  z-index: 1000;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 8px;
  margin-top: 40px;
}

.hamburger .bar {
  width: 20px;
  height: 2px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
      margin-top: 28px;
      max-width: 100%;
      padding: 0 60px;
      margin-bottom: 120px;
    }

    .hero-card {
      background: var(--card);
      padding: 36px;
      border-radius: 18px;
      box-shadow: 0 8px 30px rgba(2, 6, 23, 0.6);
    }

    .eyebrow {
      color: var(--accent);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.6px
    }

    h1 {
      margin: 8px 0 12px;
      font-size: 34px
    }

    p.lead {
      color: var(--muted);
      margin: 0 0 18px
    }

    .cta-row {
      display: flex;
      gap: 12px
    }

    /* Carousel styles */
    .hero-carousel {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.6);
  position: relative;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card,
.hero-carousel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}



.carousel-track {
  display: flex;
  width: 300%;
  animation: slide 20s infinite;
}

.carousel-slide {
  flex: 0 0 100%;
  background: var(--glass);
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.carousel-slide img {
  width: 100%;
  max-height: 580px; /* or whatever height matches your hero-card */
  object-fit:contain;
  border-radius: 18px;
}



/* Simple sliding animation */
@keyframes slide {
  0% { transform: translateX(0); }
  33% { transform: translateX(-100%); }
  66% { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}

/* carousel ends*/
    .services {
  margin-top: 40px;
  text-align: left;
}

/* .section-title {
  
  font-weight: 800;
  color: white; 
  margin-bottom: 40px;
 letter-spacing: 1px;
} */
.section-title {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  font-size: 23px;
  font-weight: 700;
  color: white;
  margin-bottom: 40px;
  letter-spacing: 1px;
}


.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  
  gap: 18px;
}

.service {
  background: var(--card);
  padding: 18px;
  border-radius: 12px;
  min-height: 180px;
   display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  
}

    .service h3 {
      margin: 8px 0 6px
    }

    .service p {
      margin: 0;
      color: var(--muted);
      font-size: 14px
    }

    .portfolio {
      margin-top: 36px
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px
    }

    .project {
      background: var(--card);
      padding: 14px;
      border-radius: 12px
    }

    .project img {
      width: 100%;
      height: 250px;
      object-fit: fill;
      border-radius: 8px
    }

    .contact {
      display: flex;
      gap: 18px;
      margin-top: 100px;
     
      max-width: 100%; /* Remove 80% restriction */
  padding: 0 40px; /* optional – gives breathing space from browser edge */
     
    }

    .contact form {
      flex: 1;
      background: var(--card);
      padding: 18px;
      border-radius: 12px
    }

    .contact .info {
       flex: 1; /* allow equal width for both sides */
  max-width: 420px; /* optional: limit if you want */
     
      padding: 18px;
      border-radius: 12px;
      background: var(--panel)
    }

    .field {
      display: flex;
      flex-direction: column;
      margin-bottom: 12px
    }

    label {
      font-size: 13px;
      color: white;
      margin-bottom: 6px
    }

    input,
    textarea,
    select {
      padding: 12px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.04);
      background: transparent;
      color:#8c19f0;
      font-weight: bold;
    }
select option {
    background-color: #d9d7dc;  /* your color */
    color: rgb(113, 46, 229);               /* text color */
}
    textarea {
      min-height: 120px
    }

 footer {
    margin-top: 48px;
    color: var(--muted);
    display: flex;
    justify-content: center;   /* center items horizontally */
    align-items: center;       /* vertically centered */
    flex-direction: column;    /* stack items */
    gap: 12px;
    text-align: center;
}

/* Mobile responsiveness */
/* General mobile adjustments */
/* ==================== MOBILE RESPONSIVE ==================== */

/* Small devices (up to 980px) */
@media (max-width: 980px) {

  .hamburger { display: flex; }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    margin-top: 40px;
    height: 50%;
    width: 250px;
    background: rgba(8,12,20,0.95);
    flex-direction: column;
    padding: 60px 20px;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 90;
  }

  .site-nav.open { right: 0; }

  .site-nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
  }

  .header-quote {
    padding: 8px 20px;
    font-size: 14px;
  }

  /* HERO SECTION */
  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
    margin-bottom: 60px;
  }

  .hero-carousel {
    height: 250px;
    padding: 16px;
  }

  /* CTA ROW */
  .cta-row {
    flex-direction: column;
    gap: 10px;
  }
  .btn {
    width: 100%;
    text-align: center;
  }

  /* SERVICES GRID */
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* PORTFOLIO GRID */
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* CONTACT SECTION */
  .contact {
    flex-direction: column;
    gap: 16px;
    padding: 0 16px;
    margin-top: 60px;
  }
  .contact .info,
  .contact form {
    max-width: 100%;
  }

  /* FOOTER */
  footer {
    padding: 24px 16px;
    gap: 8px;
  }

  /* Extra small devices (up to 420px) */
  @media (max-width: 420px) {
    .brand img {
      width: 140px;
      height: 140px;
    }
    .brand .overlay-text {
      font-size: 12px;
      bottom: 20px;
    }

    /* HERO SECTION */
    .hero-carousel {
      height: 180px;
      padding: 12px;
    }
    .hero-card {
      padding: 24px;
    }

    /* SERVICES & PORTFOLIO */
    .service-grid,
    .grid {
      grid-template-columns: 1fr;
    }

    /* BUTTONS */
    .btn {
      padding: 0.5rem 1rem;
      font-size: 14px;
    }

    /* NAV LINKS */
    .site-nav a {
      font-size: 14px;
    }

    /* CONTACT FORM */
    .contact form,
    .contact .info {
      padding: 16px;
    }

    /* FOOTER */
    footer {
      gap: 6px;
    }
  } /* closes 420px */

} /* closes 980px */

/* Optional: smooth transition for nav open/close */
.site-nav,
.hamburger .bar {
  transition: all 0.3s ease;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  z-index: 9999;
  cursor: pointer;
  animation: float 2s ease-in-out infinite;
}

.whatsapp-float img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* Floating animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Mobile view adjustments */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
    animation: float 1.8s ease-in-out infinite;
  }
  .whatsapp-float img {
    width: 60px;
    height: 60px;
  }
}
