* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

html {
overflow-x: hidden;
width: 100%;
}

body {
    letter-spacing: 0.8px;
    color: white;
    scroll-behavior: smooth;
    overflow-x: visible !important;
}

body.menu-open {
    overflow: hidden;
}

#whatsapp-icon {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }
  
      .logo img {
              height: 60px;
              width: auto;
          }

img {
  width: 100%;
  height: auto;
  aspect-ratio: attr(width) / attr(height);
  object-fit: cover;
}

.hero-content {
    padding: 20px 20px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);         
    padding: 16px 40px;
    transition: background-color 0.3s ease;
}

.header-container {
    max-width: clamp(1152px, 85%, 1280px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.calender-icon {
    width: 15px;
    height: 15px;
}

.calendar-icon,
.arrow-icon {
    width: 20px !important;
    height: 20px !important;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.main-nav {
    margin-right: 32px;
}

.nav-list {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: #969696;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(14.4px, 1.061vw, 16px);
    transition: color 0.3s ease;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
}

.has-submenu {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    top: calc(100% + 30px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 1000;
    list-style: none;
}

.has-submenu::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 45px;
    background: transparent;
}

/* Desktop dropdown hover and active states */
@media (min-width: 769px) {
    .has-submenu:hover .submenu,
    .has-submenu.active .submenu {
        display: block;
    }
    
    .submenu li a {
        padding: 8px 16px;
        display: block;
        white-space: nowrap;
        color: #041A41;
        margin: 10px;
        transition: background-color 0.2s ease;
    }
    
    .submenu li a:hover {
        background-color: #f3f4f6;
        color: #00CCDD;
    }
}

.mobile-menu-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background-color: #fff;
      margin: 5px 0;
      transition: all 0.3s ease;
  }

.mobile-menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
  }

.mobile-menu-toggle.active span:nth-child(2) {
      opacity: 0;
  }

.mobile-menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
  }

@media (max-width: 1090px) {
      .header, footer {
          padding: 16px 40px !important;
      }
  }

  @media (max-width: 930px) {
    .mobile-menu-toggle {
        display: block;
        color: #000;
        background: #5173ff;
      }
  
      .nav-wrapper {
          position: fixed;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100vh;
          background-color: white;
          flex-direction: column;
          justify-content: flex-start;
          padding-top: 100px;
          transition: left 0.3s ease;
          z-index: 999;
      }

      .nav-wrapper.active {
          left: 0;
      }

      .main-nav {
          margin: 0 0 32px 0;
      }
  
      .nav-list {
          flex-direction: column;
          align-items: center;
          gap: 24px;
      }
  
      .nav-list a {
          font-size: clamp(21.6px, 1.592vw, 24px);
      }
  
  }

@media (max-width: 768px) {

        .nav-wrapper {
            overflow-y: scroll;
            overflow-x: hidden;
        }

    .globe-animation img {
        transform: unset !important;
    }

    .globe-animation {
        top: 0 !important;
    }

        .logo-image {
          width: 140px !important;
          height: 45px !important;
          transform: translateZ(0);
          will-change: transform;
          content-visibility: auto;
          contain-intrinsic-size: 140px 45px;
        }
        
        .header {
          padding: 10px 20px;
        }

    .main-nav {
          margin: 0;
          width: 100%;
          text-align: center;
      }
  
      .nav-list {
          flex-direction: column;
          gap: 32px;
          padding: 40px 0;
      }
  
      .nav-list a {
        font-size: 18px;
        display: block;
        padding: 0px 20px 10px;
        color: black;
    }

    ul.submenu > li > a {
        background-color: #f3f4f6;
        border-radius: 10px;
        margin: 10px;
        padding: 10px;
        color: black;
        text-decoration: none;
        font-size: 18px;
        display: block;
        padding: 0px 20px 10px;
    }

      .mobile-menu-toggle span {
          display: block;
          width: 24px;
          height: 2px;
          background-color: #fff;
          margin: 6px 0;
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          border-radius: 2px;
      }

      .submenu {
          position: static;
          transform: none;
          box-shadow: none;
          border: none;
          background: #f3f4f6;
          border-radius: 8px;
          margin: 16px 0;
          padding: 12px 0;
          width: 100%;
          display: none;
          max-height: 500px;
      }
      .has-submenu.active .submenu {
          display: block;
      }
  
      .has-submenu::before {
          display: none;
      }

      .submenu {
          animation: slideDown 0.3s ease-out;
      }
    }
    /* home  */
    h2:not(span.highlight),
h2:not(span.highlight) span {
font-family: "HeuvelGroteskDEMO", -apple-system, BlinkMacSystemFont, system-ui,
sans-serif !important;
font-display: swap;
}

