@media (max-width: 768px) {
    .mobile {
      display :justify-content-center;
    }

    h1 {
      font-size: 2rem;
    }
  }
  .page-header {
    position: relative;
    overflow: hidden;
  }

  .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgb(0, 0, 0);  */
    /* semi-dark overlay */
    z-index: 1;
  }

  .z-index-2 {
    z-index: 2 !important;
  }

  .text-white {
    color: #fff !important;
  }

  .min-vh-75 {
    min-height: 75vh;
  }

  @media (max-width: 768px) {
    .lead {
      font-size: 1rem;
    }

    h1 {
      font-size: 2rem;
    }
  }

    .gallery-section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .gallery-section h2 {
      text-align: center;
      margin-bottom: 40px;
      font-size: 2.5rem;
      color: #111;
    }

    /* Masonry Grid */
    .masonry-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 20px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      cursor: pointer;
      background: #fff;
      transition: transform 0.3s ease;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      display: block;
      transition: transform 0.3s ease;
      object-fit: cover;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    /* Lightbox */
    #lightbox-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      display: none;
      flex-direction: column;
    }

    #lightbox-image {
      max-width: 90%;
      max-height: 85%;
      border-radius: 12px;
    }

    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 35px;
      color: #fff;
      cursor: pointer;
    }

    .lightbox-nav span {
      position: absolute;
      top: 50%;
      font-size: 50px;
      color: #fff;
      cursor: pointer;
      transform: translateY(-50%);
      user-select: none;
      padding: 0 15px;
    }

    #prev-lightbox { left: 20px; }
    #next-lightbox { right: 20px; }

    /* Mobile Carousel */
    @media (max-width: 768px) {
      .masonry-gallery {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
      }

      .gallery-item {
        flex: 0 0 80%;
        scroll-snap-align: center;
        min-height: 200px;
      }
    }
  

#count-stats h1 {
    font-size: 2.2rem;
    margin-bottom: 5px;
  }

  #count-stats p {
    font-size: 1rem;
    margin: 0;
  }

  @media (max-width: 576px) {
    #count-stats h1 {
      font-size: 1.6rem;
    }

    #count-stats p {
      font-size: 0.9rem;
    }
  }
  
/* Sticty Section Start */
  .sticky-scroll-section {
    width: 100%;
    padding: 50px 0;
  }

  .container-scroll {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
  }

  .sticky-left {
    position: sticky;
    top: 100px;
    flex: 0 0 35%;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    height: fit-content;
  }

  .scroll-right {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
  }

  .image-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: auto; /* makes the scroll long enough to unstick left */
  }

  .image-flow img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  /* Responsive Fix */
@media (max-width: 768px) {
  .container-scroll {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }

  .sticky-left {
    position: relative;
    top: 0;
    flex: 1 1 100%;
    width: 100%;
    box-shadow: none;
    padding: 20px 15px;
  }

  .scroll-right {
    flex: 1 1 100%;
    padding-right: 0;
    overflow-y: visible;
  }

  .image-flow {
    gap: 20px;
  }

  .image-flow img {
    width: 100%;
    height: auto;
  }
}

  
  /* Sticky Section End */

  /* Video Section */
 
    .video-slider-container {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .video-slider-track {
      display: flex;
      width: 100%;
      height: 100vh;
      transition: transform 0.7s ease-in-out;
    }

    .video-slide {
      min-width: 100%;
      position: relative;
      height: 100vh;
    }

    .video-slide video {
      width: 100%;
      height: 100vh;
      object-fit: cover;
    }

    /* Optional overlay and text */
    .video-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.35);
      z-index: 1;
    }

    .video-caption {
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 999;
      color: #fff;
      transform: translate(-50%, -50%);
      text-align: center;
    }

    .video-caption h2 {
      font-size: 2.5rem;
      margin-bottom: 10px;
      color: #fff;
    }

    /* Navigation buttons */
    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      background-color: rgba(255, 255, 255, 0.3);
      border: none;
      padding: 12px 20px;
      cursor: pointer;
      font-size: 2rem;
      color: #fff;
    }

    .slider-btn:hover {
      background-color: rgba(255, 255, 255, 0.5);
    }

    .prev {
      left: 20px;
    }

    .next {
      right: 20px;
    }

    @media (max-width: 768px) {
      .video-caption h2 {
        font-size: 1.5rem;
      }
    }
    /* Video Section End */

.country-flag-section {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.country-flag-section {
  padding: 40px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 30px;
}

.flag-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
  justify-content: center;
  max-width: 1000px;
  margin: auto;
}

.flag-card {
  padding: 12px 8px;
  width: 100%;
  max-width: 200px;
}

.flag-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 10%;
}

.flag-icon {
  width: 100px;
  height: 70px;
  margin: 0 auto 8px;
  background-size: cover;
  background-position: center;
  border-radius: 10%;
  border: 2px solid #eee;
}

.flag-card p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}


.rounded-input {
  border-radius: 100px !important;
  padding-left: 20px;
  padding-right: 20px;
  height: 45px;
  border: none !important;
  box-shadow: none;
  transition: 0.3s ease;
}

.rounded-input:focus {
  border-color: #333;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.rounded-button {
  border-radius: 50px !important;
  height: 45px;
  font-weight: 600;
}

/* Brand CSS */

