/* Custom styles */
:root {
    /* Primary Colors */
    --primary-blue: #00BBE9;
    --primary-navy: #08008A;
    --primary-dark: #0066CC;
    --primary-blue-light: #33c9ed;
    --primary-navy-light: #2a2a9e;
    
    /* Secondary Colors */
    --secondary-teal: #00A896;
    --secondary-purple: #6A4C93;
    --secondary-coral: #FF6B6B;
    --secondary-gold: #FFD166;
    
    /* Accent Colors */
    --accent-green: #06D6A0;
    --accent-orange: #FF9F1C;
    --accent-pink: #FF5A5F;
    --accent-indigo: #4B4E6D;
    
    /* Neutral Colors */
    --neutral-light: #F8F9FA;
    --neutral-gray: #6C757D;
    --neutral-dark: #212529;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-purple) 0%, var(--secondary-teal) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-pink) 100%);
    
    /* Fonts */
    --font-heading: 'Roboto Slab', serif;
    --font-body: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Heading styles */
.text-2xl, .text-3xl, .text-4xl, .text-5xl, .text-6xl, .text-7xl {
    font-family: var(--font-heading);
}

/* Custom animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-in {
    animation: slideIn 1s ease-out;
}

.animate-scale-in {
    animation: scaleIn 1s ease-out;
}

/* Custom hover effects */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-navy);
}

/* Mobile menu transitions */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* Custom focus styles */
.focus-ring {
    outline: none;
    transition: box-shadow 0.2s ease;
}

.focus-ring:focus {
    box-shadow: 0 0 0 3px rgba(0, 187, 233, 0.5);
}

/* Video background styles */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Counter animation */
.counter {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Section transitions */
section {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

/* Button styles */
.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 187, 233, 0.2);
}

.btn-secondary {
    background-color: var(--secondary-teal);
    color: white;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-weight: 500;
}

.btn-secondary:hover {
    background-color: var(--secondary-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 150, 0.2);
}

.btn-accent {
    background-color: var(--accent-orange);
    color: white;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-weight: 500;
}

.btn-accent:hover {
    background-color: var(--accent-pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.2);
}

/* Card styles */
.card {
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 187, 233, 0.1);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 187, 233, 0.15);
}

.card h3 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.card p {
    font-family: var(--font-body);
    font-weight: 400;
}

/* Section backgrounds */
.bg-gradient {
    background: var(--gradient-primary);
}

.bg-gradient-secondary {
    background: var(--gradient-secondary);
}

.bg-gradient-accent {
    background: var(--gradient-accent);
}

/* Text colors */
.text-primary {
    color: var(--primary-blue);
}

.text-secondary {
    color: var(--secondary-teal);
}

.text-accent {
    color: var(--accent-orange);
}

/* Image hover effects */
.img-hover {
    transition: all 0.3s ease;
}

.img-hover:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 187, 233, 0.15);
}

/* Ensure content visibility */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

/* Additional visibility fixes */
.relative {
    position: relative;
    z-index: 1;
}

.absolute {
    position: absolute;
    z-index: 0;
}

/* Navigation styles */
.nav-link {
    color: var(--primary-navy);
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    font-family: var(--font-body);
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-teal);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--secondary-teal);
}

