:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --dark-blue: #0c0e1a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Header */
.header {
    padding: 20px 50px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 30, 69, 0.5);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 40px;
    backdrop-filter: blur(10px);
}

.logo {
    font-weight: 700;
    font-size: 24px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo svg {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

/* Navigation */
.nav-link {
    color: white !important;
    margin-left: 60px;
    position: relative;
    font-weight: 500;
    padding: 5px 0 !important;
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Navigation */
.navbar-toggler {
    border: none;
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 1050;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 30px;
    height: 20px;
    position: relative;
    transition: all 0.3s ease;
    background-image: none !important;
}

.navbar-toggler-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.navbar-toggler-icon span:nth-child(1) {
    top: 0;
}

.navbar-toggler-icon span:nth-child(2),
.navbar-toggler-icon span:nth-child(3) {
    top: 9px;
}

.navbar-toggler-icon span:nth-child(4) {
    top: 18px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(1),
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(4) {
    top: 9px;
    width: 0;
    left: 50%;
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(2) {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Mobile Fullscreen Menu */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100vh;
        background: #010D1E;
        padding-top: 80px;
        transition: all 0.4s ease;
        z-index: 99;
    }

    .navbar-collapse.show {
        left: 0;
    }

    .navbar-nav {
        text-align: center;
    }

    .nav-link {
        font-size: 24px;
        margin: 20px 0;
    }
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url("../images/herobg.png");
    background-position: bottom;
    padding-bottom: 0;
}

.hero-content {
    text-align: center;
    color: white;
}

/* More Visible Animation for Heading and Description */
.hero-title {
    font-size: 80px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    letter-spacing: -6px;
}

.show-content .hero-title {
    animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
}

.show-content .hero-subtitle {
    animation: fadeInUp 1s ease forwards 0.3s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Advanced CTA Button Animations */
.cta-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}

.btn-cta {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    letter-spacing: 0.5px;
}

/* Slide-up animations for buttons on page load */
.show-content .btn-cta:first-child {
    animation: slideUp 0.8s ease forwards 0.6s;
}

.show-content .btn-cta:last-child {
    animation: slideUp 0.8s ease forwards 0.8s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Primary Button - Border Spinner Effect */
.btn-primary {
    background-color: #1a1a2e;
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary::before,
.btn-primary::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border-radius: 50px;
    border: 2px solid transparent;
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.3s ease;
    z-index: -1;
}

.btn-primary::before {
    border-top: 2px solid rgba(255, 255, 255, 0.8);
    border-left: 2px solid rgba(255, 255, 255, 0.8);
    transform: rotate(-45deg);
}

.btn-primary::after {
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    border-right: 2px solid rgba(255, 255, 255, 0.8);
    transform: rotate(45deg);
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    background-color: #0c0e1a;
}

.btn-primary:hover::before,
.btn-primary:hover::after {
    opacity: 1;
    transform: rotate(0deg);
}

.btn-primary:active {
    transform: translateY(1px);
}

/* Outline Button - Glitch Effect */
.btn-outline-light {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
    animation: glitch 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }
    10% {
        transform: translate(-2px, -2px);
        text-shadow: 1px 1px rgba(255, 255, 255, 0.5);
    }
    20% {
        transform: translate(2px, 2px);
        text-shadow: -1px -1px rgba(255, 255, 255, 0.5);
    }
    30% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(2px, -2px);
        text-shadow: 1px -1px rgba(255, 255, 255, 0.5);
    }
    50% {
        transform: translate(-2px, 1px);
    }
    60% {
        transform: translate(1px, 2px);
        text-shadow: -1px 1px rgba(255, 255, 255, 0.5);
    }
    70% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(0);
        text-shadow: none;
    }
}

.btn-outline-light::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-outline-light:hover::before {
    opacity: 1;
    transform: scale(1);
    animation: pulsate 1.5s ease-out infinite;
}

@keyframes pulsate {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

.btn-outline-light:active {
    transform: scale(0.98);
}

/* Dashboard Mockup */
.dashboard-mockup {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.8s 0.9s;
}

.dashboard-main {
    border-radius: 10px;
    overflow: hidden;
    
}

.dashboard-mobile {
    position: absolute;
    bottom: -50px;
    left: -80px;
    width: 260px;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s 1.2s, transform 0.8s 1.2s;
}

/* About Section */
.about-oklo {
    background-color: #050b1f;
    color: #ffffff;
    padding: 0 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 0px;
  }
  
  .about-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .about-logo-container {
    margin-bottom: 40px;
  }
  
  .about-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }
  
  .heading {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    letter-spacing: -2px;
  }
  
  .subheading {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    color: #677B96;
  }
  
  .cta-button {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #fff;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
    transition: all 0.3s ease;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
  }
  
  .cta-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
  }
  
  /* Animations */
  .animate-logo {
    animation: zoomLogoAnimation 5s infinite alternate ease-in-out;
  }
  
  .logo-path {
    animation: strokeAnimation 8s infinite alternate ease-in-out;
  }
  
  .animate-heading {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
  }
  
  .animate-subheading {
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(30px);
  }
  
  .animate-button {
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(30px);
  }
  
  @keyframes zoomLogoAnimation {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.1);
    }
  }
  
  @keyframes strokeAnimation {
    0% {
      stroke-dasharray: 300;
      stroke-dashoffset: 300;
    }
    50% {
      stroke-dasharray: 300;
      stroke-dashoffset: 0;
    }
    100% {
      stroke-dasharray: 300;
      stroke-dashoffset: -300;
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Media Queries for Responsiveness */
  @media (max-width: 768px) {
    .about-oklo {
      padding: 80px 0;
    }
    
    .heading {
      font-size: 36px;
    }
    
    .subheading {
      font-size: 16px;
    }
  }
  
  @media (max-width: 480px) {
    .heading {
      font-size: 28px;
    }
    
    .about-logo {
      width: 80px;
      height: 80px;
    }
  }


  


















/* Animations active classes */
.show-content .hero-title,
.show-content .hero-subtitle,
.show-content .cta-container,
.show-content .dashboard-mockup,
.show-content .dashboard-mobile,
.show-content .logo-icon,
.show-content .about-heading,
.show-content .about-text,
.show-content .about-button {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Float animation for mobile */
.float {
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Pulse animation for dashboard */
.pulse {
    animation: pulse 5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 66px;
    }

    .dashboard-mobile {
        width: 200px;
        left: -40px;
    }

    .about-heading {
        font-size: 36px;
    }

    .app-background{
      height: 60% !important;
    }

    .reservation-bg-container{
      height: 60% !important;
    }

    .product-content{
      margin-bottom: 100px;
    }

    .business-image-container{
      height: 60% !important;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .cta-container {
        flex-direction: column;
        gap: 15px;
    }

    .dashboard-mockup {
        margin-top: 60px;
    }

    .dashboard-mobile {
        width: 150px;
        left: -20px;
        bottom: -30px;
    }

    .about-heading {
        font-size: 32px;
    }

    .about-text {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
      font-size: 60px;
      line-height: 56px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .dashboard-mobile {
        display: none;
    }

    .about-heading {
        font-size: 28px;
    }

    .hero{
      padding: 140px 0 0;
    }

    .app-background {
      height: 82% !important;
    }

    .app-showcase{
      justify-content: space-evenly !important;
    }

    .travel-hotel-image-container{
      width: 400px !important;
      left: -36px !important;
      bottom: 50px !important;
    }

    .reservation-ui-container{
      right: -18px;
      bottom: -54px;
    }

    .reservation-bg-container{
      height: 80% !important;
    }

   
}



/* Product Section 01 */

.smart-travel-section {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
  }
  
  /* Left side app showcase */
  .app-showcase {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  
  .app-background {
    position: absolute;
    width: 90%;
    height: 90%;
    background-image: url(../images/mobileUI-bg.svg);
    background-size: cover;
    border-radius: 40px;
    transform: translateY(100px);
    opacity: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .app-ui-container {
    position: relative;
    width: 80%;
    max-width: 350px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(80px);
    opacity: 0;
    top: 32%;
  }
  
  .calendar-ui-image {
    width: 100%;
    border-radius: 35px;
    display: block;
    max-height: 90%;
    object-fit: contain;
    box-shadow: 12px -2px 28px 0px rgba(0,0,0,0.2);
    
  }
  
  /* Right side content */
  .content-wrapper {
    padding-left: 40px;
  }
  
  .category-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
    display: block;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
  }
  
  .section-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 38px;
    margin-bottom: 40px;
    color: #0f172a;
    opacity: 0;
    transform: translateY(20px);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
  }
  
  .section-description {
    font-size: 18px;
    line-height: 28px;
    color: #4B4B4B;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
  }
  
  .learn-more-btn {
    display: inline-block;
    background: #0f172a;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
  }
  
  .learn-more-btn:hover {
    background: #1a2641;
    transform: translateY(-3px);
  }
  
  .arrow {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
  }
  
  .learn-more-btn:hover .arrow {
    transform: translateX(5px);
  }
  
  /* Animations */
  .animate-background {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }
  
  .animate-ui {
    animation: slideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
  }
  
  .animate-text-1 {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s forwards;
  }
  
  .animate-text-2 {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
  }
  
  .animate-text-3 {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.1s forwards;
  }
  
  .animate-text-4 {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.3s forwards;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(80px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive styles */
  @media (max-width: 991px) {
    .content-wrapper {
      padding-left: 0;
      margin-top: 40px;
      text-align: center;
    }
    
    .section-title {
      font-size: 36px;
    }
  }
  
  @media (max-width: 767px) {
    .app-showcase {
      height: 450px;
      margin: 0 auto;
    }
    
    .app-ui-container {
      max-width: 280px;
    }
    
    .section-title {
      font-size: 30px;
    }
    
    .section-description {
      font-size: 16px;
    }
  }


  /* Smart Travel Section */

  .reservation-section {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
  }
  
  /* Left side content */
  .reservation-content-wrapper {
    padding-right: 40px;
  }
  
  .reservation-section-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 38px;
    margin-bottom: 40px;
    color: #0f172a;
    opacity: 0;
    transform: translateY(20px);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
  }
  
  .reservation-section-description {
    font-size: 18px;
    line-height: 28px;
    color: #4B4B4B;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
  }
  
  .reservation-cta-btn {
    display: inline-block;
    background: #0f172a;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
  }
  
  .reservation-cta-btn:hover {
    background: #1a2641;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .arrow {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
  }
  
  .reservation-cta-btn:hover .arrow {
    transform: translateX(5px);
  }
  
  /* Right side UI */
  .reservation-showcase {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .reservation-bg-container {
    position: absolute;
    width: 100%; /* Wider background */
    height: 90%;
    background: url("../images/st-bg.svg");
    background-size: cover;
    border-radius: 30px;
    transform: translateY(100px);
    opacity: 0;
    overflow: hidden;
    display: flex;
    justify-content: flex-end; /* Align content to right */
    align-items: flex-end; /* Align content to bottom */
  }
  
  .reservation-ui-container {
    position: relative;
    width: 85%;
    max-width: 580px;
    z-index: 2;
    transform: translateY(80px);
    opacity: 0;
  }
  
  .reservation-ui-image {
    width: 100%;
    display: block;
  }
  
  /* Animations */
  .animate-reservation-1 {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards;
  }
  
  .animate-reservation-2 {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
  }
  
  .animate-reservation-3 {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
  }
  
  .animate-reservation-bg {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }
  
  .animate-reservation-ui {
    animation: slideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(80px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive styles */
  @media (max-width: 991px) {
    .reservation-content-wrapper {
      padding-right: 0;
      margin-bottom: 40px;
      text-align: center;
    }
    
    .reservation-section-title {
      font-size: 36px;
    }
  }
  
  @media (max-width: 767px) {
    .reservation-section {
      padding: 60px 0;
    }
    
    .reservation-showcase {
      height: 450px;
      margin: 0 auto;
    }
    
    .reservation-bg-container {
      justify-content: center;
      align-items: center;
    }
    
    .reservation-ui-container {
      padding-bottom: 0;
      padding-right: 0;
      width: 90%;
      max-width: 400px;
    }
    
    .reservation-section-title {
      font-size: 30px;
    }
    
    .reservation-section-description {
      font-size: 16px;
    }
    
    .row {
      flex-direction: column;
    }
  }

  

  /* Other Product Section*/
  .dual-product-section {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
  }
  
  .product-column {
    position: relative;
  }
  
  /* Image Container */
  .product-image-container {
    position: relative;
    width: 100%;
    height: 350px;
    background-color: #F2F5F6;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(30px);
  }
  
  .product-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    object-position: center bottom;
  }
  
  /* Content Styling */
  .product-category {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
    display: block;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
  }
  
  .product-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 38px;
    margin-bottom: 40px;
    color: #0f172a;
    opacity: 0;
    transform: translateY(20px);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
  }
  
  .product-description {
    font-size: 18px;
    line-height: 28px;
    color: #4B4B4B;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
  }
  
  .product-cta-btn {
    display: inline-block;
    background: #0f172a;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
  }
  
  .product-cta-btn:hover {
    background: #1a2641;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .arrow {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
  }
  
  .product-cta-btn:hover .arrow {
    transform: translateX(5px);
  }
  
  /* Animations */
  .animate-product-1 {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }
  
  .animate-product-2 {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
  }
  
  .animate-product-3 {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
  }
  
  .animate-product-4 {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
  }
  
  .animate-product-5 {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive styles */
  @media (max-width: 991px) {
    .product-title {
      font-size: 28px;
    }
    
    .product-description {
      font-size: 16px;
    }
    
    .mb-lg-0 {
      margin-bottom: 0 !important;
    }
  }
  
  @media (max-width: 767px) {
    .dual-product-section {
      padding: 60px 0;
    }
    
    .product-image-container {
      height: 280px;
      margin-bottom: 30px;
    }
    
    .product-title {
      font-size: 24px;
    }
    
    .mb-5 {
      margin-bottom: 3rem !important;
    }
  }


  /* Kickstarter Section */
  
  .kickstart-section {
    padding: 0;
    margin: 100px 0;
    overflow: hidden;
    margin-top: 40px;
  }
  
  .kickstart-container {
    position: relative;
    background: url(../images/kick-bg.png);
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
  }
  
  /* Content */
  .kickstart-content-wrapper {
    width: 50%;
    padding: 80px 50px;
    color: white;
    position: relative;
    z-index: 2;
  }
  
  .kickstart-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
  }
  
  .kickstart-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 44px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
  }
  
  .kickstart-description {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
  }
  
  .kickstart-btn {
    display: inline-block;
    background: white;
    color: #6c3adf;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
  }
  
  .kickstart-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Mobile UI overlay */
  .kickstart-mobile-overlay {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%) scale(0.95);
    z-index: 3;
    max-width: 300px;
    opacity: 0;
  }
  
  .mobile-ui-image {
    width: 100%;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
  }
  
  /* Animations */
  .animate-kickstart-1 {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards;
  }
  
  .animate-kickstart-2 {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
  }
  
  .animate-kickstart-3 {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
  }
  
  .animate-kickstart-4 {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s forwards;
  }
  
  .animate-kickstart-5 {
    animation: floatIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes floatIn {
    from {
      opacity: 0;
      transform: translateY(-50%) scale(0.9);
    }
    to {
      opacity: 1;
      transform: translateY(-50%) scale(1);
    }
  }
  
  /* Responsive styles */
  @media (max-width: 991px) {
    .kickstart-container {
      background: linear-gradient(135deg, rgba(108, 58, 223, 0.95) 0%, rgba(143, 94, 255, 0.9) 100%), 
                  url('path/to/professional-with-tablet.jpg');
      background-size: cover;
      background-position: center;
    }
    
    .kickstart-content-wrapper {
      width: 100%;
      padding: 60px 30px;
      text-align: center;
    }
    
    .kickstart-title {
      font-size: 36px;
    }
    
    .kickstart-mobile-overlay {
      position: relative;
      top: auto;
      right: auto;
      transform: translateY(-20px);
      margin: 0 auto;
      display: block;
      max-width: 220px;
    }
    
    .animate-kickstart-5 {
      animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
    }
  }
  
  @media (max-width: 767px) {
    .kickstart-section {
      margin: 60px 0;
    }
    
    .kickstart-title {
      font-size: 30px;
    }
    
    .kickstart-description {
      font-size: 16px;
    }
    
    .kickstart-container {
      min-height: 650px;
    }
  }



  /* Testimo Section */

  .testimonials-section {
    padding: 80px 0;
  }
  
  .testimonials-heading {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    letter-spacing: -1px;
  }
  
  .testimonial-grid {
    margin-bottom: 40px;
  }
  
  .testimonial-box {
    background-color: #F6F7F9;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
  }
  
  .testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  
  .testimonial-logo {
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
  }
  
  .testimonial-logo img {
    max-height: 100%;
    max-width: 150px;
  }
  
  .testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
  }
  
  .testimonial-author h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #0f172a;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
  }
  
  .testimonial-author p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.4;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
  }
  
  .see-all-btn {
    display: inline-block;
    border: 2px solid #0f172a;
    color: #0f172a;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
  }
  
  .see-all-btn:hover {
    background-color: #0f172a;
    color: white;
  }
  
  /* Animation classes */
  .animate-testimonial {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }
  
  .animate-box {
    opacity: 0;
  }
  
  .animate-btn {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 3.2s; /* Starts after all boxes have animated */
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive styles */
  @media (max-width: 991px) {
    .testimonials-heading {
      font-size: 36px;
      margin-bottom: 40px;
    }
  }
  
  @media (max-width: 767px) {
    .testimonials-heading {
      font-size: 28px;
    }
    
    .testimonial-box {
      padding: 20px;
    }
  }
  
  /* Add margin gap between boxes */
  .mb-4 {
    margin-bottom: 2rem !important;
  }



  /* Conatct Section */

  .business-talk-section {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
  }
  
  /* Left side content */
  .business-content-wrapper {
    padding-right: 40px;
  }
  
  .business-section-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 38px;
    margin-bottom: 20px;
    color: #0f172a;
    opacity: 0;
    transform: translateY(20px);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
  }
  
  .business-section-description {
    font-size: 18px;
    line-height: 28px;
    color: #4a5568;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
  }
  
  .business-cta-btn {
    display: inline-block;
    background: #0f172a;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
  }
  
  .business-cta-btn:hover {
    background: #1a2641;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .arrow {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
  }
  
  .business-cta-btn:hover .arrow {
    transform: translateX(5px);
  }
  
  /* Right side image */
  .business-image-showcase {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .business-image-container {
    position: relative;
    width: 90%;
    height: 90%;
    border-radius: 30px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
  }
  
  .business-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
  }
  
  .business-image-container:hover .business-image {
    transform: scale(1.03);
  }
  
  /* Animations */
  .animate-business-1 {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards;
  }
  
  .animate-business-2 {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
  }
  
  .animate-business-3 {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
  }
  
  .animate-business-image {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive styles */
  @media (max-width: 991px) {
    .business-content-wrapper {
      padding-right: 0;
      margin-bottom: 40px;
    }
    
    .business-section-title {
      font-size: 36px;
    }
  }
  
  @media (max-width: 767px) {
    .business-talk-section {
      padding: 60px 0;
    }
    
    .business-image-showcase {
      height: 450px;
      margin: 0 auto;
    }
    
    .business-section-title {
      font-size: 30px;
    }
    
    .business-section-description {
      font-size: 16px;
    }
    
    .row {
      flex-direction: column;
    }
  }




  /* Footer */

  /* Footer Styles */
  .footer-section {
    padding: 100px 0 20px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
  }
  
  /* Large Animated Text */
  .tagline-container {
    position: relative;
    height: 160px;
    margin-bottom: 80px;
    overflow: hidden;
    width: 100%;
  }
  
  .tagline-scroll {
    width: 100%;
    overflow: hidden;
  }
  
  .tagline-words {
    display: flex;
    position: relative;
    white-space: nowrap;
    animation: scrollTagline 25s linear infinite;
  }
  
  .tagline-word {
    font-size: 120px;
    font-weight: 900;
    margin-right: 50px;
    display: inline-block;
  }
  
  .tagline-word:nth-child(2),
  .tagline-word:nth-child(5) {
    color: #333;
  }
  
  .tagline-word:nth-child(1),
  .tagline-word:nth-child(3),
  .tagline-word:nth-child(4),
  .tagline-word:nth-child(6) {
    color: white;
  background-color: white;
  text-shadow: -1px -1px 0 #D5D5D5, 1px -1px 0 #D5D5D5, -1px 1px 0 #D5D5D5, 1px 1px 0 #D5D5D5;
  }
  
  @keyframes scrollTagline {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  /* Footer Logo */
  .footer-logo {
    margin-bottom: 20px;
  }
  
  .footer-logo img {
    max-width: 120px;
  }
  
  /* Social Icons */
  .social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border-radius: 50%;
    color: #333;
    transition: all 0.3s ease;
  }
  
  .social-link:hover {
    background: #e8e8e8;
    color: #fff;
  }
  
  /* Footer Headings */
  .footer-heading {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #333;
  }
  
  /* Footer Information */
  .footer-info {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
  }
  
  .footer-email {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-email:hover {
    color: #000;
  }
  
  /* Footer Links */
  .footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #333;
  }
  
  /* Copyright Section */
  .footer-copyright {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #777;
  }
  
  .privacy-link {
    color: #777;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .privacy-link:hover {
    color: #333;
  }
  
  /* Responsive Styles */
  @media (max-width: 991px) {
    .tagline-container {
      height: 120px;
      margin-bottom: 60px;
    }
    
    .tagline-word {
      font-size: 80px;
    }
  }
  
  @media (max-width: 767px) {
    .footer-section {
      padding: 60px 0 20px;
    }
    
    .tagline-container {
      height: 80px;
      margin-bottom: 40px;
    }
    
    .tagline-word {
      font-size: 50px;
      margin-right: 30px;
    }
    
    .footer-copyright .text-md-end {
      text-align: left !important;
      margin-top: 10px;
    }
  }
  
  @media (max-width: 480px) {
    .tagline-word {
      font-size: 40px;
      margin-right: 20px;
    }
  }



  /* Floating Image Product Section */
  .app-showcase {
    position: relative !important;
    overflow: visible !important;
  }
  
  /* Floating UI image (already part of your design) */
  .app-ui-container {
    position: relative;
    z-index: 10;
  }
  
  /* Hotel image with Check Availability button */
  .travel-hotel-image-container {
    position: absolute;
    bottom: 0; /* Adjusted to be more visible */
    width: 594px;
    z-index: 20; /* Higher than the UI to appear on top */
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
    transition: transform 0.3s ease-out; /* Smooth transition for scroll effect */
    will-change: transform; /* Optimize for animation performance */
  }
  
  .travel-hotel-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
  }
  
  .availability-button {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #4ade80, #22c55e);
    color: white;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
  }
  
  .check-icon {
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .check-icon svg {
    width: 16px;
    height: 16px;
    color: #22c55e;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive adjustments */
  @media (max-width: 1200px) {
    .travel-hotel-image-container {
      width: 500px;
      bottom: 62px;
    }
    
    .availability-button {
      padding: 12px 25px;
      font-size: 16px;
    }
    
    .check-icon {
      width: 26px;
      height: 26px;
    }
  }
  
  @media (max-width: 991px) {
    .travel-hotel-image-container {
      width: 420px;
        bottom: 140px;
        left: 0px;
    }
    
    .availability-button {
      padding: 10px 20px;
      font-size: 14px;
      bottom: 20px;
    }
    
    .check-icon {
      width: 22px;
      height: 22px;
    }
    
    .check-icon svg {
      width: 14px;
      height: 14px;
    }
  }
  
  @media (max-width: 767px) {
    .travel-hotel-image-container {
      position: relative;
      width: 80%;
      /*max-width: 280px;*/
      left: auto;
      bottom: auto;
      margin: 20px auto -60px;
      transform: none !important; /* Disable movement on mobile */
    }
  }




  /* Customer Logos */
  /* Customer Logos Section Styles */
        .CustomerLogos-section {
            padding: 100px 0;
            background: #ffffff;
            overflow: hidden;
        }

        .CustomerLogos-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .CustomerLogos-title {
            font-size: 36px;
            font-weight: 800;
            color: #0f172a;
            text-align: center;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
            font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
        }

        /* Logo Grid */
        .CustomerLogos-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 60px;
            align-items: center;
            justify-items: center;
            padding: 40px 0;
        }

        .CustomerLogos-item {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 200px;
            height: 80px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.3s ease;
        }

        .CustomerLogos-item.animate {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.8s ease;
        }

        .CustomerLogos-item:hover {
            transform: translateY(-10px) scale(1.05);
        }

        .CustomerLogos-logo {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%) opacity(0.7);
            transition: all 0.3s ease;
        }

        .CustomerLogos-item:hover .CustomerLogos-logo {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.1);
        }

        /* Alternative: Carousel/Slider Style */
        .CustomerLogos-slider {
            position: relative;
            overflow: hidden;
            width: 100%;
            margin: 40px 0;
        }

        .CustomerLogos-track {
            display: flex;
            align-items: center;
            gap: 80px;
            animation: slideLogos 20s linear infinite;
            width: fit-content;
        }

        .CustomerLogos-track:hover {
            animation-play-state: paused;
        }

        .CustomerLogos-slide-item {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 180px;
            height: 80px;
        }

        .CustomerLogos-slide-logo {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%) opacity(0.6);
            transition: all 0.3s ease;
        }

        .CustomerLogos-slide-item:hover .CustomerLogos-slide-logo {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.1);
        }

        /* Logo placeholders with company names */
        .CustomerLogos-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            background: #f8fafc;
            border: 2px dashed #e2e8f0;
            border-radius: 10px;
            font-family: 'Georgia', serif;
            font-weight: 600;
            color: #64748b;
            font-size: 16px;
            text-align: center;
            line-height: 1.3;
            transition: all 0.3s ease;
        }

        .CustomerLogos-item:hover .CustomerLogos-placeholder {
            background: #f1f5f9;
            border-color: #cbd5e1;
            color: #475569;
        }

        /* Trust Section */
        .CustomerLogos-trust-section {
            text-align: center;
            margin-top: 60px;
            opacity: 0;
            transform: translateY(30px);
        }

        .CustomerLogos-trust-section.animate {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.8s ease;
        }

        .CustomerLogos-trust-text {
            font-size: 18px;
            color: #6b7280;
            margin-bottom: 30px;
            font-style: italic;
            font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
        }

        .CustomerLogos-cta-button {
            background: #0f172a;
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            display: inline-block;
            font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
        }

        .CustomerLogos-cta-button:hover {
            background: #1a2641;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            color: white;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideLogos {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .CustomerLogos-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 40px;
                justify-items: center;
            }
        }

        @media (max-width: 991px) {
            .CustomerLogos-section {
                padding: 80px 0;
            }

            .CustomerLogos-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
                justify-items: center;
            }

            .CustomerLogos-title {
                font-size: 28px;
                margin-bottom: 40px;
            }

            .CustomerLogos-track {
                gap: 60px;
            }
        }

        @media (max-width: 767px) {
            .CustomerLogos-section {
                padding: 60px 0;
            }

            .CustomerLogos-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                justify-items: center;
                place-items: center;
            }

            .CustomerLogos-item {
                max-width: 150px;
                height: 60px;
                margin: 0 auto;
            }

            .CustomerLogos-title {
                font-size: 24px;
            }

            .CustomerLogos-track {
                gap: 40px;
            }

            .CustomerLogos-slide-item {
                width: 140px;
                height: 60px;
            }

            .CustomerLogos-placeholder {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .CustomerLogos-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                justify-items: center;
                place-items: center;
                text-align: center;
            }

            .CustomerLogos-item {
                max-width: 200px;
                margin: 0 auto;
            }

            .CustomerLogos-trust-text {
                font-size: 16px;
            }

            .CustomerLogos-cta-button {
                padding: 12px 30px;
                font-size: 14px;
            }
        }

        /* Staggered animation delays for logo items */
        .CustomerLogos-item:nth-child(1) { animation-delay: 0.2s; }
        .CustomerLogos-item:nth-child(2) { animation-delay: 0.4s; }
        .CustomerLogos-item:nth-child(3) { animation-delay: 0.6s; }
        .CustomerLogos-item:nth-child(4) { animation-delay: 0.8s; }
        .CustomerLogos-item:nth-child(5) { animation-delay: 1.0s; }
        .CustomerLogos-item:nth-child(6) { animation-delay: 1.2s; }

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

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