 /* CSS Variables for Brand Colors */
      :root {
        --primary-blue: #005b96;
        --accent-blue: #00a6d6;
        --solar-yellow: #f4c430;
        --eco-green: #3fa34d;
        --light-gray: #f6f6f6;
        --slate-gray: #555555;
        --charcoal-black: #1e1e1e;
        --white: #ffffff;
        --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        --transition: all 0.3s ease;
      }

      /* Base Styles */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Jost", sans-serif;
        line-height: 1.6;
        color: var(--slate-gray);
        background-color: black;
      }

      h1,
      h2,
      h3,
      h4 {
          font-family: "Garamond", "Times New Roman", serif;
        
        margin-bottom: 1.25rem;
        letter-spacing: 0.3px;
        font-weight: 500;
        line-height: 1.2;
        color: var(--charcoal-black);
     
       
      }

      h1 {
        font-size: 2.5rem;
      }

      h2 {
        font-size: 2rem;
        position: relative;
        padding-bottom: 0.5rem;
      }

      h2:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: var(--accent-blue);
      }

      p {
        margin-bottom: 1rem;
      }

      a {
        text-decoration: none;
        color: var(--primary-blue);
        transition: var(--transition);
      }

      img {
        max-width: 100%;
        height: auto;
      }

      .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
      }

      .section-padding {
        padding: 5rem 0;
      }

      .text-center {
        text-align: center;
      }

      .text-center h2:after {
        left: 50%;
        transform: translateX(-50%);
      }

      .btn {
        display: inline-block;
        padding: 12px 28px;
        border-radius: 4px;
        font-weight: 600;
        text-align: center;
        cursor: pointer;
        transition: var(--transition);
        border: none;
        font-size: 1rem;
      }

      .btn-primary {
        background-color: var(--primary-blue);
        color: var(--white);
      }
     .btn-primary1 {
        background-color: var(--solar-yellow);
        color: var(--white);
      }

      .btn-primary:hover {
        background-color: #003b63;
        transform: translateY(-3px);
      }

      .btn-secondary {
        background-color: black;
        color: var(--white);
      }

      .btn-secondary:hover {
        background-color: #0085b3;
        transform: translateY(-3px);
      }

      .btn-outline {
        background-color: green;
        color: white;
        border: 2px solid var(--primary-blue);
      }

      .btn-outline:hover {
        background-color: var(--primary-blue);
        color: var(--white);
        transform: translateY(-3px);
      }

      .highlight {
        color: var(--solar-yellow);
        font-weight: 700;
      }
/* === HEADER BASE (Transparent initially) === */
/* ================================
      PREMIUM HEADER STYLING
================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding:  0;
  background-color: rgb(59, 185, 235);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: background-color 0.35s ease, 
              padding 0.35s ease, 
              box-shadow 0.35s ease,
              backdrop-filter 0.35s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.35s ease-in-out;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 100px;
  width: auto;
  margin-right: 12px;
  transition: height 0.35s ease;
}

.logo-text {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 1px;
  transition: font-size 0.35s ease, color 0.35s ease;
}

/* Navigation - Simplified */
nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem; /* Replaced margin-left with gap for cleaner code */
}

nav ul li a {
  color: #000;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

nav ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-blue);
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: var(--primary-blue);
}

nav ul li a:hover:after {
  width: 100%;
}

/* Header State Classes */
header.header-small {
  padding: 0.6rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

header.header-small.header-transparent {
  background-color: rgba(255, 255, 255, 0);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

header.header-small .logo-img {
  height: 65px;
}

header.header-small .logo-text {
  font-size: 1.3rem;
}

header.header-small.header-transparent nav ul li a,
header.header-small:not(.header-transparent) nav ul li a {
  color: #ffffff;
}

header.header-small:not(.header-transparent) {
  background-color: rgb(59, 185, 235);
}

header.header-small:not(.header-transparent) .logo-img {
  height: 70px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-blue);
  cursor: pointer;
}

      /* Page Header */
      /* Enhanced Premium Page Header */
.page-header {
  position: relative;
  margin-top: 80px;
  height: 75vh;
  padding: 10rem 0 6rem;
  text-align: center;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  background: linear-gradient(135deg, rgba(10, 25, 47, 0.75), rgba(10, 25, 47, 0.6)),
    url("https://images.unsplash.com/photo-1542292539739-f27189ebce95?w=1200&q=80")
      center/cover no-repeat;

  overflow: hidden;
}

/* Soft floating overlay for elegance */
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top, rgba(255,255,255,0.15), transparent 70%);
  opacity: 0.3;
}

/* Header Title */
.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 600;
  letter-spacing: 1.5px;
  color:var(--accent-blue);
  text-transform: capitalize;
  animation: fadeDown 1.2s ease;
}

