  :root {
        --emerald: #2e8b57;
        --gold: #c8a951;
        --blue: #1e6ea7;
        --white: #ffffff;
        --light-gray: #f5f5f5;
        --dark-gray: #333333;
        --transition: all 0.3s ease;
      }

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

      body {
        font-family: "Jost", sans-serif;
        line-height: 1.6;
        color: var(--dark-gray);
        background-color: var(--white);
        overflow-x: hidden;
      }

      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        font-family: "Jost", sans-serif;
        font-weight: 600;
        margin-bottom: 1rem;
      }

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

      ul {
        list-style: none;
      }

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

      .btn {
        display: inline-block;
        padding: 12px 28px;
        border-radius: 4px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: var(--transition);
        cursor: pointer;
        border: none;
        font-family: "Poppins", sans-serif;
      }

      .btn-primary {
        background-color: var(--emerald);
        color: var(--white);
      }

      .btn-primary:hover {
        background-color: #267349;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(46, 139, 87, 0.2);
      }

      .btn-secondary {
        background-color: var(--gold);
        color: var(--dark-gray);
      }

      .btn-secondary:hover {
        background-color: #b89a47;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(200, 169, 81, 0.2);
      }

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

      .btn-outline:hover {
        background-color: var(--white);
        color: var(--emerald);
      }

      .section {
        padding: 80px 0;
      }

      .section-title {
        text-align: center;
        margin-bottom: 50px;
        position: relative;
      }

      .section-title h2 {
        font-size: 2.5rem;
        color: var(--emerald);
        display: inline-block;
      }

      .section-title h2:after {
        content: "";
        display: block;
        width: 70px;
        height: 4px;
        background-color: var(--gold);
        margin: 15px auto;
      }

        /* Header Styles */
