.container-fluid {
      padding: 0px !important;
    }

        .logo-section {
      max-width: 1400px;
      margin: 0 auto;
      overflow: hidden;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }


    .section-header h2 {
      font-size: clamp(1.8rem, 4vw, 32.2px);
      color: #1a1a2e;
      margin-bottom: 12px;
      font-weight: 700;
    }

    .section-header .highlight {
      color: #0A1A6F;
      font-weight: 700;
    }

    .section-header p {
      font-size: clamp(1rem, 2vw, 18.9px);
      color: #1a1a2e;
      font-weight: 400;
    }

    /* Slider Container */
    .slider-container {
      position: relative;
      width: 100%;
      margin-bottom: 40px;
    }

    /* Row Wrapper with Gap */
    .logo-rows-wrapper {
      display: flex;
      flex-direction: column;
      gap: 40px;
      margin-bottom: 30px;
    }

    /* Individual Row */
    .logo-row {
      width: 100%;
      /* overflow: hidden; */
      position: relative;
      /* padding: 20px 0; */
      background: rgba(255, 255, 255, 0.5);
      border-radius: 16px;
      /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    }

    /* Animation Track */
    .logo-track {
      display: flex;
      gap: 30px;
      width: max-content;
      animation-timing-function: linear;
      animation-iteration-count: infinite;
      will-change: transform;
    }

    /* Right sliding animation */
    .logo-row-right .logo-track {
      animation-name: slideRight;
      animation-duration: 40s;
    }

    /* Left sliding animation */
    .logo-row-left .logo-track {
      animation-name: slideLeft;
      animation-duration: 40s;
    }

    /* Pause on hover for accessibility */
    .logo-row:hover .logo-track {
      animation-play-state: paused;
    }

    /* Logo Card */
    .logo-card {
      flex-shrink: 0;
      width: 180px;
      height: 120px;
      background: white;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
    }

    .logo-card:hover {
      transform: translateY(-8px) scale(1.05);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .logo-card img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      filter: grayscale(20%);
      transition: filter 0.3s ease;
    }

    .logo-card:hover img {
      filter: grayscale(0%);
    }

    /* Keyframe Animations - Perfect Continuous Loop */
    @keyframes slideRight {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(calc(-100% / 3));
      }
    }

    @keyframes slideLeft {
      0% {
        transform: translateX(calc(-100% / 3));
      }

      100% {
        transform: translateX(0);
      }
    }



    /* Responsive Design */
    @media (max-width: 768px) {
      .logo-rows-wrapper {
        gap: 25px;
      }

      .logo-card {
        width: 140px;
        height: 100px;
        padding: 15px;
      }

      .logo-track {
        gap: 20px;
      }

      .logo-row-right .logo-track,
      .logo-row-left .logo-track {
        animation-duration: 30s;
      }

      .section-header {
        margin-bottom: 40px;
      }
    }

    @media (max-width: 480px) {
      body {
        padding: 20px 10px;
      }

      .logo-rows-wrapper {
        gap: 20px;
      }

      .logo-card {
        width: 120px;
        height: 85px;
        padding: 12px;
      }

      .logo-track {
        gap: 15px;
      }

      .control-btn {
        padding: 10px 18px;
        font-size: 13px;
      }
    }

    /* Accessibility: Reduced Motion */
    @media (prefers-reduced-motion: reduce) {
      .logo-track {
        animation: none !important;
      }

      .logo-card {
        transition: none;
      }
    }

    /* Loading State */
    .logo-card.loading {
      background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
    }

    @keyframes shimmer {
      0% {
        background-position: 200% 0;
      }

      100% {
        background-position: -200% 0;
      }
    }

    
    .footer-left {
      padding: 20px;
    }

    .upcoming-expo-title {
      font-size: 24px;
      font-weight: bold;
      color: white;
      margin-bottom: 15px;
      text-transform: uppercase;
    }

    .expo-list {
      list-style: none;
      padding: 0;
      margin: 0 0 20px 0;
    }

    .expo-list li {
      padding: 8px 0;
      border-bottom: 1px solid #e0e0e0;
      font-size: 14px;
      transition: all 0.3s ease;
    }

    .expo-list li a {
      color: white;
      text-decoration: none;
      display: block;
      transition: color 0.3s ease;
    }

    .expo-list li:hover a {
      color: #4a9eff;
      ;
    }

    .expo-list li:hover {
      cursor: pointer;
    }

    .expo-list li:last-child {
      border-bottom: none;
    }
    
    /* Mobile Responsive */
    @media (max-width: 768px) {
      .hero-text {
        max-width: 100%;
        text-align: center;
        padding: 44px;
      }

      .next-level div:last-child {
        width: 239px !important;
        height: 55px;
      }

      .hero-text h1 {
        font-size: 36px;
      }

      .hero-text p {
        font-size: 14px;
      }

      .hero-buttons {
        flex-direction: column;
      }

      .book-btn,
      .request-callback-btn {
        width: 100%;
        text-align: center;
      }

      .logo-group {
        justify-content: flex-start;
      }

      .logo {
        height: 32px;
      }

      .hero {
        margin-top: 35px !important;
        padding: 60px 20px !important;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .hero-buttons {
        flex-direction: row;
        margin-right: 52px;
      }

      .mobile-log-hide .logo {
        display: block !important;
      }

      .store-btn .big-text {
        font-size: 12px !important;
      }

      .next-level .cta-text h1 {
        font-size: 10px !important;
      }

      .hero-image img {
        display: none !important;
      }

      .next-level2 a {
        font-size: 15px;
      }

      @media (min-width: 230px) and (max-width: 768px) {
    .next-level .cta-text h1 {
      text-align: center;
    }
} 
     }

    @media (max-width: 480px) {
      .hero-text h1 {
        font-size: 28px;
        margin-top: 30px;
      }

      .hero-image img {
        display: none !important;
      }

      .hero-text p {
        font-size: 13px;
      }

      .logo {
        height: 28px;
      }

      .logo-group {
        gap: 15px;
      }

      .hero {
        margin-top: 35px !important;
        padding: 0px 0px !important;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .mobile-log-hide .logo {
        display: block !important;
      }

      .next-level{
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    height: auto !important;
    }
    
        .cta1{
     display: flex;
     margin: 20px auto !important; 
    }
  }

    .nav-links li {
      /* padding: 10px; */
    }

    .nav-links a {
      font-size: 17px;
      font-weight: bold;
      transition: all .3s;
      padding: 10px;
    }

    .nav-links li:hover a {
      color: white;
      background-color: #FFFFFF36;
      /* color: white; */
      padding: 10px;
      border-radius: 50px;
    }

    /* .nav-links li:hover {
      background-color: #FFFFFF36;
      color: white;
      padding: 10px;
      border-radius: 50px;
    } */

    .nav-links li.active {
      background-color: #FFFFFF36;
      color: white;
      padding: 10px;
      border-radius: 50px;
    }

    .nav-links li a.active {
      color: white;
      background-color: #FFFFFF36;
      /* color: white; */
      padding: 10px;
      border-radius: 50px;
    }

    .store-btn .big-text {
      font-size: 18px;
    }

    .video-container {
      position: relative;
      width: 100%;
      max-width: 800px;
      margin: auto;
    }

    .video-wrapper iframe {
      width: 100%;
      height: 450px;
    }

    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 60px;
      height: 60px;
      background: url('play-icon.png') no-repeat center center;
      background-size: contain;
      cursor: pointer;
    }

    /* Video Section Styles */
    .video-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 40px;
    }

    .section-title {
      font-size: 32px;
      font-weight: 700;
      text-align: center;
      color: #1a1a1a;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .subtitle {
      font-size: clamp(16px, 3vw, 20px);
      text-align: center;
      color: #555;
      margin-bottom: 50px;
      line-height: 1.6;
    }

    .video-container {
      width: 100%;
      margin-bottom: 40px;
    }

    .video-wrapper {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
      /* 16:9 aspect ratio */
      height: 0;
      overflow: hidden;
      border-radius: 12px;
      background: #000;
      box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
    }

    .video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80px;
      height: 80px;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      z-index: 10;
      opacity: 0;
      pointer-events: none;
    }

    .play-button::after {
      content: '';
      width: 0;
      height: 0;
      border-left: 24px solid #0066cc;
      border-top: 15px solid transparent;
      border-bottom: 15px solid transparent;
      margin-left: 6px;
    }

    .experience-txt {
      font-size: clamp(16px, 2.5vw, 18px);
      text-align: center;
      color: #333;
      margin-bottom: 30px;
      font-weight: 500;
    }

    .vid-btn {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      align-items: center;
    }

    .schedule-demo,
    .free-demo {
      padding: 14px 32px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
      border: 2px solid transparent;
      display: inline-block;
    }

    .schedule-demo {
      background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
      color: white;
      box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
    }

    .schedule-demo:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 102, 204, 0.6);
      background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
    }

    .free-demo {
      background: white;
      color: #0066cc;
      border-color: #0066cc;
    }

    .free-demo:hover {
      background: #f0f7ff;
      border-color: #0052a3;
      color: #0052a3;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .hero {
        padding: 0px 0px !important;
        margin-right: 400px;
      }

      .video-section {
        padding: 40px 24px;
      }

      .section-title {
        margin-bottom: 16px;
      }

      .subtitle {
        margin-bottom: 36px;
      }

      .vid-btn {
        gap: 12px;
      }

      .schedule-demo,
      .free-demo {
        padding: 12px 24px;
        font-size: 14px;
        flex: 1;
        min-width: 200px;
      }

      header {
        width: 100vw !important;
      }

      .store-btn {
        width: 165px !important;
        margin-top: 20px;
      }

      .download-rating {
        top: 378 !important;
      }

      .download-rating img {
        height: 14px !important;
        width: 14px !important;
      }

      .download-rating-value {
        font-size: 13px !important;
      }

      .download-device-img {
        display: none;
      }

      .download-bg {
        height: 420px !important;
      }

      .download-button-cta {
        gap: 10px !important;
      }

    }

    @media (max-width: 480px) {
      .video-section {
        padding: 30px 16px;
      }

      .section-title {
        font-size: 24px;
        margin-bottom: 12px;
        padding-top: 16px;
      }

      .subtitle {
        font-size: 14px;
        margin-bottom: 28px;
      }

      .experience-txt {
        font-size: 15px;
        margin-bottom: 20px;
        padding-top: 17px;
      }

      .vid-btn {
        flex-direction: column;
        gap: 10px;
      }

      .schedule-demo,
      .free-demo {
        width: 100%;
        padding: 12px 20px;
        font-size: 13px;
      }

      header {
        width: 100vw !important;
      }

      .hero-image img {
        margin-top: 426px;
      }

      .download-title {
        font-size: 32px !important;
      }

    }

    /* Accessibility */
    .schedule-demo:focus,
    .free-demo:focus {
      outline: 2px solid #0066cc;
      outline-offset: 2px;
    }

    .video-container {
      background: transparent;
      border: 0px;
      border-radius: 0px;
    }

    .hero-text p {
      color: #000 !important;
    }

    .card-body p {
      color: #000 !important;
    }

    .transform-card-desc {
      color: #000;
    }

    .header-colm {
      display: flex;
      align-items: center;
      justify-content: space-evenly;
      /* gap: 40px; */
    }

    .header-colm .navigation-menu {
      display: flex;
      flex-direction: row;
      gap : 30px;
    }

    .next-level .cta-text h1 {
      font-size: 32px !important;
      margin-left: 132px;
    }

    .next-level div:last-child {}

    .cta-text {
      width: 50%;
    }


    .next-level div:last-child {
      box-shadow: -1px 0px 70px 4px #00c8ff;
    }

    .testimonial-heading h2 {
      margin-bottom: 2px;
    }

    .download-title {
      font-size: 30px !important;
    }

    .download-description {
      font-size: 17px !important;
    }

    .ytp-cued-thumbnail-overlay-image {
      -webkit-background-size: contain !important;
    }

    .hero-section {
      display: flex !important;
      /* justify-content: center !important; */
      flex-direction: column !important;
    }

    .download-button-cta {
      gap: 10px !important;
    }

    /* The horizontal line */
    .line-break {
      width: 80%;
      height: 1px;
      background-color: #969292;
      margin: 15px auto;
      opacity: 0.3;
      /* optional for a softer look */
      display: flex;
      justify-content: center;
      align-items: center;
    }

    @media (max-width:568px) {
      .line-break {
        width: 100%;
      }
    }


    /* .floating-social-icons {
      position: fixed;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .social-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
      cursor: pointer;
      text-decoration: none;
    } */

    @media (min-width:230px) and (max-width:768px) {
      .next-level .cta-text h1 {
        font-size: 20px !important;
      }

      .next-level div:last-child {
        box-shadow: -1px 0px 15px 4px #00c8ff;
      }

      .next-level .cta-text h1 {
      margin-left: 15px;
    }
      .download-description {
      font-size: 14px !important;
    }
    }

    /* @media (max-width: 480px) {
      .floating-social-icons {
        display: none !important;
      }
    }

    @media (max-width: 768px) {
      .floating-social-icons {
        display: none !important;
      }
    } */

    .floating-social-icons {
      position: fixed;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .social-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      cursor: pointer;
      text-decoration: none;
      position: relative;
      overflow: hidden;
    }

    .social-icon i {
      font-size: 20px;
      transition: all 0.3s ease;
      z-index: 2;
      position: relative;
    }

    /* Ripple effect background */
    .social-icon::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.4s ease, height 0.4s ease;
      z-index: 1;
    }

    /* Hover Effects */
    .social-icon:hover {
      transform: translateY(-5px) scale(1.1);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
      animation: pulse 1.5s infinite;
    }

    .social-icon:hover::before {
      width: 100%;
      height: 100%;
    }

    .social-icon:hover i {
      color: white;
      transform: scale(1.2) rotate(360deg);
    }

    /* Active/Click effect */
    .social-icon:active {
      transform: translateY(-2px) scale(1.05);
    }

    /* Pulse animation */
    @keyframes pulse {

      0%,
      100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
      }

      50% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
      }
    }

    /* Tooltip */
    .social-icon::after {
      content: attr(title);
      position: absolute;
      right: 65px;
      background: rgba(0, 0, 0, 0.85);
      color: white;
      padding: 8px 12px;
      border-radius: 6px;
      font-size: 12px;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      pointer-events: none;
    }

    .social-icon:hover::after {
      opacity: 1;
      visibility: visible;
      right: 60px;
    }

    /* Individual Brand Colors */
    .facebook i {
      color: #1877f2;
    }

    .facebook::before {
      background: #1877f2;
    }

    .instagram i {
      color: #e4405f;
    }

    .instagram::before {
      background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    }

    .linkedin i {
      color: #0077b5;
    }

    .linkedin::before {
      background: #0077b5;
    }

    .youtube i {
      color: #ff0000;
    }

    .youtube::before {
      background: #ff0000;
    }

    .whatsapp i {
      color: #25d366;
    }

    .whatsapp::before {
      background: #25d366;
    }

    .twitter i {
      color: #000000;
    }

    .twitter::before {
      background: #000000;
    }

    @media (max-width: 480px) {
      .floating-social-icons {
        display: none !important;
      }
    }

    @media (max-width: 768px) {
      .floating-social-icons {
        display: none !important;
      }
    }

    .mobile-header {
      display: none;
    }

    @media (max-width: 768px) {
      .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        position: fixed;
        background: #002370;
        ;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        height: 85px;
      }
    }

    @media (max-width : 576px) {
      .logoSection {
        margin-top: 15px !important;
      }

      .logoSection .swiper-wrapper {
        padding-bottom: 10px !important;
      }
    }

    .animated-text-wrapper {
      display: inline-block;
      position: relative;
      height: 1.3em;
      vertical-align: top;
    }

    .highlight {
      color: rgb(10, 26, 111, 1);
      /* Adjust to match your design */
      font-weight: 800;
      position: absolute;
      left: 0;
      top: 0;
      opacity: 0;
      animation: rotateWord 9s infinite;
    }

    .highlight:nth-child(1) {
      animation-delay: 0s;
    }

    .highlight:nth-child(2) {
      animation-delay: 3s;
    }

    .highlight:nth-child(3) {
      animation-delay: 6s;
    }

    @keyframes rotateWord {
      0% {
        opacity: 0;
        transform: translateY(-20px);
      }

      3% {
        opacity: 1;
        transform: translateY(0);
      }

      30% {
        opacity: 1;
        transform: translateY(0);
      }

      33% {
        opacity: 0;
        transform: translateY(20px);
      }

      100% {
        opacity: 0;
        transform: translateY(20px);
      }
    }

    @media (max-width: 768px) {
      .hero-text h1 {
        font-size: 36px;
      }

      .animated-text-wrapper {
        height: 1.4em;
        min-width: 200px;
        /* Prevents layout shift */
      }
    }

    @media (max-width: 480px) {
      .hero-text h1 {
        font-size: 28px;
        margin-top: 30px;
      }

      .animated-text-wrapper {
        height: 1.4em;
        min-width: 160px;
        /* Adjusted for smaller screens */
      }
    }

    .book-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 102, 204, 0.5);
      color: white;
    }

    .request-callback-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
      border-color: #0052a3;
    }

        /* Hero Main Container */
    .primary-hero-wrapper {
      width: 100%;
      padding: 140px 40px 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 700px;
      margin-top: 0px;
      background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 35.36%, #DBEAFE 70.71%);
    }

    .hero-content-container {
      max-width: 1400px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      padding-left: 20px;
    }

    /* Left Content Section */
    .text-content-section {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .main-title-text {
      font-size: 56px;
      font-weight: 800;
      line-height: 1.15;
      color: #1a1a1a;
      margin: 0;
    }

    .rotating-text-container {
      display: inline-block;
      position: relative;
      height: 1.3em;
      vertical-align: top;
    }

    .animated-highlight {
      color: #0a1a6f;
      font-weight: 800;
      position: absolute;
      left: 0;
      top: 0;
      opacity: 0;
      animation: textRotation 9s infinite;
    }

    .animated-highlight:nth-child(1) { animation-delay: 0s; }
    .animated-highlight:nth-child(2) { animation-delay: 3s; }
    .animated-highlight:nth-child(3) { animation-delay: 6s; }

    @keyframes textRotation {
      0% { opacity: 0; transform: translateY(-20px); }
      3% { opacity: 1; transform: translateY(0); }
      30% { opacity: 1; transform: translateY(0); }
      33% { opacity: 0; transform: translateY(20px); }
      100% { opacity: 0; transform: translateY(20px); }
    }

    .description-paragraph {
      font-size: 18px;
      line-height: 1.7;
      color: #555;
      margin: 0;
    }

    .action-button-group {
      display: flex;
      gap: 16px;
      margin-top: 16px;
    }

    .primary-action-btn {
      background: #002370;
      color: white;
      padding: 14px 32px;
      border-radius: 9px;
      border: none;
      font-size: 16.8px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
    }

    .primary-action-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 35, 112, 0.4);
      background: #001a52;
    }

    .secondary-action-btn {
      background: transparent;
      color: #002370;
      padding: 14px 32px;
      border-radius: 9px;
      border: 2px solid #002370;
      font-size: 16.8px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
    }

    .secondary-action-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 35, 112, 0.3);
      background: rgba(0, 35, 112, 0.05);
    }

    /* Logo Section */
    .partner-logo-section {
      display: flex;
      flex-direction: column;
      gap: 25px;
      margin-top: 32px;
    }

    .logo-row-container {
      display: flex;
      align-items: center;
      gap: 80px;
      flex-wrap: wrap;
    }

    .partner-brand-logo {
      height: 40px;
      width: auto;
      object-fit: contain;
    }

    /* Right Illustration Section */
    .illustration-display-section {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 147px;
    }

    .hero-banner-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
      animation: fadeInScale 1s ease-out;
    }

    @keyframes fadeInScale {
      from {
        opacity: 0;
        transform: scale(0.95);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* Floating Social Icons */
    .social-icons-fixed-bar {
      position: fixed;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 1000;
    }

    .social-platform-link {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      position: relative;
      overflow: hidden;
    }

    .social-platform-link::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.4s ease, height 0.4s ease;
      z-index: 1;
    }

    .social-platform-link i {
      font-size: 20px;
      transition: all 0.3s ease;
      z-index: 2;
      position: relative;
    }

    .social-platform-link:hover {
      transform: scale(1.15);
      box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    }

    .social-platform-link:hover::before {
      width: 100%;
      height: 100%;
    }

    .social-platform-link:hover i {
      color: white;
      transform: rotate(360deg);
    }

    .facebook-link { background: #1877f2; }
    .facebook-link::before { background: #0d5dbf; }

    .instagram-link { 
      background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    }
    .instagram-link::before { background: #8a2be2; }

    .linkedin-link { background: #0077b5; }
    .linkedin-link::before { background: #005582; }

    .youtube-link { background: #ff0000; }
    .youtube-link::before { background: #cc0000; }

    .whatsapp-link { background: #25d366; }
    .whatsapp-link::before { background: #1da851; }

    .twitter-link { background: #000000; }
    .twitter-link::before { background: #333333; }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .hero-content-container {
        gap: 60px;
      }

      .main-title-text {
        font-size: 48px;
      }

      .dialogue-bubble-element {
        font-size: 12px;
        padding: 12px 16px;
        max-width: 160px;
      }
    }

    @media (max-width: 992px) {
      .hero-content-container {
        grid-template-columns: 1fr;
        gap: 50px;
      }

      .text-content-section {
        text-align: center;
        padding-top: 40px;
      }

      .action-button-group {
        justify-content: center;
      }

      .partner-logo-section {
        align-items: center;
      }

      .logo-row-container {
        justify-content: center;
      }

      .characters-display-container {
        height: 350px;
      }

      .individual-character {
        width: 120px;
        height: 160px;
      }
    }

    @media (max-width: 768px) {
      .primary-hero-wrapper {
        padding: 60px 20px 40px;
        min-height: auto;
      }

      .hero-content-container{
        padding-left: 2px;
      }

      .faq-h1
      {
        font-size: 24px !important;
      }

      .blog-h1{
        font-size: 24px !important;
      }

      .main-title-text {
        font-size: 36px;
        padding-top: 40px;
      }

      .description-paragraph {
        font-size: 16px;
      }

      .action-button-group {
        flex-direction: column;
        gap: 12px;
      }

      .primary-action-btn,
      .secondary-action-btn {
        width: 100%;
        text-align: center;
      }

      .social-icons-fixed-bar {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
        display: none;
      }

      .characters-display-container {
        height: 300px;
        padding: 0 20px;
      }

      .individual-character {
        width: 100px;
        height: 140px;
      }

      .character-head-shape {
        width: 55px;
        height: 55px;
      }

      .hero-banner-image {
        max-width: 100%;
        margin: 0 auto;
      }

      .img-head{
        font-size: 24px !important;
      }

      .trustedby-logo-container{
        gap: 0 !important;
      }
    }

    @media (max-width: 480px) {
      .primary-hero-wrapper {
        padding: 60px 15px;
      }

      .main-title-text {
        font-size: 28px;
      }

      .description-paragraph {
        font-size: 14px;
      }

      .rotating-text-container {
        min-width: 160px;
      }

      .partner-brand-logo {
        height: 32px;
      }

      .characters-display-container {
        height: 250px;
      }

      .individual-character {
        width: 85px;
        height: 120px;
      }

      .ground-platform-element {
        height: 80px;
      }

      .hero-banner-image {
        max-width: 90%;
      }
    }


    /* Trusted card wrapper - base styling */
      .container.py-5 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
        overflow: hidden;
      }

      .trusted-card-wrapper {
        position: relative;
        overflow: visible;
        /* allow flag outside */
        width: 350px;
        height: 500px;
        background: #fff;
        border-radius: 20px;
        /* margin-top: 50px; */
        box-shadow: -5px 0 15px -5px rgba(0, 0, 0, 0.1), 5px 0 15px -5px rgba(0, 0, 0, 0.322);
      }

      /* Multiple logos card width */
      .trusted-card-wrapper.multiple-logos {
        width: 700px;
        justify-content: center;
        align-items: center;
        align-content: center;
        gap: 15px;
      }

      /* Floating country label */
      .trusted-country-label {
        position: absolute;
        top: -28px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 8px;
        padding: 10px 18px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        gap: 20px;
        font-size: 1.2rem;
        font-weight: 600;
        z-index: 9;
      }

      .trusted-country-label img {
        width: 50px;
        height: auto;
      }

      /* Logo grid inside card */
      .trusted-logo-grid {
        padding: 1px;
        height: calc(100% - 50px);
        /* full height minus padding top */
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1px;
        overflow: hidden;
        /* Prevent logos overflowing */
      }

      /* Multiple logos grid */
      .trusted-logo-grid.multiple-logos {
        justify-content: space-around;
        align-items: flex-start;
        align-content: flex-start;
        gap: 5px;
      }

      /* Mini card for each logo */
      .trusted-logo-card {
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        transition: transform 0.2s ease;
        flex-shrink: 0;
        /* Prevent shrinking */
      }

      /* Fixed size for logos (both single and multiple) */
      .trusted-logo-card img {
        width: 120px;
        height: 80px;
        object-fit: contain;
        max-width: 100%;
        max-height: 100%;
      }

      /* Single logo card adjustment - smaller logos */
      .trusted-logo-grid.single-logo .trusted-logo-card img {
        width: 100px;
        height: 70px;
      }

      /* Multiple logos - cards fixed size */
      .trusted-logo-grid.multiple-logos .trusted-logo-card {
        width: 140px;
        height: 90px;
      }

      /* Swiper specific styling */
      .trusted-sw {
        width: 100% !important;
        padding: 50px 20px;
        overflow: visible;
        position: relative;
      }

      .trusted-sw .swiper-wrapper {
        align-items: center;
      }

      .trusted-sw .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto !important;
      }

      /* Navigation arrows */
      .trusted-sw-button-next,
      .trusted-sw-button-prev {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        color: #333;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 10;
        cursor: pointer;
        user-select: none;
      }

      .trusted-sw-button-next {
        right: 10px;
      }

      .trusted-sw-button-prev {
        left: 10px;
      }

      /* Show arrows on hover */
      .trusted-sw:hover .trusted-sw-button-next,
      .trusted-sw:hover .trusted-sw-button-prev {
        opacity: 1;
        visibility: visible;
      }

      /* Pagination bullets */
      .trusted-sw-pagination-bullet {
        background: #333;
        opacity: 0.4;
        margin-top: -20px !important;
        margin-bottom: -20px !important;
      }

      .trusted-sw-pagination-bullet-active {
        opacity: 1;
      }

      /* Responsive adjustments */
      @media (max-width: 1200px) {
        .trusted-card-wrapper.multiple-logos {
          width: 500px;
        }

        .trusted-logo-grid.multiple-logos .trusted-logo-card {
          width: 120px;
          height: 80px;
        }

        .trusted-logo-card img {
          width: 110px;
          height: 75px;
        }

        .trusted-sw-pagination-bullet {
          background: #333;
          opacity: 0.4;
          margin-top: -20px !important;
          margin-bottom: -20px !important;
        }
      }

      @media (max-width: 768px) {
        .trusted-card-wrapper {
          width: 90% !important;
          max-width: 320px;
          margin: 0 auto 30px;
          height: 380px;
          overflow: hidden;
        }

        .trusted-card-wrapper.multiple-logos {
          width: 90% !important;
          max-width: 320px;
          height: auto;
          margin-top: 10px;
        }

        .trusted-logo-grid.multiple-logos {
          justify-content: center !important;
          gap: 1px;
        }

        .trusted-logo-grid.multiple-logos .trusted-logo-card {
          flex: 0 0 45% !important;
          width: auto !important;
          height: 80px !important;
        }

        /* Do NOT reduce logo size on mobile */
        .trusted-logo-card img {
          width: 120px !important;
          height: 80px !important;
        }

        .trusted-logo-grid.single-logo .trusted-logo-card img {
          width: 100px !important;
          height: 70px !important;
        }

        .trusted-sw .swiper-slide {
          width: 100% !important;
          display: flex !important;
          justify-content: center !important;
        }

        .trusted-sw-pagination-bullet {
          background: #333;
          opacity: 0.4;
          margin-top: -20px !important;
          margin-bottom: -20px !important;
        }
      }

      @media (max-width: 480px) {
        .trusted-logo-grid.multiple-logos .trusted-logo-card {
          flex: 0 0 100%;
          width: 150px;
          height: 100px;
        }

        /* Keep logo size consistent */
        .trusted-logo-card img {
          width: 120px !important;
          height: 80px !important;
        }

        .trusted-sw-pagination-bullet {
          background: #333;
          opacity: 0.4;
          margin-top: -20px !important;
          margin-bottom: -20px !important;
        }
      }

      /* Trusted card wrapper */
      .trusted-card-wrapper {
        position: relative;
        overflow: visible;
        /* Allow flag label outside on desktop */
        padding-top: 60px;
        /* Space for flag */
        width: 320px;
        height: 400px;
        background: #fff;
        border-radius: 20px;
        margin-top: 50px;
        box-shadow: -5px 0 15px -5px rgba(0, 0, 0, 0.1), 5px 0 15px -5px rgba(0, 0, 0, 0.1);
      }

      /* Flag label */
      .trusted-country-label {
        position: absolute;
        top: -35px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 20;
        /* Higher z-index */
        background: #fff;
        border-radius: 8px;
        padding: 10px 18px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .trusted-country-label img {
        width: 50px;
        height: auto;
      }

      /* On mobile, keep overflow visible */
      @media (max-width: 768px) {
        .trusted-card-wrapper {
          overflow: visible !important;
          /* Force overflow visible on mobile */
          width: 90% !important;
          max-width: 320px;
          height: 380px;
          padding-top: 50px;
        }

        .trusted-country-label {
          top: -28px;
          padding: 8px 14px;
          font-size: 1rem;
          gap: 0px;
        }

        .trusted-country-label img {
          width: 35px;
        }

        .trusted-sw-pagination-bullet {
          background: #333;
          opacity: 0.4;
          margin-top: -20px !important;
          margin-bottom: -20px !important;
        }
      }

      @media (max-width: 480px) {
        .trusted-card-wrapper {
          height: 450px;
          padding-top: 45px;
          overflow: visible !important;
          /* Also force here */
        }

        .trusted-country-label {
          top: -20px;
          padding: 6px 12px;
          font-size: 0.9rem;
          gap: 0px;
        }

        .trusted-country-label img {
          width: 28px;
        }

        .trusted-sw-pagination-bullet {
          background: #333;
          opacity: 0.4;
          margin-top: -20px !important;
          margin-bottom: -20px !important;
        }
      }

      /* Make sure swiper-slide and container don't clip overflow */
      .trusted-sw .swiper-slide {
        overflow: visible !important;
      }

      .trusted-sw-button-next,
      .trusted-sw-button-prev {
        display: flex !important;
        /* Show buttons */
        justify-content: center;
        align-items: center;
        background-color: #0a1a6f;
        color: white !important;
      }

      .trusted-sw,
      .trusted-sw .swiper-slide {
        pointer-events: auto;
      }

      .trusted-card-wrapper {
        pointer-events: auto;
      }

      .trusted-sw {
        padding: 0px 20px !important;
      }

      /* Hide navigation buttons on mobile */
      @media (max-width: 768px) {

        .trusted-sw-button-next,
        .trusted-sw-button-prev {
          display: none !important;
        }

        /* Ensure touch events work */
        .trusted-sw .swiper-wrapper {
          touch-action: pan-y;
        }

        .trusted-sw-pagination-bullet {
          background: #333;
          opacity: 0.4;
          margin-top: -20px !important;
          margin-bottom: -20px !important;
        }

        .trusted-card-wrapper {
          margin-top: 20px;

        }

        .logoHeading {
          margin-top: 10px !important;
        }
      }

      .swiper-horizontal>.swiper-pagination-bullets,
      .swiper-pagination-bullets.swiper-pagination-horizontal,
      .swiper-pagination-custom,
      .swiper-pagination-fraction {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 18px;
      }

      .section-title.text-center.logoHeading {
        margin-top: 35px;
        padding: 12px;
      }

      .subtit {
        font-size: 20px;
        margin-top: 12px;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
      }

        /* Trusted By Logo Section */
.trustedby-section {
  width: 100%;
  max-width: 1200px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
}

.trustedby-heading-container {
  text-align: center;
}

.trustedby-heading-text {
  color: black;
  font-size: 32px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Logo Container - Vertical Stack */
.trustedby-logo-container {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

/* Logo Row with Dashed Border */
.logo-row-bordered {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 30px 40px;
  border-radius: 12px;
  background: white;
  gap: 40px;
}

/* Individual Logo Item */
.logo-item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.logo-item img {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-item:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .trustedby-heading-text {
    font-size: 24px;
  }
  
  .logo-row-bordered {
    flex-wrap: wrap;
    padding: 25px 20px;
    gap: 30px;
  }
  
  .logo-item {
    flex-basis: calc(50% - 15px);
  }
  
  .logo-item img {
    max-height: 40px;
  }
}

@media (max-width: 480px) {
  .trustedby-heading-text {
    font-size: 20px;
  }
  
  .logo-row-bordered {
    padding: 14px 15px;
    gap: 20px;
  }
  
  .logo-item {
    flex-basis: 100%;
  }
  
  .logo-item img {
    max-height: 35px;
  }
}

      @media (max-width: 576px) {
        .logo-row-container{
          gap : 20px;
        }
      }

.partner-brand-logo:hover {
  transform: scale(1.08);
  filter: brightness(1.15);
}