/* Subtitle */
.page-header p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  max-width: 750px;
  margin: 0.8rem auto 1.5rem;
  color: #d3e4f7;
  line-height: 1.7;
  animation: fadeUp 1.4s ease;
}

/* Breadcrumb Navigation */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  animation: fadeUp 1.6s ease;
}

.breadcrumb a {
  color: #e8f3ff;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.breadcrumb a:hover {
  opacity: 1;
  color: #87cefa; /* subtle premium sky blue */
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}

/* Simple Entry Animations */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-header {
    height: 60vh;
    padding: 8rem 1rem 5rem;
  }
  .breadcrumb {
    flex-wrap: wrap;
  }
}

     /* Section padding & background */
.contact-methods {
  padding: 80px 20px;
  background: linear-gradient(rgba(238, 239, 240, 0.925), rgba(248, 249, 250, 0.568)),
          url("WhatsApp\ Image\ 2025-11-27\ at\ 20.12.18_d3f0f74b.jpg");
        background-size: cover;
        background-position: center;
  position: relative;
  overflow: hidden;
}

.contact-methods .text-center h2 {
  font-size: 2.8rem;
  font-weight: 500;
  color:var(--accent-blue);
  margin-bottom: 10px;
}

.contact-methods .text-center p {
  font-size: 1.1rem;
  color: #555;
}

/* Grid layout */
.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 50px;
}

/* Card styling */
.method-card {
  background-color:  black;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 20px var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px  rgba(0, 0, 0, 0.1);
}

/* Icon circle */
.method-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  transition: background var(--transition), transform var(--transition);
}

.method-card:hover .method-icon {
  transform: scale(1.2);
  background: #0056b3;
}

/* Card headings */
.method-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--solar-yellow);
}

/* Details text */
.method-card .method-details p {
  margin: 5px 0;
  color: #cccaca;
  font-size: 0.95rem;
}

/* Buttons */
.method-card .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  border-radius: 50px;
  background-color: #0077ff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}

.method-card .btn:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .contact-methods .text-center h2 {
    font-size: 2.2rem;
  }

  .method-card {
    padding: 25px 15px;
  }
}
      /* Contact Form & Info */
      .contact-main {
        padding: 5rem 0;
        
      }
      .contact-main h2{
        color: var(--accent-blue);
      }

      .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
      }

      .contact-form-container {
        background-color: var(--white);
        border-radius: 8px;
        padding: 2.5rem;
        box-shadow: var(--shadow);
      }

      .contact-form-container h2 {
        margin-bottom: 1.5rem;
      }

      .form-group {
        margin-bottom: 1.5rem;
      }

      .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        color: var(--charcoal-black);
      }

      .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 1rem;
        transition: var(--transition);
      }

      .form-control:focus {
        border-color: var(--accent-blue);
        outline: none;
        box-shadow: 0 0 0 3px rgba(0, 166, 214, 0.2);
      }

      textarea.form-control {
        min-height: 150px;
        resize: vertical;
      }

      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
      }

      .contact-info-container {
        background-color: var(--light-gray);
        border-radius: 8px;
        padding: 2.5rem;
      }

      .contact-info-container h2 {
        margin-bottom: 1.5rem;
      }

      .info-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e0e0e0;
      }

      .info-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
      }

      .info-icon {
        font-size: 1.5rem;
        color: var(--accent-blue);
        margin-right: 1rem;
        min-width: 30px;
      }

      .info-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
      }

      .business-hours {
        margin-top: 1rem;
      }

      .hours-item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.5rem;
      }

      /* Map Section */
      .map-section {
        padding: 0 0 5rem;
        color: white;
        
      }
      .map-section h2{
 color: var(--accent-blue);
      }

      .map-container {
        height: 400px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: var(--shadow);
      }

      .map-placeholder {
        height: 100%;
        background-color: var(--light-gray);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-blue);
        font-size: 1.2rem;
      }

      /* FAQ Section */
      .faq-section {
        background: linear-gradient(rgba(238, 239, 240, 0.973), rgba(248, 249, 250, 0.788)),
          url("WhatsApp\ Image\ 2025-11-27\ at\ 20.12.18_d3f0f74b.jpg");
        background-size: cover;
        background-position: center;
      }
      .faq-section h2{
         color: var(--accent-blue);
      }

      .faq-container {
        max-width: 800px;
        margin: 0 auto;
      }

      .faq-item {
        background-color: black;
        border-radius: 8px;
        margin-bottom: 1rem;
        box-shadow: var(--shadow);
        overflow: hidden;
        color: rgba(255, 255, 255, 0.747);
      }

      .faq-question {
        padding: 1.5rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
      }

      .faq-question i {
        transition: var(--transition);
      }

      .faq-answer {
        padding: 0 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
      }

      .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
        max-height: 500px;
      }

      .faq-item.active .faq-question i {
        transform: rotate(180deg);
      }

      /* CTA Section */
      .cta-section {
        background-color: var(--primary-blue);
        color: var(--white);
        text-align: center;
        padding: 4rem 0;
      }

      .cta-section h2 {
        color: var(--solar-yellow);
        margin-bottom: 1.5rem;
      }

      .cta-section h2:after {
        display: none;
      }

      .cta-section p {
        max-width: 700px;
        margin: 0 auto 2rem;
      }

      .cta-btns {
        display: flex;
        justify-content: center;
        gap: 1rem;
      }
      #whatsapp{
        background-color: var(--eco-green);
      }

      /* Footer */
      footer {
        background-color: var(--charcoal-black);
        color: var(--white);
        padding: 4rem 0 2rem;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
      }

      .footer-column h3 {
        color: var(--solar-yellow);
        margin-bottom: 1.5rem;
        font-size: 1.2rem;
      }

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

      .footer-column ul li {
        margin-bottom: 0.8rem;
      }

      .footer-column ul li a {
        color: #ccc;
        transition: var(--transition);
      }

      .footer-column ul li a:hover {
        color: var(--accent-blue);
        padding-left: 5px;
      }

      .contact-info li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
      }

      .contact-info li i {
        margin-right: 10px;
        color: var(--accent-blue);
      }

      .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
      }

      .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--white);
        transition: var(--transition);
      }

      .social-links a:hover {
        background-color: var(--accent-blue);
        transform: translateY(-3px);
      }

      .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.9rem;
        color: #aaa;
      }

            /* Sticky Quote Button */