body
> section.consultation-section
> div
> div
> div.consultation-content
> h2
> span {
font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
font-display: swap;
}

header {
position: fixed !important;
}

body {
background-color: #000;
}

/* Optimize for LCP */
.hero-section::before,
.hero-section::after {
content: "";
position: absolute;
top: 0;
width: 50%;
height: 100%;
background-color: #000;
will-change: transform;
contain: layout paint;
}

.hero-section::before {
left: 0;
background: url('../home1.avif');
animation: slideInLeft 1.2s ease-out;
background-size: cover;
background-position: center;
}

.hero-section::after {
right: 0;
background: url('../home2.avif');
animation: slideInRight 1.2s ease-out;
background-size: cover;
background-position: center;
}

/* Hero Section Styles */
.hero-section {
position: relative;
min-height: 100vh;
width: 100%;
color: white;
overflow: hidden;
display: flex;
align-content: center;
align-items: flex-end;
}

.hero-fade {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100px;
z-index: 2;
background: linear-gradient(
to bottom,
rgba(0, 0, 0, 0) 0%,
rgba(0, 0, 0, 1) 100%
);
pointer-events: none;
}

.hero-container {
position: relative;
z-index: 2;
margin: 0 auto;
}

.hero-content {
margin: 130px auto;
text-align: center;
}

.animate-text {
font-display: swap;
-webkit-text-stroke: none;
text-shadow: none;
}

.animate-text span {
opacity: 0;
transform: translateY(20px);
animation: fadeInUp 0.8s ease-out forwards;
}

h1.animate-text {
font-size: clamp(47.7px, 3.515vw, 53px);
font-weight: 700;
line-height: 1.2;
color: #fff;
font-family: "HeuvelGroteskDEMO", -apple-system, BlinkMacSystemFont, system-ui,
sans-serif !important;
font-display: swap;
transition: none !important;
}

.animate-text span {
font-family: "HeuvelGroteskDEMO", -apple-system, BlinkMacSystemFont, system-ui,
sans-serif !important;
font-display: swap;
}

.line-1 {
animation-delay: 0.2s;
}
.line-2 {
animation-delay: 0.2s;
}
.line-3 {
animation-delay: 0.2s;
}

.highlight {
color: #00ccdd;
}

.hero-description {
opacity: 1;
max-width: 820px;
margin: 30px auto;
line-height: 1.6;
font-size: clamp(16.2px, 1.194vw, 18px);
}

.cta-button {
display: inline-flex;
align-items: center;
gap: 8px;
background: #00ccdd;
color: #000;
padding: 16px 32px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: clamp(14.4px, 1.061vw, 16px);
/* transition: all 0.3s ease; */
transition: none;
position: relative;
overflow: hidden;
}

.icon-container {
display: flex;
align-items: center;
position: relative;
width: 20px;
height: 20px;
transition: none;
}

.calendar-icon,
.arrow-icon {
position: absolute;
left: 0;
top: 0;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
filter: brightness(0);
}

.calendar-icon {
opacity: 1;
transform: translateX(0) rotate(0);
}

.arrow-icon {
opacity: 0;
transform: translateX(-10px) rotate(-45deg);
}

.shine {
position: absolute;
top: 0;
left: -100%;
width: 50%;
height: 100%;
background: linear-gradient(
120deg,
transparent,
rgba(255, 255, 255, 0.6),
transparent
);
/* transform: skewX(-20deg);
    transition: 0.1s; */
transform: matrix(
1,
0,
-0.36397,
1,
0,
0
); /* Restored original matrix transform */
transition: none; /* Removed transition */
pointer-events: none;
}

@media (max-width: 1200px) {
h1.animate-text {
font-size: clamp(46.8px, 3.449vw, 52px);
line-height: 1.2;
}

h1.animate-text .line-1,
h1.animate-text .line-2,
h1.animate-text .line-3 {
font-size: clamp(46.8px, 3.449vw, 52px);
line-height: 1.2;
}
}

@media (max-width: 991px) {
h1.animate-text {
font-size: clamp(37.8px, 2.785vw, 42px);
line-height: 1.2;
}

h1.animate-text .line-1,
h1.animate-text .line-2,
h1.animate-text .line-3 {
font-size: clamp(37.8px, 2.785vw, 42px);
line-height: 1.2;
}
}

@media (max-width: 767px) {
h1.animate-text {
font-size: clamp(28.8px, 2.122vw, 32px);
line-height: 1.3;
}

h1.animate-text .line-1,
h1.animate-text .line-2,
h1.animate-text .line-3 {
font-size: clamp(28.8px, 2.122vw, 32px);
line-height: 1.3;
}
}