/* Icon styles */
.icon-primary {
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.icon-secondary {
    color: var(--secondary-teal);
}

.icon-accent {
    color: var(--accent-orange);
}

/* News card styles */
.news-card {
    position: relative;
    overflow: hidden;
}

.news-card img {
    transition: transform 0.3s ease;
}

.news-card:hover img {
    transform: scale(1.05);
}

.news-card .date {
    color: var(--primary-blue);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.news-card .title {
    color: var(--primary-navy);
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.news-card .read-more {
    color: var(--primary-blue);
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-card .read-more:hover {
    color: var(--primary-navy);
}

/* Partner logo styles */
.partner-logo {
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.partner-logo:hover {
    filter: hue-rotate(180deg) saturate(1.5);
    opacity: 1;
}

/* Global network section styles */
.network-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.network-feature i {
    color: var(--primary-blue);
    margin-right: 0.5rem;
}

/* Footer styles */
.footer-link {
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

/* Animation delays */
[data-aos-delay="100"] {
    transition-delay: 100ms;
}

[data-aos-delay="200"] {
    transition-delay: 200ms;
}

[data-aos-delay="300"] {
    transition-delay: 300ms;
}

[data-aos-delay="400"] {
    transition-delay: 400ms;
}

.ping {
    position: absolute;
    width: 1rem;
    height: 1rem;
    background-color: #2563eb;
    border-radius: 9999px;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.75;
  }
  @keyframes ping {
    0% {
      transform: scale(1);
      opacity: 0.75;
    }
    75%, 100% {
      transform: scale(2);
      opacity: 0;
    }
  }
  .tooltip {
    position: absolute;
    background: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    font-size: 0.875rem;
    font-weight: 600;
    color: #2563eb;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 20;
  }
  .pin:hover + .tooltip,
  .tooltip:hover {
    opacity: 1;
    pointer-events: auto;
  }

  /* Responsive map container */
  .map-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    /* height: 100vh; */
    max-height: 100vh;
    margin: 0 auto;
    overflow: hidden;
  }

  @media (max-width: 768px) {
    .map-container {
        height: 80vh;
    }
  }

  @media (max-width: 480px) {
    .map-container {
        height: 60vh;
    }
  }

/* Parallax effect */
.parallax {
    transform: translateY(var(--parallax-offset, 0));
    transition: transform 0.1s linear;
}

/* Custom checkbox styles */
.checkbox-custom {
    position: relative;
    padding-left: 2rem;
    cursor: pointer;
    user-select: none;
}

.checkbox-custom input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.25rem;
    width: 1.25rem;
    background-color: white;
    border: 2px solid var(--primary-blue);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-custom:hover input ~ .checkmark {
    border-color: var(--primary-navy);
}

.checkbox-custom input:checked ~ .checkmark {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.checkbox-custom .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-custom input:checked ~ .checkmark:after {
    display: block;
}

/* Service card styles */
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 187, 233, 0.1);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 187, 233, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 187, 233, 0.05) 0%, rgba(8, 0, 138, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 187, 233, 0.15);
    border-color: var(--primary-blue);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card .icon-container {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.service-card:hover .icon-container {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--primary-blue);
}

.service-card:hover .icon-container i {
    color: white;
    transform: scale(1.1);
}

/* Service showcase styles */
.service-showcase-wrapper {
    position: sticky;
    top: 100px;
    height: calc(100vh - 200px);
    max-height: 800px;
    min-height: 600px;
}

.service-showcase {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 187, 233, 0.25);
    transform: perspective(1000px) rotateX(0deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, 
        var(--secondary-purple) 0%, 
        var(--secondary-teal) 100%
    );
    height: 100%;
    width: 100%;
}

.service-showcase:hover {
    transform: perspective(1000px) rotateX(5deg) scale(1.02);
}

.service-showcase img {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-showcase:hover img {
    transform: scale(1.05);
}

.service-showcase .feature-item {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.service-showcase:hover .feature-item {
    transform: translateY(-2px);
}

.service-showcase .bg-white\/10 {
    transition: all 0.3s ease;
}

.service-showcase .bg-white\/10:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.2);
}

.service-showcase .rounded-full {
    transition: all 0.3s ease;
}

.service-showcase .rounded-full:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.2);
}

.service-showcase .btn-secondary {
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-showcase .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Service stats styles */
.service-stat-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    box-shadow: 0 4px 6px rgba(0, 187, 233, 0.1);
}

.service-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 187, 233, 0.05) 0%, rgba(8, 0, 138, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 187, 233, 0.15);
}

.service-stat-card:hover::before {
    opacity: 1;
}

.service-stat-card .counter {
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
    color: var(--secondary-teal);
}

.service-stat-card:hover .counter {
    transform: scale(1.1);
    color: var(--secondary-purple);
}

.service-stat-card .icon-container {
    transition: all 0.4s ease;
}

.service-stat-card:hover .icon-container {
    transform: rotate(360deg);
    background-color: var(--primary-blue);
}

.service-stat-card:hover .icon-container i {
    color: white;
}

/* Animation keyframes */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

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

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

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

/* Apply animations */
.service-card {
    animation: float 6s ease-in-out infinite;
}

.service-stat-card .counter {
    animation: pulse 2s ease-in-out infinite;
}

.service-card[data-aos="fade-right"] {
    animation: slideIn 0.6s ease-out forwards;
}

.service-stat-card[data-aos="fade-up"] {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-showcase-wrapper {
        position: relative;
        top: 0;
        height: auto;
        min-height: 400px;
    }
    
    .service-showcase {
        margin-top: 2rem;
    }
    
    .service-stat-card {
        margin-bottom: 1rem;
    }
    
    .sticky-showcase {
        position: relative;
        top: 0;
        height: auto;
    }
}