.sticky-quote {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: var(--accent-blue);
  color:white;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(179, 0, 0, 0.4);
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-quote:hover {
  background: linear-gradient(135deg, var(--secondary), var(--light-gold));
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

      /* WhatsApp Widget */
      .whatsapp-widget {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 1000;
      }

      .whatsapp-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background-color: #25d366;
        color: var(--white);
        border-radius: 50%;
        font-size: 1.8rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: var(--transition);
        animation: pulse 2s infinite;
      }

      .whatsapp-btn:hover {
        transform: scale(1.1);
      }

      @keyframes pulse {
        0% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        }
        70% {
          box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
        h1 {
          font-size: 2.2rem;
        }

        h2 {
          font-size: 1.8rem;
        }

        .page-header h1 {
          font-size: 2.5rem;
        }

        .contact-container {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 768px) {
        .mobile-menu-btn {
          display: block;
        }

        nav {
          position: fixed;
          top: 80px;
          left: -100%;
          width: 80%;
          height: calc(50vh - 40px);
          background-color: white;
          transition: var(--transition);
          box-shadow: var(--shadow);
          padding: 2rem;
          
        }

        nav.active {
          left: 0;
        }

        nav ul {
          flex-direction: column;
          
        }

        nav ul li {
          margin: 0 0 1.5rem 0;
          
        }

        .nav-cta {
          display: none;
        }
        

        #mainNav{
          color: var(--white);
        }

        /*  .logo img {
    width: 70px;
    height: 70px;
  }

  .logo {
    font-size: 1.5rem;
  }
*/
        .cta-btns {
          flex-direction: column;
          gap: 1rem;
        }

        .page-header {
          padding: 8rem 0 4rem;
        }

        .section-padding {
          padding: 3rem 0;
        }

        .form-row {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 576px) {
        .page-header h1 {
          font-size: 2rem;
        }

        .methods-grid {
          grid-template-columns: 1fr;
        }

        .contact-form-container,
        .contact-info-container {
          padding: 1.5rem;
        }
      }

      /* Ensure mobile menu styles are correct */
@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 80%;
    height: calc(70vh - 80px);
    background-color: var(--accent-blue);
    transition: left 0.4s ease;
    box-shadow: var(--shadow);
    padding: 2rem;
    z-index: 999;
  }
  
  nav.active,
  nav.mobile-active {
    left: 0 !important;
  }
  
  nav ul {
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  nav ul li {
    margin-bottom: 1.5rem;
  }
  
  /* Optional: Staggered animation for menu items */
  nav.active ul li,
  nav.mobile-active ul li {
    opacity: 0;
    animation: fadeIn 0.3s forwards;
  }
  
  nav.active ul li:nth-child(1),
  nav.mobile-active ul li:nth-child(1) { animation-delay: 0.1s; }
  nav.active ul li:nth-child(2),
  nav.mobile-active ul li:nth-child(2) { animation-delay: 0.2s; }
  nav.active ul li:nth-child(3),
  nav.mobile-active ul li:nth-child(3) { animation-delay: 0.3s; }
  nav.active ul li:nth-child(4),
  nav.mobile-active ul li:nth-child(4) { animation-delay: 0.4s; }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
  }
}

/* Hamburger animation */
.mobile-menu-btn.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.open .bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Body lock when menu is open */
body.menu-open {
  overflow: hidden;
}