header {
  background-color: black;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  color: white;
}

      header.scrolled {
        padding: 10px 0;
        background-color: rgba(255, 255, 255, 0.95);
        color: black;
      }

      .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
      .logo {
        display: flex;
        align-items: center;
      }

      .logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

      .logo-text {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        font-size: 1.5rem;
      }

      .logo-text span {
        color: var(--emerald);
      }

     .nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}


      .nav-menu li {
        margin-left: 30px;
      }

    .nav-menu a {
  font-weight: 500;
  padding: 5px 0;
  position: relative;
  transition: var(--transition);
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--emerald);
  transition: width 0.3s ease;
}


      .nav-menu a:hover {
        color: var(--emerald);
      }

      .nav-menu a:hover:after {
        width: 100%;
      }

      .nav-menu a.active {
        color: var(--emerald);
      }

      .nav-menu a.active:after {
        width: 100%;
      }

      .hamburger {
        display: none;
        cursor: pointer;
      }

      .hamburger div {
        width: 25px;
        height: 3px;
        background-color: gold;
        margin: 5px;
        transition: var(--transition);
      }


      /* Page Header */
      .page-header {
        height: 50vh;
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)),
          url("https://plus.unsplash.com/premium_photo-1682310073315-d3bb4efd1eeb?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Nzd8fGNvbnRhY3QlMjB1c3xlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&q=60&w=500");
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        color: var(--white);
        text-align: center;
        margin-top: 80px;
      }

      .page-header-content {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
      }

      .page-header h1 {
        font-size: 3rem;
        margin-bottom: 20px;
        line-height: 1.2;
        color: var(--gold);
      }

      .page-header p {
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto;
      }

      /* Contact Intro */
      .contact-intro {
        background-color: black;
        text-align: center;
      }

      .contact-intro-content {
        max-width: 900px;
        margin: 0 auto;
      }

      .contact-intro h2 {
        color: var(--emerald);
        margin-bottom: 30px;
      }

      .contact-intro p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        color: rgba(255, 255, 255, 0.76);
      }

      /* Contact Methods */
      .contact-methods {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
      }

      .contact-card {
        background-color: black;
        border-radius: 10px;
        padding: 40px 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: var(--transition);
        text-align: center;
        border-top: 4px solid var(--emerald);
      }

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

      .contact-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--emerald), var(--blue));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 2rem;
        margin: 0 auto 25px;
      }

      .contact-card h3 {
        color: var(--emerald);
        margin-bottom: 15px;
      }

      .contact-card p {
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.801);
      }

      .contact-details {
        text-align: left;
        margin-top: 20px;
        color: white;
      }

      .contact-details li {
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
      }

      .contact-details i {
        color: var(--emerald);
        margin-right: 15px;
        margin-top: 5px;
        flex-shrink: 0;
      }

      /* Contact Form & Info */
      .contact-main {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: start;
      }

      .contact-form-container {
        background-color: black;
        border-radius: 10px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      }

      .contact-form-container h3 {
        color: var(--emerald);
        margin-bottom: 25px;
        text-align: center;
      }
      .contact-form-container h6{
        color: white;
      }

      .form-group {
        margin-bottom: 20px;
        text-align: left;
        color: white;
      }

      .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
       
      }

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

      .form-control:focus {
        outline: none;
        border-color: var(--emerald);
        box-shadow: 0 0 0 2px rgba(46, 139, 87, 0.2);
      }

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

      .contact-info {
        background: linear-gradient(135deg, var(--emerald), var(--blue));
        color: var(--white);
        border-radius: 10px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      }

      .contact-info h3 {
        color: var(--white);
        margin-bottom: 25px;
        text-align: center;
      }

      .info-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 30px;
      }

      .info-icon {
        width: 50px;
        height: 50px;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.2rem;
        margin-right: 15px;
        flex-shrink: 0;
      }

      .info-details h4 {
        color: var(--white);
        margin-bottom: 5px;
      }

      .office-hours {
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
      }

      .office-hours h4 {
        color: var(--white);
        margin-bottom: 15px;
      }

      .hours-list li {
        display: flex;
        justify-content: space-between;
        margin-bottom: 8px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      /* Campaign Offices */
      .offices-section {
        background-color: black;
      }

      .offices-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
      }

      .office-card {
        background-color: var(--white);
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: var(--transition);
      }

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

      .office-header {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
      }

      .office-icon {
        width: 60px;
        height: 60px;
        background-color: var(--emerald);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.5rem;
        margin-right: 15px;
      }

      .office-header h3 {
        color: var(--emerald);
        margin-bottom: 5px;
      }

      .office-details {
        margin-bottom: 20px;
      }

      .office-details p {
        margin-bottom: 10px;
        display: flex;
        align-items: flex-start;
      }

      .office-details i {
        color: var(--emerald);
        margin-right: 10px;
        margin-top: 5px;
        flex-shrink: 0;
      }

      /* Map Section */
      .map-section {
        position: relative;
      }

      .map-container {
        height: 500px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      }

      .map-overlay {
        position: absolute;
        top: 30px;
        left: 30px;
        background-color: var(--white);
        border-radius: 8px;
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        max-width: 350px;
      }

      .map-overlay h3 {
        color: var(--emerald);
        margin-bottom: 15px;
      }

      .map-overlay p {
        margin-bottom: 10px;
        display: flex;
        align-items: flex-start;
      }

      .map-overlay i {
        color: var(--emerald);
        margin-right: 10px;
        margin-top: 5px;
        flex-shrink: 0;
      }

      /* FAQ Section */
      .faq-section {
        background-color: var(--light-gray);
      }

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

      .faq-item {
        background-color: var(--white);
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        overflow: hidden;
      }

      .faq-question {
        padding: 20px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        transition: var(--transition);
      }

      .faq-question:hover {
        background-color: rgba(46, 139, 87, 0.05);
      }

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

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

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

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

       /* Footer */
      footer {
        background-color: black;
        color: var(--white);
        padding: 70px 0 20px;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 50px;
      }

      .footer-col h3 {
        color: var(--emerald);
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
      }

      .footer-col h3:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: var(--gold);
      }

      .footer-col p {
        margin-bottom: 20px;
      }

      .social-links {
        display: flex;
        gap: 15px;
      }

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

      .social-links a:hover {
        background-color: var(--emerald);
        transform: translateY(-5px);
      }

      .footer-links li {
        margin-bottom: 12px;
      }

      .footer-links a {
        color: #bbb;
        transition: var(--transition);
      }

      .footer-links a:hover {
        color: var(--emerald);
        padding-left: 5px;
      }

      .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      /* Floating WhatsApp Button */
      .whatsapp-float {
        position: fixed;
        bottom: 25px;
        right: 25px;
        width: 60px;
        height: 60px;
        background-color: #25d366;
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 100;
        transition: var(--transition);
        animation: pulse 2s infinite;
      }

      .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      }

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

      /* Back to Top Button */
      .back-to-top {
        position: fixed;
        bottom: 25px;
        left: 25px;
        width: 50px;
        height: 50px;
        background-color: var(--emerald);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
      }

      .back-to-top.active {
        opacity: 1;
        visibility: visible;
      }

      .back-to-top:hover {
        background-color: #267349;
        transform: translateY(-3px);
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
        .contact-main {
          grid-template-columns: 1fr;
          gap: 30px;
        }

        .map-overlay {
          position: relative;
          top: auto;
          left: auto;
          margin-bottom: 20px;
          max-width: 100%;
        }
      }

      @media (max-width: 768px) {
        .nav-menu {
          position: fixed;
          top: 80px;
          right: -100%;
          width: 80%;
          height: calc(100vh - 80px);
          background-color:black;
          color: white;
          flex-direction: column;
          align-items: center;
          justify-content: flex-start;
          padding-top: 50px;
          transition: var(--transition);
          box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        }

        .nav-menu.active {
          right: 0;
        }

        .nav-menu li {
          margin: 15px 0;
          
        }

        .hamburger {
          display: block;
        }

        .hamburger.active div:nth-child(1) {
          transform: rotate(-45deg) translate(-5px, 6px);
          
        }

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

        .hamburger.active div:nth-child(3) {
          transform: rotate(45deg) translate(-5px, -6px);
        }

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

        .section-title h2 {
          font-size: 2rem;
        }

        .contact-form-container,
        .contact-info {
          padding: 30px 20px;
        }

        .map-container {
          height: 400px;
        }
      }

      @media (max-width: 576px) {
        .logo-text {
          font-size: 1.2rem;
        }

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

        .section {
          padding: 60px 0;
        }

        .footer-content {
          grid-template-columns: 1fr;
        }

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

        .offices-grid {
          grid-template-columns: 1fr;
        }
      }
      .map-container {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 30px;
  position: relative;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