.brand-showcase {
      padding: 60px 20px;
      background: #fff;
    }

    .section-title {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 40px;
    }

    .tabs {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 30px;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      padding: 10px 10px;
      border-radius:100px;
      margin:20px 60px;
    }

    .tab-btn {
      padding: 5px 30px;
      border: none;
      border-radius: 25px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
    }

    .tab-btn:hover,
    .tab-btn.active {
      background: linear-gradient(135deg, #5b0eb0, #1f63db) !important;
      text-decoration: none;
      color: #fff;
    }

    .mobile-dropdown {
      padding: 10px;
      display: none;
      margin-bottom: 30px;
      text-align: center;
    }

    .mobile-dropdown select {
      padding: 10px 15px;
      border-radius: 5px;
      border: 1px solid #ccc;
      outline: none;
      font-size: 16px;
    }

    .brand-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .brand-card {
      width: calc(25% - 25px);
      min-width: 250px;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      display: none;
      flex-direction: column;
    }

    .brand-card.show {
      display: flex;
    }

    .brand-image {
      height: 300px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      transition: transform 0.3s ease;
    }

    .brand-card:hover .brand-image {
      transform: scale(1.05);
    }

    .brand-details {
      padding: 20px;
      text-align: center;
    }

    .brand-details h4 {
      margin-bottom: 10px;
      font-size: 1.1rem;
      font-weight: 600;
    }

    .brand-btn {
      padding: 5px 30px;
      background: linear-gradient(135deg, #5b0eb0, #1f63db) !important;
      text-decoration: none;
      color: #fff;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: 0.3s ease;
      display: inline-block;
    }

    .brand-btn:hover {
      transform: scale(1.05);
     background: linear-gradient(135deg, #5b0eb0, #1f63db) !important;
            text-decoration: none;
            color: #fff;
    }
 

    @media (max-width: 1024px) {
      .brand-card {
        width: calc(33.333% - 20px);
      }
    }

    @media (max-width: 768px) {
      .tabs {
        display: none;
      }

      .mobile-dropdown {
        display: block;
      }

      .brand-card {
        width: calc(50% - 15px);
      }

      .section-title {
        font-size: 2rem;
      }

      .brand-image {
        height: 300px;
      }
    }

    @media (max-width: 480px) {
      .brand-card {
        width: 100%;
      }
    }

/* Brand Css End */

/* Contact Form CSS */
    .dropdown-container {
      position: relative;
      width: 100%;
    }

    .dropdown-toggle {
      padding: 10px;
      border: 1px solid #ccc;
      background-color: #fff;
      cursor: pointer;
      border-radius: 5px;
    }

    .dropdown-toggle::after {
      content: "▼";
      float: right;
      margin-top: 3px;
    }

    .dropdown-options {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      border: 1px solid #ccc;
      background-color: #fff;
      max-height: 200px;
      overflow-y: auto;
      z-index: 999;
      border-radius: 5px;
    }

    .dropdown-options label {
      display: block;
      padding: 8px 12px;
      cursor: pointer;
    }

    .dropdown-options input[type="checkbox"] {
      margin-right: 8px;
    }

    .dropdown-options label:hover {
      background-color: #f1f1f1;
    }
/* Contact form Css End */

/* About Page css */

.cp-section {
      padding: 40px;
      
      text-align: center;
    }

    .cp-title {
      font-size: 2.5rem;
      margin-bottom: 40px;
      font-weight: bold;
    }

    .cp-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      max-width: 1200px;
      margin: auto;
    }

    .cp-card {
      backdrop-filter: blur(5px);
      padding: 25px;
      border-radius: 15px;
      border: 1px solid rgba(216, 216, 216, 0.2);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.01);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
    }

    .cp-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 15px rgba(0, 0, 0, 0.2);
    }

    .cp-card h3 {
      margin-top: 15px;
      font-size: 1.4rem;
      color: #000000ff;
    }

    .cp-card p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin-top: 10px;
    }

    .cp-icon {
      width: 55px;
      height: 55px;
      background: linear-gradient(135deg, #5b0eb0, #1f63db) !important;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      box-shadow: 0 5px 5px rgba(2, 2, 2, 0.4);
    }

     .ceo-message-section {
      background-color: #000;
      color: #fff;
      padding: 60px 20px;
      font-family: 'Segoe UI', sans-serif;
    }

    .ceo-container {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
    }

    .ceo-image {
      flex: 1 1 300px;
      text-align: center;
    }

    .ceo-image img {
      width: 100%;
      max-width: 320px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    }

    .ceo-content {
      flex: 2 1 500px;
    }

    .ceo-heading {
      font-size: 2rem;
      color: #f5c542;
      margin-bottom: 10px;
    }

    .ceo-name {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 20px;
      color: #ffffffcc;
    }

    .ceo-quote {
      font-size: 60px;
      color: #f5c542;
      margin: 0;
      line-height: 1;
    }

    .ceo-text {
      font-size: 1rem;
      line-height: 1.8;
      margin: 10px 0;
      color: #e0e0e0;
    }

    @media (max-width: 768px) {
      .ceo-container {
        flex-direction: column;
        text-align: center;
      }

      .ceo-content {
        padding: 0 10px;
      }

      .ceo-text {
        font-size: 0.95rem;
      }
    }

/* About Page CSS */