/* Sticky positioning for service showcase */
.sticky-showcase {
    position: sticky;
    top: 100px;
    transition: all 0.3s ease;
    height: calc(100vh - 200px);
    max-height: 800px;
}

/* Services section background */
.services-bg {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.services-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 187, 233, 0.1) 0%, rgba(8, 0, 138, 0.1) 100%);
    z-index: 1;
}

.bg-services-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300BBE9' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 60px;
    z-index: 2;
}

/* Footer styles */
footer {
    background: linear-gradient(135deg, 
        var(--neutral-dark) 0%, 
        var(--primary-navy) 100%
    );
}

footer h3, footer h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: white;
}

footer p, footer a {
    font-family: var(--font-body);
    font-weight: 400;
}

footer .text-gray-400 {
    color: #9CA3AF;
}

footer .text-gray-400:hover {
    color: var(--primary-blue);
}

/* Logo styles */
nav img {
    height: 64px;
    width: auto;
    transition: transform 0.3s ease;
}

nav img:hover {
    transform: scale(1.05);
}

footer img {
    height: 80px;
    width: auto;
    filter: none;
    background-color: white;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

footer img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    nav img {
        height: 48px;
    }
    
    footer img {
        height: 60px;
    }
}

/* Sliding Section Styles */
.sliding-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: var(--primary-navy);
}

.slide-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.slide.active {
    transform: translateY(0);
}

.slide.prev {
    transform: translateY(-100%);
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(8, 0, 138, 0.8), rgba(0, 187, 233, 0.6));
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-in-out 0.3s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slide-content {
        padding: 0 1rem;
        text-align: center;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: var(--primary-navy);
}

/* Hero Image Background */
.hero-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(8, 0, 138, 0.85) 0%, 
        rgba(0, 187, 233, 0.75) 100%
    );
    z-index: 2;
}

/* Main Content */
.hero-content {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hero Image
.hero-image {
    position: relative;
    z-index: 3;
    transform: translateY(0);
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
} */

/* Stats Cards */
.stat-card {
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-blue);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 187, 233, 0.2);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator-wrapper {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    text-align: center;
}

.scroll-indicator {
    position: relative;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    margin: 0 auto;
}

.mouse {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

.arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5px;
}

.arrow span {
    width: 6px;
    height: 6px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin: -3px;
    animation: arrow 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: 0.4s;
}

.scroll-text {
    margin-top: 1rem;
    color: white;
    font-size: 0.875rem;
    opacity: 0.7;
    animation: fadeInOut 2s ease-in-out infinite;
}

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

@keyframes scroll {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0;
    }
}

@keyframes arrow {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-image {
        display: none;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
}

/* Brand carousel animation */
@keyframes scroll-infinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-scroll-infinite {
    animation: scroll-infinite 40s linear infinite;
}

/* Brand Gradient Button with Shine Effect */
.btn-gradient {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(90deg, #00BBE9 0%, #08008A 100%);
  color: #fff;
  font-weight: 700;
  font-family: var(--font-body);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(0, 187, 233, 0.10);
  font-size: 1.125rem;
  transition: box-shadow 0.3s, transform 0.3s, background-position 0.5s;
  overflow: hidden;
  z-index: 1;
  background-size: 200% 100%;
  background-position: left;
}
.btn-gradient:hover, .btn-gradient:focus {
  box-shadow: 0 4px 24px 0 rgba(0, 187, 233, 0.18);
  transform: scale(1.05);
  background-position: right;
}
.btn-gradient .shine {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s, transform 0.5s;
  pointer-events: none;
  z-index: 2;
}
.btn-gradient:hover .shine, .btn-gradient:focus .shine {
  opacity: 1;
  transform: translateX(100%);
  animation: shine-move 0.8s forwards;
}
@keyframes shine-move {
  0% { transform: translateX(-100%); opacity: 0.2; }
  50% { opacity: 0.5; }
  100% { transform: translateX(100%); opacity: 0; }
}

/* Brand carousel simple infinite scroll */
.brand-carousel {
    display: flex;
    gap: 3rem;
    animation: brand-scroll 30s linear infinite;
}

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

.animate-brand-scroll {
    animation: brand-scroll 30s linear infinite;
}

.brand-carousel span {
    transition: all 0.3s ease;
    opacity: 0.7;
}

.brand-carousel span:hover {
    opacity: 1;
    color: var(--primary-blue);
    transform: scale(1.1);
}

/* Loader Styles */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.logo {
    position: relative;
    width: 100px;
    height: 100px;
}

.blue {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse 2s infinite;
}

.G {
    width: 40px;
    height: 40px;
    border: 4px solid white;
    border-radius: 50%;
    position: relative;
}

.G::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 4px;
    background: white;
    transform: translate(-50%, -50%);
}

.blue-line {
    position: absolute;
    bottom: -20px;
    width: 100%;
    height: 4px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transform-origin: left;
    animation: lineGrow 2s infinite;
}

.lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
}

