    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Roboto', sans-serif;
      color: #333;
      background: #f8f9fa;
      line-height: 1.6;
    }


    header {
      background: #fff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
  padding: 12px 24px;
    }

    .mobile-header {
      display: none;
    }

    .hamburger {
      font-size: 1.8rem;
      background: none;
      border: none;
      cursor: pointer;
    }

    .phone-btn {
      font-size: 1.5rem;
      text-decoration: none;
      color: #000;
    }

    .main-nav {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2.2rem;
      list-style: none;
      margin: 0;
      padding: 0.6rem 0;
    }

    .main-nav li {
      position: relative;
    }

    .main-nav a {
        font-weight: normal;
        color: #000;
        font-size: 1.05rem;
        padding: 0.6rem 0.8rem;
        transition: color 0.3s;
        display: inline-block;
        text-decoration: none;
        position: relative;
    }

    /* underline layer */
    .main-nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0px;
        width: 100%;
        height: 2px;
        background: #6c6868;

        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s ease;
    }

    /* hover animation */
    .main-nav a:hover::after,
    .main-nav a.active::after {
        transform: scaleX(1);
    }

    .main-nav a:hover,
    .main-nav a.active {
        font-weight: bold;
        text-decoration: none;
    }

    .main-nav .logo-item {
      padding: 0;
    }

    .main-nav .logo-item a {
      padding: 0;
    }

   /* Remove underline effect from logo */
    .main-nav .logo-item a::after {
      display: none;
    }

    .main-nav .logo-item img {
      height: 55px;
      width: auto;
      display: block;
      transition: transform 0.25s;
    }

    .main-nav .logo-item img:hover {
      transform: scale(1.08);
    }


    .section-divider {
      border: none;
      height: 3px;
      background: black;
      margin: 1.8rem 0 2.2rem;
      max-width: 50px;
      margin-left: auto;
      margin-right: auto;
      margin-top: 1rem;
      opacity: 1;
    }

    .hero {
      position: relative;
      max-height: 35vh;
      background-color: #ffe8db;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;

      padding: 4rem 5% 6rem;
    }

    .hero-content-box {
      background: none;
      border-radius: 0px;
      padding: 3rem 2rem;
      max-width: 1000px;
      margin-top: 3rem;
      border: none;
    }

    .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      font-weight: 700;
      color: black;
    }

    .hero h3 {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
      font-weight: 400;
      color: black;
    }

    .hero p {
      font-size: 1.25rem;
      margin-bottom: 2.5rem;
      color: blacks;
      line-height: 1.7;
    }


    .section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 5%;
      text-align: center;
    }


    .gallery-section {
      background: white;
    }

    /* video */
    .video-box {
      height: 500px;
      overflow: hidden;
    }

    .video-box video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* img */
    .gallery-item {
      position: relative;
      overflow: hidden;
      height: 100%;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: .5s;
    }

    /* hover */
    .gallery-item:hover img {
      transform: scale(1.08);
    }

    .g-2 {
      --bs-gutter-x: 10px;
      --bs-gutter-y: 10px;
    }


    .viewer {
      position: fixed;
      inset: 0;
      background: #000;
      z-index: 9999;
      display: flex;
      flex-direction: column;
    }

    .viewer.d-none {
      display: none;
    }

    /* header */
    .viewer-header {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      color: #fff;
      z-index: 2;
    }

    .controls button {
      background: none;
      border: none;
      color: #fff;
      font-size: 20px;
      margin-left: 15px;
      cursor: pointer;
    }

    /* body */
    .viewer-body {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
    }

    .viewer-body img {
      max-width: 90%;
      max-height: 90%;
      transition: .4s;
      cursor: grab;
    }

    .viewer-body img.zoomed {
      transform: scale(2);
      cursor: zoom-out;
    }

    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.4);
      border: none;
      color: #fff;
      font-size: 40px;
      width: 60px;
      height: 80px;
      cursor: pointer;
      z-index: 3;
      transition: .3s;
    }

    .nav-btn.prev {
      left: 10px;
    }

    .nav-btn.next {
      right: 10px;
    }

    .nav-btn:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .logo-partners {
      padding-top: 40px;
      padding-bottom: 10px;
      background: white;
      border-top: 0px solid white;
      border-bottom: 0px solid white;
    }

    .logo-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      align-items: center;
    }

    .logo-box {
      position: relative;
      overflow: hidden;
      height: 80px;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    .logo-box img {
      width: 100%;
      height: 100%;

      max-width: 160px;
      max-height: 60px;

      object-fit: contain;
      opacity: 1;
      transition: opacity .3s;
    }

    /* Shine layer */
    .logo-box::before {
      content: "";
      position: absolute;
      top: 0;
      left: -150%;
      width: 120%;
      height: 100%;

      background: linear-gradient(90deg,
          transparent,
          rgba(255, 255, 255, 0.9),
          transparent);

      transform: skewX(-25deg);
    }

    /* Hover animation */
    .logo-box:hover::before {
      animation: shineMove 1.5s ease;
    }

    .logo-box:hover img {
      opacity: 1.5;
    }

    @keyframes shineMove {
      0% {
        left: -150%;
      }

      100% {
        left: 150%;
      }
    }

    footer {
      background: #f7f7f7;
      color: black;
      text-align: center;
      padding: 3rem 5% 2rem;
    }

    footer a {
      color: #aaa;
    }

    .copyright {
      margin-top: 2rem;
      font-size: 0.95rem;
    }


    .mobile-header {
      display: none;
    }


    @media (max-width: 768px) {
      .hero {
        min-height: 70vh;
        padding: 3rem 5% 5rem;
      }

      .hero-content-box {
        padding: 2.5rem 1.8rem;
      }

      .hero h1 {
        font-size: 1.5rem;
      }

      .hero h3 {
        font-size: 1rem;
      }

      .hero p {
        font-size: 1.1rem;
      }

          .video-box {
      height: 350px;
      overflow: hidden;
    }

      .success-section {
        padding: 80px 15px;
      }

      .section-divider {
        margin: 1.5rem auto 1.8rem auto;
        max-width: 50px;
      }

      .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
      }

      .mobile-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
      }

      .mobile-logo img {
        height: 45px;
      }

     /* Hide existing nav */
     .main-nav {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0; 
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 12px 24px rgba(0,0,0,0.25);
     }


      .main-nav.active {
        display: flex;
      }

     /* Show only when hamburger is clicked */
      .main-nav.active {
        display: flex;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 1rem 0;
        gap: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

     /* Remove logo from nav */
      .main-nav .logo-item {
        display: none;
      }

       @media (max-width: 445px) {

.hero {
        height: 280px;
        min-height: 280px;
        padding: 30px 5% 40px;
    }

 .btn {
  width: 200px;

  }

   .logo-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 16px;
     align-items: center;
   }

   .logo-box {
     position: relative;
     overflow: hidden;
     height: 80px;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 20px;
   }

   .logo-box img {
     width: 100%;
     height: 100%;

     max-width: 120px;
     max-height: 45px;

     object-fit: contain;
     opacity: 1;
     transition: opacity .3s;
   }

   p {
  font-size: 15px;
          letter-spacing: -0.02px;
    }

  }
@media (max-width: 375px) {
  .logo-box img {
  height: 60px;  
  max-width: 90%;    
  }
   }

    }