  :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);
      }

      .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.7)),
          url("https://media.istockphoto.com/id/1189901322/photo/single-blue-and-white-electric-megaphone-with-a-handle-stands-on-a-blue-background.webp?a=1&b=1&s=612x612&w=0&k=20&c=aOj2C57wOLHVVPuTmUIwqLpzdU-9zTArLRGFcoWBoCA=");
        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;
      }

      /* Media Tabs */
      .media-tabs {
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
        flex-wrap: wrap;
        gap: 10px;
      }

      .media-tab {
        padding: 12px 25px;
        background: none;
        border: 2px solid var(--emerald);
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        cursor: pointer;
        border-radius: 50px;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .media-tab:hover {
        background-color: rgba(46, 139, 87, 0.1);
      }

      .media-tab.active {
        background-color: var(--emerald);
        color: var(--white);
      }

      .media-tab i {
        font-size: 1.2rem;
      }

      .media-content {
        display: none;
        animation: fadeIn 0.5s ease;
      }

      .media-content.active {
        display: block;
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

      /* Photo Gallery */
      .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
      }

      .gallery-item {
        border-radius: 8px;
        overflow: hidden;
        height: 250px;
        position: relative;
        cursor: pointer;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
      }

      .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      }

      .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
      }

      .gallery-item:hover img {
        transform: scale(1.05);
      }

      .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          to bottom,
          transparent,
          rgba(46, 139, 87, 0.8)
        );
        display: flex;
        align-items: flex-end;
        padding: 20px;
        opacity: 0;
        transition: var(--transition);
      }

      .gallery-item:hover .gallery-overlay {
        opacity: 1;
      }

      .gallery-caption {
        color: var(--white);
      }

      .gallery-caption h3 {
        color: var(--white);
        margin-bottom: 5px;
        font-size: 1.1rem;
      }

      .gallery-caption p {
        font-size: 0.9rem;
        opacity: 0.9;
      }

      /* Videos Section */
      .videos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
      }

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

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

      .video-thumbnail {
        height: 200px;
        position: relative;
        overflow: hidden;
      }

      .video-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .video-play {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background-color: rgba(46, 139, 87, 0.8);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.5rem;
        transition: var(--transition);
      }

      .video-card:hover .video-play {
        background-color: var(--emerald);
        transform: translate(-50%, -50%) scale(1.1);
      }

      .video-content {
        padding: 20px;
      }

      .video-date {
        color: var(--gold);
        font-size: 0.9rem;
        margin-bottom: 10px;
        display: block;
      }

      .video-content h3 {
        color: var(--emerald);
        margin-bottom: 10px;
        font-size: 1.2rem;
      }

      .video-content p {
        color: #666;
        font-size: 0.95rem;
      }

      /* Downloads Section */
      .downloads-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
      }

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

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

      .download-icon {
        font-size: 2.5rem;
        color: var(--emerald);
        margin-bottom: 20px;
      }

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

      .download-card p {
        margin-bottom: 20px;
        color: #666;
      }

      .download-size {
        display: block;
        color: #999;
        font-size: 0.9rem;
        margin-bottom: 15px;
      }

      /* Lightbox Modal */
      .lightbox {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 1000;
        justify-content: center;
        align-items: center;
      }

      .lightbox.active {
        display: flex;
      }

      .lightbox-content {
        max-width: 90%;
        max-height: 90%;
        position: relative;
      }

      .lightbox-content img {
        max-width: 100%;
        max-height: 100%;
        border-radius: 8px;
      }

      .lightbox-close {
        position: absolute;
        top: -40px;
        right: 0;
        color: var(--white);
        font-size: 2rem;
        cursor: pointer;
        transition: var(--transition);
      }

      .lightbox-close:hover {
        color: var(--gold);
      }

      .lightbox-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        padding: 0 20px;
      }

      .lightbox-prev,
      .lightbox-next {
        color: var(--white);
        font-size: 2rem;
        cursor: pointer;
        transition: var(--transition);
        background-color: rgba(0, 0, 0, 0.5);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .lightbox-prev:hover,
      .lightbox-next:hover {
        color: var(--gold);
        background-color: rgba(0, 0, 0, 0.7);
      }

      /* CTA Section */
      .cta-section {
        background: linear-gradient(
            rgba(46, 139, 87, 0.9),
            rgba(46, 139, 87, 0.9)
          ),
          url("gamechanger2.jpg");
        background-size: cover;
        background-position: center;
        color: var(--white);
        text-align: center;
      }

      .cta-section h2 {
        color: var(--white);
      }

      .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
        flex-wrap: wrap;
      }

       /* 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) {
        .gallery-grid {
          grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        }

        .videos-grid {
          grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        }
      }

      @media (max-width: 768px) {
        .nav-menu {
          position: fixed;
          top: 80px;
          right: -100%;
          width: 80%;
          height: calc(100vh - 80px);
          background-color:black;
          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;
        }

        .media-tabs {
          flex-direction: column;
          align-items: center;
        }

        .media-tab {
          width: 100%;
          max-width: 250px;
          justify-content: center;
        }

        .cta-buttons {
          flex-direction: column;
          align-items: center;
        }

        .cta-buttons .btn {
          width: 100%;
          max-width: 250px;
          margin-bottom: 15px;
        }
      }

      @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;
        }

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

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

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