.line1, .line2, .line3 {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary-navy);
    opacity: 0;
}

.line1 {
    top: 0;
    animation: lineFade 2s infinite;
}

.line2 {
    top: 50%;
    transform: translateY(-50%);
    animation: lineFade 2s infinite 0.5s;
}

.line3 {
    bottom: 0;
    animation: lineFade 2s infinite 1s;
}

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

@keyframes lineGrow {
    0% { transform: scaleX(0); }
    50% { transform: scaleX(1); }
    100% { transform: scaleX(0); }
}

@keyframes lineFade {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* Navigation Styles */
.nav-link {
    color: var(--primary-navy);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-navy));
    transition: all 0.3s;
    transform: translateX(-50%);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

/* Custom Utility Classes */
.bg-primary {
    background-color: var(--primary-blue);
}

.bg-primary-dark {
    background-color: var(--primary-dark);
}

.text-primary {
    color: var(--primary-blue);
}

.text-primary-dark {
    color: var(--primary-dark);
}

.bg-navy {
    background-color: var(--primary-navy);
}

.text-navy {
    color: var(--primary-navy);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: linear-gradient(90deg, var(--primary-blue), var(--primary-navy));
        color: white;
        border-radius: 0.5rem;
    }
}

/* Professional testimonial carousel styles */
.testimonial-carousel {
    display: flex;
    gap: 2rem;
    animation: testimonial-scroll 80s linear infinite;
    justify-content: center;
}

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

.animate-testimonial-scroll {
    animation: testimonial-scroll 80s linear infinite;
}

.testimonial-item {
    min-width: 380px;
    max-width: 420px;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 32px rgba(0,0,0,0.08);
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    margin: 0 0.5rem;
    text-align: center;
    transition: box-shadow 0.3s;
}

.testimonial-item p {
    color: #1e293b;
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-item .text-base {
    color: #64748b;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1.25rem;
}

/* FAQ Accordion Styles - Enhanced */
.faq-accordion {
  width: 100%;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
.faq-item + .faq-item {
  border-top: 1px solid #e5e7eb;
}
.faq-question {
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  outline: none;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.5rem;
}
.faq-question:focus, .faq-active {
  background: #f1f5f9;
  color: var(--primary-blue);
}
.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s, color 0.2s;
}
.faq-active .faq-icon {
  color: var(--primary-blue);
  transform: rotate(45deg);
}
.faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
  will-change: max-height, opacity;
  padding-top: 0;
  margin-bottom: 0;
}
.faq-answer.open {
  max-height: 300px;
  opacity: 1;
  padding-top: 0.5rem;
  margin-bottom: 1rem;
} 


/* Hide scrollbar for all browsers */
.scrollbar-hide {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  .scrollbar-hide::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  } 


  /* brand carousel */
  .container-type {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    transition: color 0.3s;
    cursor: pointer;
    margin-right: 2.5rem;
  }
  .container-type:last-child {
    margin-right: 0;
  }
  .container-type .container-svg {
    width: 4em;
    height: 2em;
    transition: all 0.3s;
  }
  /* GP Container */
  .container-type.gp .container-svg {
    fill: #00BBE9;
  }
  .container-type.gp:hover {
    color: #00BBE9;
  }
  .container-type.gp:hover .container-svg {
    fill: #00BBE9;
  }
  /* OT Container */
  .container-type.ot .container-svg {
    fill: #08008A;
  }
  .container-type.ot:hover {
    color: #08008A;
  }
  .container-type.ot:hover .container-svg {
    fill: #08008A;
  }
  /* FR Container */
  .container-type.fr .container-svg {
    fill: #F59E42;
  }
  .container-type.fr:hover {
    color: #F59E42;
  }
  .container-type.fr:hover .container-svg {
    fill: #F59E42;
  }

  
      /* Add these styles in your existing <style> tag */
      .testimonial-scroll-container {
        /* overflow: hidden; */
        position: relative;
        width: 100%;
      }
      
      .testimonial-scroll {
        display: flex;
        gap: 2rem;
        animation: scroll 40s linear infinite;
        width: fit-content;
      }
      
      .testimonial-scroll:hover {
        animation-play-state: paused;
      }
      
      @keyframes scroll {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }