.custom-navbar {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 20;
        padding: 10px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* background: rgba(0, 0, 0, 0.3); */
      }

      .nav-logo img {
        height: 60px;
      }

      .nav-center {
        display: flex;
        gap: 20px;
        flex: 1;
        justify-content: center;
        text-align: center;
      }
      .nav-center a:hover {
        color: #fff;
        text-decoration: underline;
        font-weight: 500;
      }
      .nav-center a
      {
        color:black;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
      }
      .hamburger-menu a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
      }

      .hamburger {
        font-size: 35px;
        color: black;
        cursor: pointer;
      }

      .hamburger-menu {
        position: absolute;
        top: 85px;
        right: 20px;
        /* background: rgba(0, 0, 0, 0.7); */
        background-color: black;
        padding: 10px 15px;
        border-radius: 5px;
        display: none;
        flex-direction: column;
        z-index: 30;
        min-width: 220px;
      }

      .hamburger-menu a {
        margin: 6px 0;
        /* background-color: rgba(255, 255, 255, 0.8); */
        /* color: black; */
        border-bottom: 1px solid #cccccc8c;
        padding: 5px;
        /* border-radius: 5px; */
      }
      .hamburger-menu a:hover {
        color: #f0f0f0;
        background-color: orange;
        padding: 5px;
        border-radius: 5px;
        border-bottom: none;
      }

      .mute-toggle {
        position: absolute;
        bottom: 20px;
        right: 20px;
        background: rgba(0, 0, 0, 0.5);
        padding: 10px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        font-size: 24px;
        color: #fff;
        transition: background 0.3s;
      }
      .nav-flags img {
        height: 30px;
        width: 30px;
        margin: 0 5px;
      }

      .mute-toggle:hover {
        background: rgba(0, 0, 0, 0.8);
      }
      .nav-right {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      /* Hide nav-center at <=600px */
      @media (max-width: 650px) {
        .show-on-mobile {
          display: block !important;
        }
        .nav-flags img {
          height: 25px;
          width: 25px;
        }
        .nav-center a,
        .hamburger-menu a {
          font-size: 13px;
        }
        .hamburger {
          font-size: 30px;
        }
        .nav-logo img {
          height: 50px;
        }
      }
      .custom-navbar {
        padding: 10px 5px;
      }
      .hamburger-menu {
        top: 60px;
        right: 10px;
      }

      /* Default: don't show mobile-only hamburger items */
      .show-on-mobile {
        display: none;
      }
      @media (max-width: 650px) {
        .hide-on-mobile {
          display: none !important;
        }
        .show-on-mobile {
          display: block !important;
        }
      }
      /* Default: hide hamburger additions unless mobile */
      .show-on-mobile {
        display: none;
      }

      /* footer css start */
      .footer-section {
        background-color: black;
        padding: 2rem 0;
        font-size: 0.95rem;
        color: white !important;
      }
      .footer-links a,
      .footer-bottom a {
        color: white;
        text-decoration: none;
        margin: 0 0.5rem;
      }
      .footer-links a:hover,
      .footer-bottom a:hover {
        text-decoration: underline;
      }
      .footer-text a,
      .footer-text {
        font-size: 16px;
      }
      .social-icons a {
        color: white;
        font-size: 1.2rem;
        margin: 0 0.4rem;
      }
      .footer-bottom {
        border-top: 1px solid #ddd;
        padding-top: 2rem;
        margin-top: 1rem;
        font-size: 0.85rem;
      }
      .social-icons a {
        color: white;
        font-size: 1.2rem;
        margin: 0 0.4rem;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
      }

      /* Add the glassy circle on hover */
      .social-icons a:hover {
        color: white; /* default, overridden below */
      }

      .social-icons a:hover::before {
        content: "";
        position: absolute;
        inset: -6px; /* makes the circle slightly larger */
        /* border-radius: 50%; */
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        background-color: rgba(255, 255, 255, 0.367);
        z-index: -1;
        transition: all 0.3s ease;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
      }

      /* Brand-specific colors for icon + glass bg */
      .social-icons a:hover .fa-facebook-f {
        color: #1877f2;
      }
      .social-icons a:hover .fa-tiktok {
        color: #000000;
      }
      .social-icons a:hover .fa-instagram {
        color: #e1306c;
      }
      .social-icons a:hover .fa-youtube {
        color: #ff0000;
      }
      .social-icons a:hover .fa-linkedin-in {
        color: #0077b5;
      }
      @media (max-width: 1200px) {
        .footer-text a,
        .footer-text,
        .link-item {
          font-size: 13px;
        }
      }
      @media (max-width: 1000px) {
        .footer-bottom-gap {
          margin-bottom: 10px !important;
        }
      }

      @media (max-width: 992px) {
        .footer-links {
          display: flex;
          align-items: center;
          justify-content: center;
        }
        .copyrights-footer {
          text-align: center;
        }
      }

      .footer-page-links {
        background-color: #000;
        padding: 0.5rem 0;
        font-size: 14px;
      }

      .footer-page-links a {
        color: #fff;
        text-decoration: none;
        display: inline-block;
      }

      .footer-page-links .link-item {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 4px 0;
      }

      .footer-page-links .link-item a::after {
        content: "|";
        margin-left: 15px;
        color: #fff;
      }

      .footer-page-links .link-item:last-child a::after {
        content: "";
      }

      @media (max-width: 767.98px) {
        .footer-page-links .link-item {
          width: 50%; /* 2 columns */
        }
        .footer-page-links .link-item a::after {
          content: "";
        }
      }

      @media (min-width: 768px) and (max-width: 991.98px) {
        .footer-page-links .link-item {
          width: 21%; /* 4 columns */
        }
      }

      @media (min-width: 992px) {
        .footer-page-links .link-item {
          width: auto;
          padding: 0 8px;
        }
      }
      @media (max-width: 992px) {
        .footer-page-links .link-item a::after {
          content: "";
        }
      }

    .text-section {
      display: flex;
      flex-direction: column;
      margin-left: 50px;
    }

    @media (max-width: 1100px) {
      .hero-text {
        font-size: 30px;
        margin-bottom: 30px;
        line-height: 50px;
      }

      .text-section p {
        font-size: 15px;
      }

      .read-more {
        width: 140px;
        font-size: 10px;
        padding: 15px 10px;
        gap: 5px;
      }

      .read-more:hover::after {
        transform: translateX(6px);
      }
    }