@media (max-width: 480px) {
h1.animate-text {
font-size: clamp(25.2px, 1.857vw, 28px);
line-height: 1.3;
}

h1.animate-text .line-1,
h1.animate-text .line-2,
h1.animate-text .line-3 {
font-size: clamp(25.2px, 1.857vw, 28px);
line-height: 1.3;
}
}
@media (max-width: 768px) {
.content-wrapper .info-content,
.content-wrapper.reverse .info-content {
transform: none !important; /* Remove transforms on mobile */
padding: 30px 20px;
}
}
@media (max-width: 768px) {
.hero-content h1 {
font-size: clamp(28.8px, 4.8vw, 32px);
}

.hero-description {
font-size: clamp(14.4px, 1.061vw, 16px);
margin-bottom: 20px;
}

.hero-content {
width: 100%;
padding: 0 20px;
}

.cta-button {
width: 100%;
justify-content: center;
}
}

@media (max-width: 480px) {
.hero-container {
padding: 60px 20px;
}

.hero-content h1 .line-2,
.hero-content h1 .line-3 {
display: block;
}
}

.integration-mobile {
    padding: 50px 20px;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
    }
    
    .integration-map {
    position: relative;
    min-height: 87vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    padding: 100px 0 0;
    }
    
    .vertical-line {
    position: absolute;
    width: 2px;
    height: 42.4%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.36), #0f0e0e);
    overflow: hidden;
    top: 102px;
    }
    
    .scroll-line {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: #00CCDD; */
    top: -100%;
    }
    
    .integration-nodes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
    }
    
    .node {
    background: #1a1a1a;
    padding: 20px 40px;
    border-radius: 10px;
    }
    
    .integration-services {
    display: flex;
    flex-direction: column;
    gap: 30px;
    }
    
    .service-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    }
    
    /* Update connection lines styles */
    .connection-lines {
    position: absolute;
    width: 100%;
    height: 150px;
    top: 48%;
    left: 0;
    pointer-events: none;
    z-index: 1;
    }
    
    .horizontal-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 76%;
    height: 2px;
    background: rgba(255, 255, 255, 0.36);
    }
    
    .branch-lines {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    }
    
    .branch-line {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.36), #000000);
    transform-origin: top;
    }
    
    @media (min-width: 768px) {
    /* Integration desktop/mobile visibility */
    .integration-mobile {
    display: none !important;
    }
    }
    /* Integration Services Styles */
    .integration-services {
    margin-top: 100px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    }
    
    .service-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    }
    
    .service {
    background: #1a1a1a;
    color: white;
    padding: 5px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    width: 170px;
    align-content: center;
    text-align: center;
    line-height: 1.6;
    }
    
    /* Update integration nodes container */
    .integration-nodes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    }
    
    /* CargoWise Section Styles */
    .cargowise-section {
    position: relative;
    padding: 0 0 60px;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    }
    
    .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    padding: 50px 0;
    }
    
    .globe-animation {
    position: relative;
    width: 120%;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    /* overflow: hidden; */
    z-index: 2;
    top: 100px;
    }
    
    .globe-animation::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #00ccdd;
    transform: scale(0, 0);
    transform-origin: top left;
    }
    
    .globe-animation img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateX(0);
    }
    
    .info-content {
    color: white;
    transform: translateX(50px);
    padding: 60px 120px;
    background-color: #222222;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    /* left: -65px;
                    position: relative; */
    }
    
    .info-content h2 {
    font-size: clamp(28.8px, 2.122vw, 32px);
    margin-bottom: 30px;
    line-height: 1.2;
    }
    
    .info-content p {
    font-size: clamp(14.4px, 1.061vw, 16px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    }
    
    .steps-timeline {
    position: relative;
    }
    
    .steps-timeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(150, 150, 150, 0.36);
    }
    
    .integration-services-section {
    background-color: #000;
    padding: clamp(60px, 6.63vw, 100px) 0;
    color: #fff;
    overflow: hidden;
    }
    
    .section-title {
    font-size: clamp(32.4px, 2.388vw, 36px);
    font-weight: 700;
    text-align: center;
    margin-bottom: clamp(40px, 3.98vw, 60px);
    line-height: 1.2;
    }
    
    .integration-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(16px, 1.33vw, 20px);
    max-width: clamp(1152px, 85%, 1280px);
    margin: 0 auto;
    }
    
    .integration-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    height: 100%;
    text-decoration: none; /* Added for links */
    color: inherit; /* Added for links */
    display: block; /* Added for links */
    }
    
    .integration-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    }
    
    .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    }
    
    .integration-card h3 {
    position: absolute;
    z-index: 2;
    color: white;
    font-size: clamp(12.6px, 0.929vw, 14px);
    font-weight: 600;
    margin: 0;
    top: 28px;
    left: 120px;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 10px;
    }
    
    .arrow-icons {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    }
    
    .full-width-image {
    width: 100%;
    overflow: hidden;
    visibility: hidden; /* Start hidden for GSAP */
    }
    
    .image-container {
    width: 100%;
    }
    
    .image-container img {
    width: 100%;
    height: auto;
    display: block;
    transform: translateY(100px) scale(1.1); /* Initial state for animation */
    opacity: 0;
    }
    
    .steps-section {
    background-color: #000;
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
    }
    
    .steps-container {
    margin: 0 auto;
    padding: 0 40px;
    }
    
    .steps-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
    max-width: clamp(1152px, 85%, 1280px);
    margin: 0 auto;
    }
    
    /* Left Content Styles */
    .content-left {
    padding-right: 40px;
    }
    
    .content-left h2 {
    font-size: clamp(43.2px, 3.183vw, 48px);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
    }
    
    .content-left .highlight {
    color: #00ccdd;
    }
    
    .content-left p {
    font-size: clamp(14.4px, 1.061vw, 16px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    }
    
    .steps-image img {
    width: 100%; /* Adjust width to maintain proper image size */
    height: auto;
    border-radius: 20px;
    }
    
    /* Timeline adjustments */
    .timeline-item {
    position: relative;
    padding-left: 60px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    }
    
    /* Add bottom line using ::before */
    .timeline-item::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: #00ccdd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    color: #000;
    z-index: 1;
    }
    
    /* Add bottom line using ::after */
    .timeline-item::after {
    content: "";
    position: absolute;
    left: 60px;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(150, 150, 150, 0.36);
    }
    
    /* Remove line from last item */
    .timeline-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    }
    
    .timeline-item:last-child::after {
    display: none;
    }
    
    /* Add horizontal connector line as new pseudo-element */
    .timeline-item > span::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 16px;
    width: 15px;
    height: 1px;
    background: rgba(0, 204, 221, 0.3);
    }
    
    .timeline-item h3 {
    font-size: clamp(14.4px, 1.061vw, 16px);
    margin-bottom: 8px;
    color: #fff;
    }
    
    .timeline-item p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    }
    
    .modern-hero-slider {
    background: #000;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    }
    
    .hero-slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    }
    
    .hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    }
    
    .hero-slide.active {
    opacity: 1;
    padding: 0 40px;
    }
    
    .hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: clamp(1152px, 85%, 1280px);
    margin: 0 auto;
    width: 100%;
    }
    
    .hero-slide-text {
    max-width: 600px;
    }
    
    .hero-subtitle {
    color: #00ccdd;
    font-size: clamp(16.2px, 1.194vw, 18px);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    }
    
    .hero-text-line {
    display: block;
    font-size: clamp(57.6px, 4.244vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    opacity: 0;
    transform: translateY(40px);
    }
    
    .modern-hero-slider {
    background: #000;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    }
    
    .hero-slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    }
    
    .hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    }
    
    .hero-slide.active {
    opacity: 1;
    padding: 0 40px;
    }
    
    .hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: clamp(1152px, 85%, 1280px);
    margin: 0 auto;
    width: 100%;
    }
    
    .hero-slide-text {
    max-width: 600px;
    }
    
    .hero-subtitle {
    color: #00ccdd;
    font-size: clamp(16.2px, 1.194vw, 18px);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    }
    
    .hero-text-line {
    display: block;
    font-size: clamp(57.6px, 4.244vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    opacity: 0;
    transform: translateY(40px);
    }
    
    .hero-slide-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(14.4px, 1.061vw, 16px);
    line-height: 1.6;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(20px);
    }
    
    .hero-slide-progress {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 60px;
    opacity: 0;
    }
    
    .hero-progress-number {
    font-size: clamp(21.6px, 1.592vw, 24px);
    font-weight: 600;
    color: #fff;
    }
    
    .hero-progress-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    }
    
    .hero-progress-line {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: #00ccdd;
    animation: heroProgressLine 4s linear;
    }
    
    .hero-slide-count {
    color: rgba(255, 255, 255, 0.5);
    font-size: clamp(21.6px, 1.592vw, 24px);
    }
    
    .hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    }
    
    .hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }
    
    .hero-slide.active .hero-subtitle {
    animation: heroFadeInUp 0.8s forwards 0.2s;
    }
    
    .hero-slide.active .hero-text-line:nth-child(1) {
    animation: heroFadeInUp 0.8s forwards 0.2s;
    }
    
    .hero-slide.active .hero-text-line:nth-child(2) {
    animation: heroFadeInUp 0.8s forwards 0.2s;
    }
    
    .hero-slide.active .hero-slide-text p {
    animation: heroFadeInUp 0.8s forwards 0.2s;
    }
    
    .hero-slide.active .hero-slide-progress {
    animation: heroFadeIn 0.8s forwards 0.2s;
    }
    
    .integration-partners {
    background-color: #000;
    padding: 100px 0 60px;
    color: #fff;
    text-align: center;
    }
    
    .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    }
    
    .integration-partners h2 {
    font-size: clamp(43.2px, 3.183vw, 48px);
    line-height: 1.2;
    margin-bottom: 24px;
    }
    
    .highlight {
    color: #00ccdd;
    }
    
    .integration-partners p {
    max-width: 850px;
    margin: 0 auto 60px;
    font-size: clamp(16.2px, 1.194vw, 18px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    }
    
    .partners-image {
    margin-bottom: 40px;
    }
    
    .partners-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    }
    
    .view-more {
    display: inline-block;
    color: #fff;
    text-decoration: underline;
    font-size: clamp(16.2px, 1.194vw, 18px);
    font-weight: 500;
    }
    
    .faq-section {
    background-color: #000;
    padding: 30px 0 20px;
    color: #fff;
    }
    
    .faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    }
    
    .faq-header {
    text-align: center;
    margin-bottom: 60px;
    }
    
    .faq-label {
    display: inline-block;
    color: #00ccdd;
    font-size: clamp(16.2px, 1.194vw, 18px);
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    }
    
    .faq-title {
    font-size: clamp(37.8px, 2.785vw, 42px);
    color: #fff;
    font-weight: 700;
    }
    
    .faq-item {
    border: 2px solid rgba(0, 204, 221, 0.2);
    padding: 0 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    }
    
    .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    background: none;
    border: none;
    color: #fff;
    font-size: clamp(16.2px, 1.194vw, 18px);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    }
    
    .faq-icon {
    transition: transform 0.3s ease;
    color: #00ccdd;
    }
    
    .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(14.4px, 1.061vw, 16px);
    line-height: 1.8;
    font-weight: 400;
    }
    
    .consultation-section {
    background-color: #000;
    color: #fff;
    }
    
    .consultation-container {
    padding: 40px 40px;
    
    margin: 0 auto;
    }
    
    .consultation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: clamp(1152px, 85%, 1280px);
    gap: 60px;
    align-items: center;
    margin: 0 auto;
    }
    
    .consultation-image {
    position: relative;
    }
    
    .consultation-image img {
    width: 100%;
    height: auto;
    display: block;
    }
    
    .consultation-content {
    padding-left: 60px;
    }
    
    .consultation-title {
    font-size: clamp(28.8px, 2.122vw, 32px);
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    }
    
    .consultation-title .highlight {
    color: #00ccdd;
    font-style: italic;
    }
    
    .consultation-description {
    font-size: clamp(16.2px, 1.194vw, 18px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    }
    
    .consultation-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    }
    
    .feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: clamp(16.2px, 1.194vw, 18px);
    }
    
    .feature-icon {
    flex-shrink: 0;
    }
    
    .book-call-btn {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: clamp(16.2px, 1.194vw, 18px);
    font-weight: 500;
    position: relative;
    }
    
    .book-call-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: transform 0.3s ease;
    transform-origin: right;
    }
    
    html {
    overflow-x: hidden;
    width: 100%;
    }
    
    .integration-mobile-container {
    max-width: 400px;
    margin: 0 auto;
    }
    
    .integration-mobile-header {
    text-align: center;
    margin-bottom: 40px;
    }
    
    .mobile-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    }
    
    .mobile-logo img,
    .mobile-logo svg {
    height: 35px;
    width: auto;
    filter: brightness(1.2);
    }
    
    .mobile-logo .connector {
    width: 30px;
    height: 2px;
    background: rgba(0, 204, 221, 0.5);
    }
    
    .integration-mobile-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    }
    
    .integration-mobile-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.5;
    }
    
    .integration-cards {
    display: grid;
    gap: 12px;
    }
    
    .integration-card-mobile {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    color: #ffffff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    }
    
    .integration-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 204, 221, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    }
    
    .integration-icon svg {
    width: 24px;
    height: 24px;
    color: #00ccdd;
    }
    
    .integration-content {
    flex: 1;
    }
    
    .integration-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    }
    
    .integration-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    }
    
    /* Show mobile version on mobile screens */
    @media (max-width: 768px) {
    .integration-card h3 {
    left: unset;
    transform: unset;
    }
    .integration-map {
    display: none !important;
    }
    }
    html {
    overflow-x: hidden;
    width: 100%;
    }
    
    @media (max-width: 768px) {
    .hero-section::before,
    .hero-section::after {
    background: none; /* Remove backgrounds on mobile */
    }
    }
    
    @media (max-width: 768px) {
    .hero-description,
    .animate-text span,
    .hero-slide.active .hero-subtitle,
    .hero-slide.active .hero-text-line,
    .hero-slide.active .hero-slide-text p,
    .hero-slide.active .hero-slide-progress {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    }
    }
    
    @media (max-width: 1200px) {
    h1.animate-text {
    font-size: clamp(46.8px, 3.449vw, 52px);
    line-height: 1.2;
    }
    }
    
    @media (max-width: 991px) {
    h1.animate-text {
    font-size: clamp(37.8px, 2.785vw, 42px);
    line-height: 1.2;
    }
    
    .hero-text-line {
    font-size: clamp(43.2px, 3.183vw, 48px);
    }
    }
    
    @media (max-width: 767px) {
    h1.animate-text {
    font-size: clamp(28.8px, 2.122vw, 32px);
    line-height: 1.3;
    }
    
    .hero-text-line {
    font-size: clamp(32.4px, 2.388vw, 36px);
    }
    }
    
    @media (max-width: 480px) {
    h1.animate-text {
    font-size: clamp(25.2px, 1.857vw, 28px);
    line-height: 1.3;
    }
    }
    
    @media (max-width: 768px) {
    .integration-map {
    display: none !important;
    }
    
    .integration-mobile {
    display: block !important;
    }
    }
    
    @media (max-width: 1200px) {
    .integration-grid {
    grid-template-columns: repeat(4, 1fr);
    }
    }
    
    @media (max-width: 992px) {
    .integration-grid {
    grid-template-columns: repeat(3, 1fr);
    }
    }
    
    @media (max-width: 768px) {
    .integration-grid {
    grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
    padding: 0;
    }
    }
    
    @media (max-width: 480px) {
    .integration-grid {
    grid-template-columns: 1fr;
    }
    }
    
    @media (max-width: 1200px) {
    .content-left h2 {
    font-size: clamp(36px, 2.653vw, 40px);
    }
    }
    
    @media (max-width: 992px) {
    .steps-content {
    grid-template-columns: 1fr;
    gap: 60px;
    }
    
    .content-left {
    padding-right: 0;
    }
    
    .steps-timeline {
    padding-left: 0;
    }
    
    .steps-image {
    left: 0;
    width: 100%;
    }
    
    .steps-image img {
    width: 100%;
    }
    }
    
    @media (max-width: 768px) {
    .content-left h2 {
    font-size: clamp(28.8px, 2.122vw, 32px);
    }
    
    .timeline-item {
    padding-left: 45px;
    }
    
    .timeline-item::before {
    width: 28px;
    height: 28px;
    font-size: 11px;
    }
    }
    
    @media (max-width: 992px) {
    .hero-text-line {
    font-size: clamp(43.2px, 3.183vw, 48px);
    }
    }
    
    @media (max-width: 768px) {
    .hero-text-line {
    font-size: clamp(32.4px, 2.388vw, 36px);
    }
    
    .hero-slide-text p {
    font-size: 14px;
    }
    }
    
    @media (max-width: 768px) {
    .integration-partners h2 {
    font-size: clamp(32.4px, 2.388vw, 36px);
    }
    
    .integration-partners p {
    font-size: clamp(14.4px, 1.061vw, 16px);
    }
    }
    
    @media (max-width: 768px) {
    .faq-title {
    font-size: clamp(32.4px, 2.388vw, 36px);
    }
    
    .faq-question {
    font-size: clamp(18px, 1.326vw, 20px);
    padding: 24px 0;
    }
    
    .faq-answer {
    font-size: clamp(14.4px, 1.061vw, 16px);
    }
    }
    
    @media (max-width: 1024px) {
    .consultation-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    }
    
    .consultation-content {
    padding-left: 0;
    }
    
    .consultation-title {
    font-size: clamp(32.4px, 2.388vw, 36px);
    }
    }
    
    @media (max-width: 768px) {
    .consultation-section {
    padding: 60px 0;
    }
    
    .consultation-container {
    padding: 0 20px;
    }
    
    .consultation-title {
    font-size: clamp(28.8px, 2.122vw, 32px);
    }
    
    .consultation-description,
    .feature-item {
    font-size: clamp(14.4px, 1.061vw, 16px);
    }
    }
    
    @media (max-width: 1090px) {
    .integrations-slider,
    .hero-slide,
    .steps-container,
    .consultation-container {
    padding: 16px 40px !important;
    }
    .hero-text-line {
    font-size: clamp(39.6px, 2.918vw, 44px);
    }
    }
    
    @media (max-width: 991px) {
    .cargowise-section {
    padding: 60px 0;
    }
    
    .cargowise-section .container {
    padding: 0 20px;
    }
    
    .content-wrapper,
    .content-wrapper.reverse {
    display: flex;
    flex-direction: column;
    /* Remove the gap */
    gap: 0;
    grid-template-columns: 1fr;
    }
    
    /* Reorder elements to place video at bottom */
    .content-wrapper .info-content,
    .content-wrapper.reverse .info-content {
    order: 1;
    padding: 40px;
    width: 100%;
    transform: none;
    }
    
    .content-wrapper .globe-animation,
    .content-wrapper.reverse .globe-animation,
    .content-wrapper .globe-animation.second-globe {
    order: 2;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    /* Reset any left positioning */
    left: 0 !important;
    }
    
    .info-content h2 {
    font-size: clamp(28.8px, 2.122vw, 32px);
    margin-bottom: 20px;
    }
    
    .info-content p {
    font-size: clamp(14.4px, 1.061vw, 16px);
    }
    }
    
    @media (max-width: 767px) {
    .cargowise-section {
    padding: 40px 0;
    }
    
    .globe-animation {
    max-width: 100%;
    }
    
    .info-content h2 {
    font-size: clamp(25.2px, 1.857vw, 28px);
    }
    
    .info-content p {
    font-size: 15px;
    line-height: 1.5;
    }
    }
    
    @media (max-width: 480px) {
    .cargowise-section .container {
    padding: 0 15px;
    }
    
    .info-content {
    padding: 30px;
    }
    
    .info-content h2 {
    font-size: clamp(21.6px, 1.592vw, 24px);
    }
    
    .info-content p {
    font-size: 14px;
    }
    }

footer {
  padding: 40px 40px;
  background-color: #222222;
  margin-top: 40px;
  }
  
  .footer-content {
      max-width: clamp(1152px, 85%, 1280px);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
  }
  
  .footer-content hr {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      margin: 0;
      border: none;
      border-top: 1px solid #e5e7eb;
      z-index: 2;
  }
  
  .footer-left {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding-right: 20px;
  flex-direction: column;
  }
  
  .footer-left img {
  height: 40px;
  margin-bottom: 10px;
  }
  
  .footer-left span {
      color: #fff;
      font-size: 14px;
      line-height: 1.6;
  }
  
  .footer-right {
      display: flex;
      align-items: flex-end;
      gap: 40px;
      padding-left: 20px;
      flex-direction: column;
  }
  
  .footer-social {
      display: flex;
      gap: 16px;
  }
  
  .footer-social a {
      color: #fff;
      transition: color 0.2s;
  }

  .privacy-link {
      color: #fff;
      text-decoration: none;
      font-size: 14px;
  }

  @media (max-width: 768px) {
      .footer-content {
          flex-direction: column;
          gap: 20px;
          text-align: center;
      }
  
      .footer-left {
          flex-direction: column;
          padding-right: 0;
          align-items: center;
      }
  
      .footer-right {
          flex-direction: column-reverse;
          gap: 20px;
          padding-left: 0;
          align-items: center;
      }
  
      .footer-social {
          justify-content: center;
      }
  
      .footer-content hr {
          display: none;
      }
  }

  /* Disable animations on mobile */
@media (max-width: 768px) {
    @keyframes fadeIn {
    from {
    opacity: 1;
    }
    to {
    opacity: 1;
    }
    }
    }
    
    /* Mobile responsive styles for critical above-fold content */
    
    .video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    }
    
    .video-container {
    position: relative;
    width: 80%;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: #000;
    }
    
    #youtube-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    }
    
    @media (max-width: 1024px) {
    .slider-content {
    grid-template-columns: 1fr;
    gap: 40px;
    height: auto; /* Remove fixed height */
    padding: 40px 0;
    }
    
    .title {
    font-size: 2.5rem;
    margin-bottom: 40px; /* Reduce bottom margin */
    }
    
    .right-column {
    height: 550px; /* Set fixed height for mobile */
    }
    }
    
    @media (max-width: 768px) {
    .integrations-slider {
    padding: 60px 20px;
    }
    
    .title {
    font-size: clamp(28.8px, 2.122vw, 32px);
    }
    }
    
    @media (max-width: 991px) {
    .video-overlay .video-container {
    width: 90%;
    height: auto;
    aspect-ratio: 16/9;
    }
    }
    
    @media (max-width: 767px) {
    .play-button {
    width: 40px;
    height: 40px;
    }
    
    .play-button svg {
    width: 40px;
    height: 40px;
    }
    
    .video-overlay .video-container {
    width: 95%;
    }
    
    .close-video {
    top: -40px;
    right: 0;
    font-size: clamp(27px, 1.99vw, 30px);
    }
    }
    
    /* Hover animations */
    .cta-button:hover {
    background: #00e6f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 204, 221, 0.3);
    }
    
    .cta-button:hover .calendar-icon {
    opacity: 0;
    transform: translateX(10px) rotate(45deg);
    }
    
    .cta-button:hover .arrow-icon {
    opacity: 1;
    transform: translateX(0) rotate(0);
    }
    
    /* Active state */
    .cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 204, 221, 0.2);
    }
    
    /* Animations */
    @keyframes fadeInDown {
    from {
    opacity: 0;
    transform: translateY(-20px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
    }
    
    @keyframes slideInLeft {
    from {
    transform: translateX(-100%);
    }
    to {
    transform: translateX(0);
    }
    }
    
    @keyframes slideInRight {
    from {
    transform: translateX(100%);
    }
    to {
    transform: translateX(0);
    }
    }
    
    @keyframes fadeInUp {
    from {
    opacity: 0;
    transform: translateY(20px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
    }
    
    @keyframes fadeIn {
    from {
    opacity: 0;
    }
    to {
    opacity: 1;
    }
    }
    
    .glare-effect {
    position: absolute;
    top: -200%;
    left: -200%;
    width: 400%;
    height: 400%;
    background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.4) 45%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.4) 55%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: none;
    pointer-events: none;
    z-index: 1;
    }
    
    @keyframes glareSwipe {
    0% {
    transform: translate(-150%, -150%) rotate(45deg);
    }
    100% {
    transform: translate(150%, 150%) rotate(45deg);
    }
    }
    
    @keyframes animate-overlay-right {
    0% {
    transform: scale(0, 0);
    }
    20% {
    transform: scale(0.1, 1);
    }
    50% {
    transform: scale(1, 1);
    }
    100% {
    transform: translateX(101%);
    }
    }
    
    /* Add these new styles */
    .play-button:hover {
    transform: scale(1.1);
    }
    
    .video-overlay.active {
    display: flex;
    }
    
    .close-video {
    position: absolute;
    top: -40px;
    right: -40px;
    background: none;
    border: none;
    color: white;
    font-size: clamp(28.8px, 2.122vw, 32px);
    cursor: pointer;
    padding: 10px;
    }
    
    .close-video:hover {
    color: #00ccdd;
    }
    
    .content-wrapper.reverse {
    grid-template-columns: 1.5fr 1fr;
    }
    
    .content-wrapper.reverse .globe-animation {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    }
    
    .content-wrapper.reverse .info-content {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    transform: translateX(-50px); /* Initial position for animation */
    }
    
    .second-section {
    margin: 50px 0; /* Add space between sections */
    }
    
    /* Update the animation trigger for the second section */
    .second-section .info-content {
    transform: translateX(-50px);
    }
    
    /* Add vertical timeline line */
    
    /* Optional: Remove the default link underline on hover */
    .integration-card:hover {
    text-decoration: none;
    }
    
    /* Hover effect */
    .integration-card:hover img {
    opacity: 0;
    }
    
    .integration-card:hover .card-overlay {
    background-color: rgb(0, 204, 221);
    }
    
    .integration-card:hover .arrow-icons {
    opacity: 1;
    }
    
    /* Responsive design */
    
    /* Animation classes */
    .timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
    }
    
    /* Update media queries for responsive design */
    
    @keyframes heroProgressLine {
    from {
    width: 0;
    }
    to {
    width: 100%;
    }
    }
    
    /* Animation classes */
    
    @keyframes heroFadeInUp {
    from {
    opacity: 0;
    }
    to {
    opacity: 1;
    }
    }
    
    @keyframes heroFadeIn {
    from {
    opacity: 0;
    }
    to {
    opacity: 1;
    }
    }
    
    /* FAQ Section CSS */
    
    .faq-item:hover {
    border-color: rgba(0, 204, 221, 0.4);
    box-shadow: 0 4px 20px rgba(0, 204, 221, 0.1);
    }
    
    .faq-item.active {
    border-color: #00ccdd;
    }
    
    .faq-item.active .faq-icon {
    transform: rotate(180deg);
    }
    
    .faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 25px;
    }
    
    /* Add animation for answer expansion */
    @keyframes slideDown {
    from {
    opacity: 0;
    transform: translateY(-10px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
    }
    
    .faq-item.active .faq-answer {
    animation: slideDown 0.3s ease forwards;
    }
    
    /* Mobile Responsiveness */
    
    .book-call-btn:hover::after {
    transform: scaleX(0);
    transform-origin: left;
    }

/* --- Performance Optimizations --- */
.integration-card,
.timeline-item,
.hero-slide,
.faq-item,
.integration-card-mobile {
    content-visibility: auto;
    contain-intrinsic-size: 280px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero-progress-line {
        animation: none !important;
    }
}
    