* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #a78bfa;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #aad6ff 0%, #15426b 50%, #e7cfa8 100% 100% );
     /*--gradient-1: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
   
   --gradient-1: linear-gradient(135deg, #bda064 0%, #494949 50%, #16436c 100%);*/

    --gradient-2: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --gradient-3: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-4: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.3);
    --shadow-glow-hover: 0 0 50px rgba(99, 102, 241, 0.5);
}

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

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(20px) rotate(-5deg); }
}

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

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.3); }
    50% { box-shadow: 0 0 40px rgba(99, 102, 241, 0.6); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes wave {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(25%) translateY(-10px); }
    50% { transform: translateX(50%) translateY(0); }
    75% { transform: translateX(75%) translateY(-10px); }
}

@keyframes morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: rotate 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-text {
    font-size: 18px;
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

img {
    max-width: 100%;
    height: auto;
}

/* Better touch targets for mobile */
@media (hover: none) and (pointer: coarse) {
    a, button, .slider-dot, .slider-arrow {
        min-height: 44px;
        min-width: 44px;
    }

    .nav-menu a {
        padding: 12px 0;
    }
}

/* Prevent text size adjustment on iOS */
@media screen and (max-width: 768px) {
    input, textarea, select {
        font-size: 16px !important;
    }
}

/* Smooth scrolling for anchor links */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Top Bar */
.top-bar {
    background: var(--dark-bg);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left, .top-bar-right {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--accent-color);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 0 0 1px rgba(99, 102, 241, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-1);
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.4s;
    animation: gradientShift 3s ease infinite;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.12), 0 0 0 1px rgba(99, 102, 241, 0.08);
    border-bottom-color: rgba(99, 102, 241, 0.15);
}

.header.scrolled::before {
    opacity: 1;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
}

.header.scrolled .header-content {
    padding: 12px 30px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: rgba(99, 102, 241, 0.1);
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

.mobile-menu-toggle:hover {
    background: rgba(99, 102, 241, 0.15);
    transform: scale(1.05);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

nav {
    transition: all 0.3s;
}

nav.mobile-hidden {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s;
    z-index: 10;
}

.logo:hover {
    transform: translateX(2px);
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-1);
    background-size: 200% 200%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gradientShift 3s ease infinite;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.logo-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

.logo-text h1 {
    font-size: 22px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2px;
    line-height: 1.2;
}

.logo-text p {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
    justify-content: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 8px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    background-size: 200% 200%;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-menu a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a:hover::after {
    width: calc(100% - 32px);
}

.nav-menu a.active {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.08);
}

.nav-menu a.active::after {
    width: calc(100% - 32px);
}

.nav-menu a .fa-chevron-down {
    font-size: 10px;
    transition: transform 0.3s;
}

.nav-menu li:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 260px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(99, 102, 241, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 12px 0;
    border: 1px solid rgba(99, 102, 241, 0.1);
    overflow: hidden;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.98);
}

.dropdown-menu::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-menu li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.nav-menu li:hover > .dropdown-menu::after {
    opacity: 1;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 14px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
    position: relative;
    margin: 0 8px;
    border-radius: 8px;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-1);
    transform: scaleY(0);
    transition: transform 0.3s;
    border-radius: 0 3px 3px 0;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.05) 100%);
    color: var(--primary-color);
    transform: translateX(4px);
    padding-left: 28px;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.dropdown-menu a i {
    width: 20px;
    text-align: center;
    color: var(--primary-color);
    font-size: 14px;
}

/* Mega Menu for some items */
.mega-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 900px;
    max-width: 90vw;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(99, 102, 241, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 35px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    overflow: hidden;
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
}

.nav-menu li:hover > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.nav-menu li:hover > .mega-menu::before {
    opacity: 1;
}

.mega-menu-column h4 {
    font-size: 17px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(99, 102, 241, 0.1);
    position: relative;
}

.mega-menu-column h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s;
}

.mega-menu-column:hover h4::after {
    width: 50px;
}

.mega-menu-column ul {
    list-style: none;
}

.mega-menu-column ul li {
    margin-bottom: 6px;
}

.mega-menu-column a {
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    position: relative;
}

.mega-menu-column a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-1);
    transform: scaleY(0);
    transition: transform 0.3s;
    border-radius: 0 3px 3px 0;
}

.mega-menu-column a:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.06);
    transform: translateX(4px);
    padding-left: 16px;
}

.mega-menu-column a:hover::before {
    transform: scaleY(1);
}

.mega-menu-column a i {
    width: 18px;
    text-align: center;
    color: var(--primary-color);
    font-size: 12px;
}

.header-cta {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
    margin-left: auto;
}

.btn-primary {
    background: var(--gradient-1);
    background-size: 200% 200%;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease infinite;
    white-space: nowrap;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

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

.contact-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-radius: 25px;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(99, 102, 241, 0.1);
    white-space: nowrap;
}

.contact-badge:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.12) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.2);
}

.contact-badge i {
    color: var(--primary-color);
    font-size: 14px;
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Slider Section - Modern Redesign */
.hero {
    position: relative;
    overflow: visible;
    width: 100%;
    min-height: clamp(600px, 100vh, 900px);
    background: #1a1a2e;
}

.hero-slider {
    position: relative;
    width: 100%;
    min-height: clamp(600px, 100vh, 900px);
    overflow: visible;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: clamp(600px, 100vh, 900px);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1) translateX(100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    padding: clamp(40px, 8vw, 80px) 0;
    overflow: visible;
    box-sizing: border-box;
}

/* Responsive hero slide height for tablets and small desktops */
@media (min-width: 900px) and (max-width: 1200px) {
    .hero {
        min-height: clamp(650px, 100vh, 850px);
        overflow: visible;
    }

    .hero-slider {
        min-height: clamp(650px, 100vh, 850px);
        overflow: visible;
    }

    .hero-slide {
        min-height: clamp(650px, 100vh, 850px);
        padding: clamp(45px, 7.5vw, 75px) 0;
        overflow: visible;
    }
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .hero {
        min-height: clamp(700px, 100vh, 900px);
        overflow: visible;
    }

    .hero-slider {
        min-height: clamp(700px, 100vh, 900px);
        overflow: visible;
    }

    .hero-slide {
        min-height: clamp(700px, 100vh, 900px);
        padding: clamp(50px, 8vw, 80px) 0;
        overflow: visible;
    }
}

@media (min-width: 1400px) {
    .hero {
        min-height: clamp(750px, 100vh, 950px);
        overflow: visible;
    }

    .hero-slider {
        min-height: clamp(750px, 100vh, 950px);
        overflow: visible;
    }

    .hero-slide {
        min-height: clamp(750px, 100vh, 950px);
        overflow: visible;
    }
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transform: scale(1) translateX(0);
    animation: fadeIn 0.8s ease-out;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slide-bg,
.hero-overlay {
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: transform 10s ease-out, filter 0.8s ease-out;
    filter: brightness(0.4);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-slide.active .hero-bg-image {
    transform: scale(1);
    filter: brightness(0.4);
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg-image {
        transition: filter 0.8s ease-out;
    }
    
    .hero-slide.active .hero-bg-image {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.85) 0%,
        rgba(139, 92, 246, 0.75) 50%,
        rgba(236, 72, 153, 0.85) 100%
    );
    z-index: 1;
}

.hero-slide.slide-2 .hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(240, 147, 251, 0.85) 0%,
        rgba(245, 87, 108, 0.75) 50%,
        rgba(255, 107, 107, 0.85) 100%
    );
}

.hero-slide.slide-3 .hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(79, 172, 254, 0.85) 0%,
        rgba(0, 242, 254, 0.75) 50%,
        rgba(6, 182, 212, 0.85) 100%
    );
}

.hero-slide.slide-4 .hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(67, 233, 123, 0.85) 0%,
        rgba(56, 249, 215, 0.75) 50%,
        rgba(16, 185, 129, 0.85) 100%
    );
}

/* Animated Background Pattern */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: backgroundMove 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes backgroundMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.1); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 4vw, 40px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 4vw, 60px);
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: fit-content;
    overflow: visible;
}

/* Responsive adjustments for hero content on different screen sizes */
@media (min-width: 1025px) and (max-width: 1200px) {
    .hero-content {
        gap: clamp(30px, 3.5vw, 50px);
        padding: 0 clamp(20px, 3vw, 35px);
    }
}

@media (min-width: 1400px) {
    .hero-content {
        max-width: 1400px;
        gap: clamp(50px, 4.5vw, 80px);
    }
}

.hero-text {
    color: var(--white);
    animation: slideInLeft 1s ease-out;
    position: relative;
    z-index: 2;
}

.hero-text > * {
    animation: slideInUp 0.8s ease-out backwards;
}

.hero-text > *:nth-child(1) { animation-delay: 0.1s; }
.hero-text > *:nth-child(2) { animation-delay: 0.2s; }
.hero-text > *:nth-child(3) { animation-delay: 0.3s; }
.hero-text > *:nth-child(4) { animation-delay: 0.4s; }
.hero-text > *:nth-child(5) { animation-delay: 0.5s; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: clamp(6px, 1.2vw, 10px) clamp(16px, 3vw, 24px);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: clamp(11px, 1.5vw, 14px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: clamp(12px, 2vw, 20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.6s ease-out 0.2s both, pulse 3s ease-in-out infinite 1s;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.hero-badge i {
    font-size: 16px;
    animation: boltPulse 2s ease-in-out infinite;
}

@keyframes boltPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

.hero-badge:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}

.hero-text h1 {
    font-size: clamp(28px, 5.5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: clamp(16px, 2.5vw, 24px);
    letter-spacing: clamp(-1px, -0.1vw, -1.5px);
    text-shadow: 0 2px 20px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-text h1 .gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.hero-text p {
    font-size: clamp(14px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: clamp(20px, 3vw, 32px);
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(8px, 1.5vw, 16px);
    margin-bottom: clamp(20px, 3vw, 35px);
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

/* Responsive hero features for tablets and small desktops */
@media (min-width: 900px) and (max-width: 1200px) {
    .hero-features {
        gap: clamp(10px, 1.3vw, 14px);
        margin-bottom: clamp(22px, 2.8vw, 32px);
    }
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .hero-features {
        gap: clamp(12px, 1.4vw, 16px);
        margin-bottom: clamp(24px, 3vw, 35px);
    }
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.2vw, 12px);
    padding: clamp(10px, 1.5vw, 14px) clamp(16px, 2.5vw, 24px);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--white);
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 500;
    position: relative;
    overflow: hidden;
    flex: 1 1 auto;
    min-width: clamp(140px, 25vw, 180px);
}

.hero-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.hero-feature-item:hover::before {
    left: 100%;
}

.feature-icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.hero-feature-item:hover .feature-icon-wrapper {
    background: var(--gradient-1);
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.feature-icon-wrapper i {
    font-size: 18px;
    color: var(--white);
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-title {
    font-weight: 600;
    font-size: 15px;
}

.feature-subtitle {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: clamp(10px, 1.5vw, 16px);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    margin-bottom: clamp(20px, 3vw, 35px);
}

/* Responsive hero buttons for tablets and small desktops */
@media (min-width: 900px) and (max-width: 1200px) {
    .hero-buttons {
        gap: clamp(10px, 1.3vw, 14px);
        margin-bottom: clamp(22px, 2.8vw, 32px);
    }
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .hero-buttons {
        gap: clamp(12px, 1.4vw, 16px);
        margin-bottom: clamp(24px, 3vw, 35px);
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary i,
.btn-secondary i {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary:hover i,
.btn-secondary:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-secondary:hover::before {
    left: 100%;
}

.hero-image {
    position: relative;
    animation: slideInRight 1s ease-out 0.4s both;
    transform-style: preserve-3d;
    width: 100%;
    height: 100%;
    overflow: visible;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px) perspective(1000px) rotateY(-10deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) perspective(1000px) rotateY(0deg);
    }
}

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

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.hero-stat-item {
    text-align: left;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hero-image-main {
    width: 100%;
    height: clamp(300px, 50vh, 500px);
    min-height: clamp(250px, 40vh, 400px);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: clamp(20px, 3vw, 30px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

/* Responsive hero image sizing for tablets and small desktops */
@media (min-width: 900px) and (max-width: 1200px) {
    .hero-image-main {
        height: clamp(350px, 48vh, 480px);
        min-height: clamp(300px, 42vh, 420px);
    }
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .hero-image-main {
        height: clamp(400px, 52vh, 550px);
        min-height: clamp(350px, 45vh, 480px);
    }
}

@media (min-width: 1400px) {
    .hero-image-main {
        height: clamp(450px, 55vh, 600px);
        min-height: clamp(400px, 50vh, 550px);
    }
}

.hero-image-main.broadband-visualization {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 50%, rgba(59, 130, 246, 0.15) 100%);
    border: 2px solid rgba(99, 102, 241, 0.3);
}

/* Network Background */
.network-background {
    position: absolute;
    inset: 0;
    opacity: 0.6;
}

.network-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(99, 102, 241, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
    animation: nodePulse 2s ease-in-out infinite;
}

.network-node.center-node {
    width: 20px;
    height: 20px;
    background: rgba(139, 92, 246, 1);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
}

@keyframes nodePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

/* Speed Indicator */
.speed-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.speed-gauge {
    width: 120px;
    height: 120px;
    position: relative;
}

.gauge-ring {
    width: 100%;
    height: 100%;
    position: relative;
}

.gauge-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.gauge-background {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.gauge-fill {
    fill: none;
    stroke: url(#gaugeGradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 565.48;
    stroke-dashoffset: 282.74;
    animation: gaugeFill 2s ease-out forwards;
    transform-origin: center;
}

@keyframes gaugeFill {
    from {
        stroke-dashoffset: 565.48;
    }
    to {
        stroke-dashoffset: 282.74;
    }
}

.gauge-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.gauge-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 2px;
}

.gauge-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

/* WiFi Icon */
.wifi-icon-wrapper {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.wifi-icon-wrapper i {
    font-size: 60px;
    color: rgba(99, 102, 241, 0.9);
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.6));
    animation: wifiPulse 2s ease-in-out infinite;
}

@keyframes wifiPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.wifi-pulse {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(99, 102, 241, 0.5);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Data Streams */
.data-streams {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
}

.data-stream {
    position: absolute;
    width: 3px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.8), transparent);
    animation: dataFlow 2s linear infinite;
    border-radius: 2px;
}

@keyframes dataFlow {
    0% {
        bottom: -60px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 100%;
        opacity: 0;
    }
}

/* Mobile Visualization */
.hero-image-main.mobile-visualization {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(99, 102, 241, 0.2) 50%, rgba(167, 139, 250, 0.2) 100%);
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.mobile-background {
    position: absolute;
    inset: 0;
    opacity: 0.7;
}

.signal-wave {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(139, 92, 246, 0.6);
    border-radius: 50%;
    animation: signalPulse 2s ease-out infinite;
}

@keyframes signalPulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.mobile-device {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 350px;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    border-radius: 30px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 0 0 3px rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.screen-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.app-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(99, 102, 241, 0.3) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: appBounce 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

@keyframes appBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

.app-icon i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.network-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.signal-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
}

.signal-bar {
    width: 4px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.8) 0%, rgba(99, 102, 241, 0.8) 100%);
    border-radius: 2px;
    animation: signalBarPulse 1.5s ease-in-out infinite;
}

@keyframes signalBarPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.network-text {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-icon-wrapper {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.mobile-icon-wrapper i {
    font-size: 60px;
    color: rgba(139, 92, 246, 0.9);
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6));
    animation: mobilePulse 2s ease-in-out infinite;
}

@keyframes mobilePulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.9; }
    50% { transform: scale(1.1) rotate(5deg); opacity: 1; }
}

.mobile-pulse {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

.data-particles {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(139, 92, 246, 1) 0%, transparent 70%);
    border-radius: 50%;
    animation: particleFloat 3s linear infinite;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.8);
}

@keyframes particleFloat {
    0% { bottom: -10px; opacity: 0; transform: scale(0); }
    10% { opacity: 1; transform: scale(1); }
    90% { opacity: 1; }
    100% { bottom: 100%; opacity: 0; transform: scale(0.5); }
}

.floating-card.sim-card {
    top: clamp(15px, 2vw, 25px);
    right: clamp(15px, 2vw, 25px);
    animation-delay: 0s;
}

.floating-card.whatsapp-card {
    bottom: clamp(15px, 2vw, 25px);
    left: clamp(15px, 2vw, 25px);
    animation-delay: 2s;
}

.floating-card.data-card {
    top: 50%;
    left: clamp(15px, 2vw, 25px);
    transform: translateY(-50%);
    animation-delay: 1s;
}

.hero-image:hover .hero-image-main {
    transform: perspective(1000px) rotateY(5deg) rotateX(5deg) scale(1.02);
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.4);
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-image:hover .hero-main-image {
    transform: scale(1.1);
}

@media (prefers-reduced-motion: reduce) {
    .hero-main-image {
        transition: none;
    }
    
    .hero-image:hover .hero-main-image {
        transform: none;
    }
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.2) 0%,
        rgba(139, 92, 246, 0.1) 50%,
        rgba(236, 72, 153, 0.2) 100%
    );
    border-radius: 30px;
    pointer-events: none;
    z-index: 1;
}

.hero-image-main::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.03) 20px,
        rgba(255,255,255,0.03) 40px
    );
    animation: slide 30s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes slide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: clamp(12px, 2vw, 20px) clamp(16px, 2.5vw, 28px);
    border-radius: clamp(14px, 2vw, 20px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: float 4s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 3;
    overflow: hidden;
}

.floating-card.speed-card {
    top: clamp(15px, 2vw, 25px);
    right: clamp(15px, 2vw, 25px);
    animation-delay: 0s;
    animation-name: float;
}

.floating-card.security-card {
    bottom: clamp(15px, 2vw, 25px);
    left: clamp(15px, 2vw, 25px);
    animation-delay: 2s;
    animation-name: floatReverse;
}

.floating-card.reliability-card {
    top: 50%;
    right: clamp(15px, 2vw, 25px);
    transform: translateY(-50%);
    animation-delay: 1s;
    animation-name: float;
}

.floating-card:hover {
    transform: scale(1.15) translateY(-8px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.5);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(99, 102, 241, 0.5);
}

.card-pulse {
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: var(--gradient-1);
    opacity: 0;
    z-index: -1;
    animation: cardPulse 2s ease-in-out infinite;
}

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

.floating-card i {
    font-size: clamp(20px, 2.5vw, 32px);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: clamp(6px, 1vw, 10px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-card:hover i {
    transform: scale(1.2) rotate(10deg);
}

.floating-card p {
    font-size: clamp(10px, 1.3vw, 13px);
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
    line-height: 1.4;
}

/* Slider Controls - Modern Design */
.slider-controls {
    position: absolute;
    bottom: clamp(20px, 3vw, 40px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: all;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.slider-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.3);
}

.slider-dot:hover::before {
    width: 20px;
    height: 20px;
}

.slider-dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 15px;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.slider-dot.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    animation: progressBar 5s linear;
}

@keyframes progressBar {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    max-width: 1400px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 clamp(20px, 3vw, 40px);
    z-index: 20;
    pointer-events: none;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: all;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.slider-arrow i {
    color: var(--white);
    font-size: 18px;
}

/* Desktop Hero Height Fix - Ensure content is fully visible */
@media (min-width: 769px) {
    .hero {
        min-height: clamp(650px, 100vh, 950px);
        overflow: visible;
    }

    .hero-slider {
        min-height: clamp(650px, 100vh, 950px);
        overflow: visible;
    }

    .hero-slide {
        min-height: clamp(650px, 100vh, 950px);
        overflow: visible;
    }

    .hero-content {
        overflow: visible;
    }
}

/* Hero Section Variants */
.hero-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section.hero-it {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
}

.hero-section.hero-telecom {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
    position: relative;
    overflow: hidden;
}

.hero-section.hero-telecom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(167, 139, 250, 0.15) 0%, transparent 60%);
    animation: morph 20s ease-in-out infinite;
    pointer-events: none;
}

.hero-section.hero-telecom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 92, 246, 0.05) 2px, rgba(139, 92, 246, 0.05) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(99, 102, 241, 0.05) 2px, rgba(99, 102, 241, 0.05) 4px);
    pointer-events: none;
    opacity: 0.5;
}

.hero-section.hero-security {
    background: linear-gradient(135deg, #f0fff4 0%, #e6ffe6 100%);
}

.hero-section.hero-broadband {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.hero-section.hero-broadband::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    animation: morph 20s ease-in-out infinite;
    pointer-events: none;
}

.hero-section.hero-broadband::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(99, 102, 241, 0.03) 2px, rgba(99, 102, 241, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(139, 92, 246, 0.03) 2px, rgba(139, 92, 246, 0.03) 4px);
    pointer-events: none;
    opacity: 0.5;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: morph 20s ease-in-out infinite;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out forwards;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
}

.section-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
    transition: left 0.6s ease;
}

.section-header:hover .section-tag {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.2);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
}

.section-header:hover .section-tag::before {
    left: 100%;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    animation: fadeIn 0.8s ease-out 0.2s both;
    line-height: 1.2;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.section-header p {
    font-size: 19px;
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out 0.4s both;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 28px;
    padding: 40px 35px;
    border: 2px solid rgba(226, 232, 240, 0.8);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: slideInUpScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

@keyframes slideInUpScale {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.1s; }
.service-card:nth-child(6) { animation-delay: 0.2s; }
.service-card:nth-child(7) { animation-delay: 0.3s; }
.service-card:nth-child(8) { animation-delay: 0.4s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-1);
    background-size: 200% 200%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.08) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    border-radius: 50%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 
        0 25px 60px rgba(99, 102, 241, 0.25),
        0 8px 20px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}

.service-card:hover::before {
    transform: scaleX(1);
    animation: gradientShift 3s ease infinite;
}

.service-card:hover::after {
    opacity: 1;
    animation: pulse 3s ease-in-out infinite;
}

.service-icon-wrapper {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 12px rgba(99, 102, 241, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.service-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient-1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s;
}

.service-card:hover .service-icon-wrapper {
    background: var(--gradient-1);
    background-size: 200% 200%;
    transform: rotate(8deg) scale(1.15) translateY(-4px);
    box-shadow: 
        0 12px 35px rgba(99, 102, 241, 0.4),
        0 4px 12px rgba(99, 102, 241, 0.2),
        0 0 0 3px rgba(99, 102, 241, 0.1);
    animation: gradientShift 3s ease infinite, float 3s ease-in-out infinite;
}

.service-card:hover .service-icon-wrapper::before {
    animation: shimmer 2s infinite;
    opacity: 1;
}

.service-card:hover .service-icon-wrapper::after {
    opacity: 1;
}

.service-icon-wrapper i {
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon-wrapper i {
    color: var(--white);
    transform: scale(1.1) rotate(-12deg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.service-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    transition: all 0.4s ease;
    position: relative;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.service-card:hover h3 {
    color: var(--primary-color);
    transform: translateX(5px);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 14px;
    transition: color 0.4s ease;
    flex-grow: 1;
}

.service-card:hover p {
    color: var(--text-dark);
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    padding: 8px 0;
    font-size: 14px;
    margin-top: auto;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-link i {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-link:hover {
    gap: 15px;
    color: var(--secondary-color);
}

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

.service-link:hover i {
    transform: translateX(5px) scale(1.2);
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    animation: morph 20s ease-in-out infinite;
    pointer-events: none;
}

.stats::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.04"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 45px 35px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: slideInUpScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.stat-card:nth-child(1) { 
    animation-delay: 0.1s; 
}
.stat-card:nth-child(2) { 
    animation-delay: 0.2s; 
}
.stat-card:nth-child(3) { 
    animation-delay: 0.3s; 
}
.stat-card:nth-child(4) { 
    animation-delay: 0.4s; 
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
    background-size: 200% 200%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.15) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-15px) scale(1.03) rotateY(2deg);
    box-shadow: 
        0 25px 60px rgba(99, 102, 241, 0.4),
        0 0 0 1px rgba(99, 102, 241, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(99, 102, 241, 0.4);
}

.stat-card:hover::before {
    transform: scaleX(1);
    animation: gradientShift 3s ease infinite;
}

.stat-card:hover::after {
    opacity: 1;
    animation: pulse 3s ease-in-out infinite;
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
}

.stat-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient-1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s;
}

.stat-card:hover .stat-icon-wrapper {
    background: var(--gradient-1);
    background-size: 200% 200%;
    transform: rotate(12deg) scale(1.15) translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(99, 102, 241, 0.5),
        0 0 0 4px rgba(99, 102, 241, 0.1);
    animation: gradientShift 3s ease infinite, float 3s ease-in-out infinite;
}

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

.stat-icon-wrapper i {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.stat-card:hover .stat-icon-wrapper i {
    color: var(--white);
    transform: scale(1.1) rotate(-12deg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.stat-number {
    font-size: 64px;
    font-weight: 900;
    background: var(--gradient-1);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    animation: gradientShift 3s ease infinite;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    line-height: 1;
    letter-spacing: -2px;
}

.stat-card:hover .stat-number {
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5));
}

.stat-number1 {
    font-size: 64px;
    font-weight: 900;
    background: var(--gradient-1);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    animation: gradientShift 3s ease infinite;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    line-height: 1;
    letter-spacing: -2px;
}

.stat-card:hover .stat-number1 {
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5));
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.4s ease;
}

.stat-card:hover .stat-label {
    color: var(--white);
}

/* Partners Section */
.partners-section {
    padding: 50px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.partners-header {
    text-align: center;
    margin-bottom: 30px;
}

.partners-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partners-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.partner-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 10px 20px;
    transition: all 0.3s ease;
   
}



.partner-item img {
    max-width: 120px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    
    transition: all 0.3s ease;
}



/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: morph 20s ease-in-out infinite;
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 1;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-carousel-track {
    display: flex;
    gap: 30px;
    animation: scrollTestimonials 25s linear infinite;
    will-change: transform;
}

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

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

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 0;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-card {
    background: var(--white);
    padding: 45px 40px;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(99, 102, 241, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 120px;
    font-family: Georgia, serif;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    line-height: 1;
    opacity: 0.08;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 0;
    background: var(--gradient-1);
    background-size: 200% 200%;
    transition: height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 0 0 3px 3px;
}

.testimonial-card.active:hover {
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.2);
}

.testimonial-card:hover::before {
    opacity: 0.15;
    transform: scale(1.1) translateY(-5px);
    animation: gradientShift 3s ease infinite;
}

.testimonial-card:hover::after {
    height: 100%;
    animation: gradientShift 3s ease infinite;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 22px;
    display: flex;
    gap: 2px;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.testimonial-stars::before {
    content: '★★★★★';
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(255, 193, 7, 0.2);
    z-index: -1;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.quote-icon i {
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-card:hover .testimonial-stars {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(255, 193, 7, 0.4));
}

.testimonial-card:hover .quote-icon {
    background: var(--gradient-1);
    background-size: 200% 200%;
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
    animation: gradientShift 3s ease infinite;
}

.testimonial-card:hover .quote-icon i {
    color: var(--white);
    transform: rotate(-15deg);
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 17px;
    line-height: 1.85;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-weight: 400;
    transition: color 0.4s ease;
}

.testimonial-card:hover .testimonial-text {
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 1;
    padding-top: 20px;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.author-avatar::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: var(--gradient-1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
    animation: gradientShift 3s ease infinite;
}

.testimonial-card:hover .author-avatar::before {
    opacity: 1;
}

.author-info {
    flex: 1;
}

.author-info h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    transition: color 0.4s ease;
}

.testimonial-card:hover .author-info h4 {
    color: var(--primary-color);
}

.author-info p {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

/* Companies Rely On IDSL Section */
.companies-rely-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.companies-rely-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: morph 20s ease-in-out infinite;
}

/* Companies Logo Carousel */
.companies-logo-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto 60px;
    z-index: 1;
    overflow: hidden;
    padding: 30px 0;
}

.companies-logo-carousel-track {
    display: flex;
    gap: 50px;
    animation: scrollCompanyLogos 30s linear infinite;
    will-change: transform;
}

.companies-logo-carousel-track:hover {
    animation-play-state: paused;
}

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

.company-logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 15px 30px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
   
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.company-logo-item:hover {
    opacity: 1;
    transform: scale(1.15) translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.company-logo-item img {
    max-width: 150px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    
    transition: all 0.4s ease;
}



.companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.company-step {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(99, 102, 241, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.company-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.6s ease;
}

.company-step:hover::before {
    left: 100%;
}

.company-step:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.2);
}

.step-number {
    font-size: 72px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1;
    display: block;
    transition: all 0.4s ease;
    position: relative;
}

.company-step:hover .step-number {
    transform: scale(1.1);
}

.company-step h4 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.4;
}

.company-step h4 strong {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-step p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 140px 0;
    background: var(--gradient-1);
    background-size: 200% 200%;
    position: relative;
    overflow: hidden;
    animation: gradientShift 5s ease infinite;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 5s ease-in-out infinite 1s;
}

.cta-section .particle-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: ctaParticleFloat 8s linear infinite;
}

@keyframes ctaParticleFloat {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

.cta-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: slideInUpScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
    max-width: 900px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-badge:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.cta-badge i {
    font-size: 16px;
    animation: boltPulse 2s ease-in-out infinite;
}

.cta-content h2 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -2px;
    animation: fadeIn 1s ease-out 0.5s both;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.cta-content h2 .highlight-text {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.cta-content p {
    font-size: clamp(18px, 2.5vw, 22px);
    margin-bottom: 50px;
    opacity: 0.95;
    animation: fadeIn 1s ease-out 0.7s both;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.btn-white::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-white::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    padding: 2px;
    background: var(--gradient-1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
}

.btn-white i {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-white:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: rgba(99, 102, 241, 0.3);
}

.btn-white:hover::before {
    width: 400px;
    height: 400px;
}

.btn-white:hover::after {
    opacity: 1;
}

.btn-white:hover i {
    transform: translateX(5px) scale(1.2);
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn-outline-white::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
}

.btn-outline-white i {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover::before {
    left: 100%;
}

.btn-outline-white:hover::after {
    opacity: 1;
}

.btn-outline-white:hover i {
    transform: translateX(5px) scale(1.2);
}

/* Footer */
.footer {
    /*background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);*/
    background: linear-gradient(180deg, #f2f6ff 0%, #273143 50%, #0f172a 100%);
    color: var(--white);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    position: relative;
}

.footer-brand h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 25px;
    background: var(--gradient-1);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    letter-spacing: -1px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
    line-height: 1.9;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    padding: 2px;
    background: var(--gradient-1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
}

.social-links a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}

.social-links a:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(-8px) scale(1.15) rotate(5deg);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    color: var(--white);
    border-color: rgba(99, 102, 241, 0.5);
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover::after {
    width: 100%;
    height: 100%;
}

.social-links a i {
    font-size: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-links a:hover i {
    transform: scale(1.2) rotate(-5deg);
}

.footer-section {
    position: relative;
}

.footer-section h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 14px;
    opacity: 0;
    transform: translateX(-10px);
    animation: slideInLeft 0.6s ease-out forwards;
}

.footer-section ul li:nth-child(1) { animation-delay: 0.1s; }
.footer-section ul li:nth-child(2) { animation-delay: 0.2s; }
.footer-section ul li:nth-child(3) { animation-delay: 0.3s; }
.footer-section ul li:nth-child(4) { animation-delay: 0.4s; }
.footer-section ul li:nth-child(5) { animation-delay: 0.5s; }
.footer-section ul li:nth-child(6) { animation-delay: 0.6s; }

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    position: relative;
}

.footer-section a i {
    font-size: 12px;
    color: rgba(99, 102, 241, 0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-section a:hover {
    color: var(--white);
    gap: 15px;
    transform: translateX(5px);
}

.footer-section a:hover i {
    color: var(--primary-color);
    transform: translateX(3px) scale(1.2);
}

.footer-section a:hover::before {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 35px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--gradient-1);
}

.footer-bottom p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    margin: 0 5px;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Responsive - Fluid Typography and Spacing */
html {
    font-size: 16px;
}

@media (max-width: 1400px) {
    .container,
    .hero-content,
    .header-content,
    .top-bar-content {
        max-width: 100%;
        padding: 0 25px;
    }
}

/* Large Desktop Optimization (1400px - 1920px) */
@media (min-width: 1400px) and (max-width: 1920px) {
    .hero-content {
        max-width: 1400px;
        gap: clamp(40px, 4vw, 80px);
        padding: 0 clamp(30px, 4vw, 60px);
    }

    .hero-text h1 {
        font-size: clamp(40px, 4.5vw, 45px);
    }

    .hero-text p {
        font-size: clamp(18px, 1.8vw, 22px);
    }

    .hero-image-main {
        height: clamp(450px, 55vh, 600px);
    }

    .hero-feature-item {
        min-width: clamp(160px, 20vw, 200px);
    }
}

/* Medium Desktop Optimization (1200px - 1400px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-content {
        max-width: 1200px;
        gap: clamp(35px, 3.5vw, 60px);
        padding: 0 clamp(25px, 3vw, 50px);
    }

    .hero-text h1 {
        font-size: clamp(30px, 4.5vw, 35px);
    }

    .hero-text p {
        font-size: clamp(17px, 1.7vw, 20px);
    }

    .hero-image-main {
        height: clamp(400px, 50vh, 550px);
    }

    .hero-feature-item {
        min-width: clamp(150px, 18vw, 180px);
        padding: clamp(12px, 1.3vw, 16px) clamp(18px, 2.2vw, 24px);
    }
}

@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }

    .container,
    .hero-content,
    .header-content,
    .top-bar-content {
        padding: 0 20px;
    }

    .hero-content {
        max-width: 100%;
        gap: clamp(30px, 3vw, 50px);
        padding: 0 clamp(20px, 3vw, 40px);
    }

    .hero-text h1 {
        font-size: clamp(32px, 4.5vw, 48px);
    }

    .hero-text p {
        font-size: clamp(16px, 1.8vw, 19px);
    }

    .hero-image-main {
        height: clamp(380px, 48vh, 480px);
    }

    .hero-feature-item {
        min-width: clamp(140px, 22vw, 170px);
        padding: clamp(10px, 1.2vw, 14px) clamp(16px, 2vw, 22px);
    }

    .section-header h2 {
        font-size: clamp(28px, 4vw, 42px);
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .testimonials-carousel-wrapper {
        max-width: 1200px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(33.333% - 20px);
    }

    .partners-list {
        gap: 25px;
    }

    .partner-item {
        height: 55px;
        padding: 8px 15px;
    }

    .partner-item img {
        max-width: 100px;
        max-height: 45px;
    }
}

/* Tablet Landscape Optimization (900px - 1024px) */
@media (min-width: 900px) and (max-width: 1024px) {
    .hero {
        min-height: clamp(650px, 100vh, 850px);
        overflow: visible;
    }

    .hero-slider {
        min-height: clamp(650px, 100vh, 850px);
        overflow: visible;
    }

    .hero-slide {
        min-height: clamp(650px, 100vh, 850px);
        padding: clamp(40px, 7vw, 70px) 0;
        overflow: visible;
    }

    .hero-content {
        grid-template-columns: 1fr 0.9fr;
        gap: clamp(25px, 3vw, 40px);
        padding: 0 clamp(20px, 3vw, 35px);
        align-items: center;
        overflow: visible;
    }

    .hero-text {
        text-align: left;
    }

    .hero-text h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin-bottom: clamp(14px, 2vw, 20px);
    }

    .hero-text p {
        font-size: clamp(15px, 1.9vw, 18px);
        margin-bottom: clamp(18px, 2.5vw, 28px);
    }

    .hero-badge {
        font-size: clamp(11px, 1.4vw, 13px);
        padding: clamp(7px, 1vw, 9px) clamp(14px, 2.2vw, 20px);
        margin-bottom: clamp(10px, 1.5vw, 16px);
    }

    .hero-features {
        gap: clamp(8px, 1.2vw, 12px);
        margin-bottom: clamp(18px, 2.5vw, 30px);
    }

    .hero-feature-item {
        padding: clamp(9px, 1.2vw, 12px) clamp(14px, 2vw, 20px);
        font-size: clamp(11px, 1.4vw, 13px);
        min-width: clamp(120px, 20vw, 150px);
    }

    .hero-image-main {
        height: clamp(350px, 45vh, 450px);
    }

    .hero-buttons {
        gap: clamp(10px, 1.3vw, 14px);
        margin-bottom: clamp(18px, 2.5vw, 30px);
    }

    .floating-card {
        transform: scale(0.85);
    }
}

/* Tablet Portrait and Below (max-width: 1024px) */
/* Tablet Portrait and Below (max-width: 1024px) */
@media (max-width: 1024px) {
    html {
        font-size: 14.5px;
    }

    .hero {
        min-height: auto;
        height: auto;
        overflow: visible;
    }

    .hero-slider {
        min-height: auto;
        height: auto;
        position: relative;
        overflow: visible;
    }

    .hero-slide {
        min-height: auto;
        padding: clamp(30px, 6vw, 60px) 0;
        overflow: visible;
    }

    .hero-slide:not(.active) {
        display: none;
    }

    .hero-slide.active {
        position: relative;
        display: flex;
        overflow: visible;
    }

    .hero-content {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: clamp(30px, 5vw, 50px);
        padding: 0 clamp(20px, 4vw, 30px);
        overflow: visible;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: clamp(26px, 6.5vw, 44px);
    }

    .hero-text p {
        font-size: clamp(15px, 2.2vw, 18px);
    }

    .nav-menu {
        gap: 20px;
    }

    .mega-menu {
        width: 90vw;
        max-width: 700px;
        grid-template-columns: repeat(2, 1fr);
        padding: 25px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonials-carousel-wrapper {
        max-width: 100%;
        padding: 20px 15px;
    }
    
    .testimonials-carousel-track {
        gap: 20px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 10px);
        padding: 35px 30px;
    }
    
    @keyframes scrollTestimonials {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50% - 10px));
        }
    }

    .partners-list {
        gap: 20px;
    }

    .partner-item {
        height: 50px;
        padding: 8px 12px;
    }

    .partner-item img {
        max-width: 90px;
        max-height: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .hero-image-main {
        height: 400px;
    }

    .service-card {
        padding: 30px;
    }

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

    .section-header p {
        font-size: clamp(14px, 2vw, 18px);
    }
}

@media (max-width: 900px) {
    html {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .companies-logo-carousel-wrapper {
        margin-bottom: 50px;
        padding: 25px 0;
    }

    .companies-logo-carousel-track {
        gap: 40px;
    }

    .company-logo-item {
        height: 70px;
        padding: 12px 25px;
    }

    .company-logo-item img {
        max-width: 130px;
        max-height: 50px;
    }

    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .company-step {
        padding: 40px 30px;
    }

    .step-number {
        font-size: 64px;
    }

    .company-step h4 {
        font-size: 24px;
    }

    .testimonials-carousel-wrapper {
        max-width: 100%;
        padding: 20px 10px;
    }
    
    .testimonials-carousel-track {
        gap: 15px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 7.5px);
    }

    .partners-list {
        gap: 15px;
    }

    .partner-item {
        height: 45px;
        padding: 6px 10px;
    }

    .partner-item img {
        max-width: 80px;
        max-height: 35px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    /* Top Bar */
    .top-bar {
        padding: 8px 0;
        font-size: 12px;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 0 15px;
    }

    .top-bar-left,
    .top-bar-right {
        flex-direction: row;
        gap: 15px;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .top-bar-left a,
    .top-bar-right a {
        font-size: 12px;
        white-space: nowrap;
    }

    /* Header */
    .header {
        padding: 10px 0;
    }

    .header.scrolled {
        padding: 8px 0;
    }

    .header-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        padding: 0 15px;
    }

    .logo {
        flex: 1;
        min-width: 0;
        order: 1;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .logo-text h1 {
        font-size: clamp(16px, 4vw, 20px);
    }

    .logo-text p {
        font-size: 11px;
    }

    .mobile-menu-toggle {
        display: flex !important;
        font-size: 22px;
        padding: 10px 12px;
        min-width: 44px;
        min-height: 44px;
        order: 2;
    }

    nav {
        width: 100%;
        order: 3;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        margin-top: 10px;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        border: 1px solid rgba(99, 102, 241, 0.1);
    }

    nav.mobile-active {
        display: block;
        max-height: calc(100vh - 120px);
        transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 10px 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .header-info {
        display: none;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 4px;
        padding: 10px 15px;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(99, 102, 241, 0.08);
    }

    .nav-menu > li:last-child {
        border-bottom: none;
    }

    .nav-menu > li > a {
        padding: 16px 20px;
        width: 100%;
        justify-content: space-between;
        border-radius: 10px;
        margin: 2px 0;
    }

    .nav-menu > li > a:hover {
        background: rgba(99, 102, 241, 0.08);
    }

    .nav-menu > li.active > a {
        background: rgba(99, 102, 241, 0.1);
        color: var(--primary-color);
    }

    .nav-menu > li.active > a .fa-chevron-down {
        transform: rotate(180deg);
    }

    .dropdown-menu,
    .mega-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        border: none;
        margin: 8px 0 0 0;
        padding: 8px 0 8px 20px;
        width: 100%;
        display: none;
        background: rgba(99, 102, 241, 0.03);
        border-radius: 8px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu li.active > .dropdown-menu,
    .nav-menu li.active > .mega-menu {
        display: block !important;
        max-height: calc(100vh - 200px) !important;
        padding: 12px 0 12px 20px !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    /* Keep hover for desktop */
    @media (hover: hover) and (pointer: fine) {
        .nav-menu li:hover > .dropdown-menu,
        .nav-menu li:hover > .mega-menu {
            display: block;
            max-height: calc(100vh - 200px);
            padding: 12px 0 12px 20px;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }
    }

    .mega-menu {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
        max-height: calc(100vh - 200px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mega-menu::before {
        display: none;
    }

    .mega-menu::before {
        display: none;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-menu a {
        padding: 14px 20px;
        min-height: 44px;
        display: flex;
        align-items: center;
        font-size: 14px;
    }

    .dropdown-menu a i {
        font-size: 16px;
        width: 24px;
    }

    .mega-menu-column a {
        padding: 14px 20px;
        min-height: 44px;
    }

    .header-cta {
        width: 100%;
        justify-content: center;
        flex-direction: row;
        gap: 10px;
        order: 2;
        flex-wrap: wrap;
        margin-top: 5px;
    }

    .contact-badge {
        flex: 1;
        min-width: 140px;
        justify-content: center;
        padding: 10px 16px;
        font-size: 12px;
    }

    .btn-primary {
        flex: 1;
        min-width: 120px;
        text-align: center;
        padding: 12px 20px;
        font-size: 13px;
    }

    /* Hero Slider */
    .hero {
        height: auto;
        min-height: auto;
        max-height: none;
        overflow: hidden;
    }

    .hero-slider {
        height: auto;
        min-height: auto;
        overflow: hidden;
    }

    .hero-slide {
        position: relative;
        padding: 60px 0 80px;
        height: auto;
        min-height: auto;
        display: flex;
        align-items: flex-start;
        overflow: visible;
    }

    .hero-slide:not(.active) {
        display: none;
    }

    .hero-slide.active {
        position: relative;
        display: flex;
    }

    .hero-content {
        padding: 0 20px;
        gap: 40px;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }

    .hero-text {
        width: 100%;
        order: 1;
        text-align: center;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 15px;
    }

    .hero-text h1 {
        font-size: clamp(32px, 8vw, 48px);
        margin-bottom: 20px;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-text p {
        font-size: clamp(16px, 3.5vw, 20px);
        margin-bottom: 30px;
        line-height: 1.7;
        word-wrap: break-word;
    }

    .hero-image {
        width: 100%;
        order: 2;
    }

    .hero-image-main {
        height: clamp(300px, 50vh, 400px);
        border-radius: 20px;
    }

    .hero-main-image {
        border-radius: 20px;
    }

    .hero-bg-image {
        filter: brightness(0.3);
    }

    .hero-overlay {
        opacity: 0.9;
    }

    .floating-card {
        display: none;
    }

    .hero-slide::before {
        opacity: 0.3;
    }

    .hero {
        min-height: auto;
        height: auto;
        overflow: hidden;
    }

    .hero-slider {
        min-height: auto;
        height: auto;
        position: relative;
        overflow: hidden;
    }

    .hero-slide {
        min-height: auto;
        padding: clamp(25px, 5vw, 50px) 0;
    }

    .hero-slide:not(.active) {
        display: none;
    }

    .hero-slide.active {
        position: relative;
        display: flex;
    }

    .hero-content {
        min-height: auto;
    }

    .hero-content {
        padding: 0 clamp(15px, 3vw, 25px);
        gap: clamp(25px, 4vw, 40px);
    }

    .hero-text {
        text-align: center;
    }

    .hero-badge {
        font-size: clamp(10px, 1.8vw, 13px);
        padding: clamp(6px, 1vw, 8px) clamp(14px, 2.5vw, 20px);
    }

    .hero-text h1 {
        font-size: clamp(24px, 7vw, 40px);
        margin-bottom: clamp(14px, 2vw, 20px);
    }

    .hero-text p {
        font-size: clamp(14px, 2vw, 17px);
        margin-bottom: clamp(18px, 2.5vw, 26px);
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(10px, 1.5vw, 14px);
        margin-bottom: clamp(18px, 2.5vw, 28px);
        justify-content: center;
    }

    .hero-feature-item {
        padding: clamp(10px, 1.5vw, 14px) clamp(12px, 2vw, 18px);
        font-size: clamp(11px, 1.6vw, 13px);
        min-width: auto;
        flex: 1 1 calc(50% - 8px);
        max-width: 100%;
    }

    .feature-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .feature-icon-wrapper i {
        font-size: 18px;
    }

    .feature-title {
        font-size: 14px;
    }

    .feature-subtitle {
        font-size: 11px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 25px;
    }

    .stat-value {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .speed-indicator {
        top: 10px;
        right: 10px;
    }

    .speed-gauge {
        width: 80px;
        height: 80px;
    }

    .mobile-device {
        width: 150px;
        height: 260px;
        padding: 12px;
    }

    .app-icon {
        width: 35px;
        height: 35px;
    }

    .app-icon i {
        font-size: 18px;
    }

    .mobile-icon-wrapper {
        width: 70px;
        height: 70px;
        bottom: 20px;
        left: 20px;
    }

    .mobile-icon-wrapper i {
        font-size: 45px;
    }

    .signal-wave {
        width: 60px;
        height: 60px;
    }

    .gauge-value {
        font-size: 16px;
    }

    .gauge-label {
        font-size: 9px;
    }

    .wifi-icon-wrapper {
        width: 70px;
        height: 70px;
        bottom: 20px;
        left: 20px;
    }

    .wifi-icon-wrapper i {
        font-size: 45px;
    }

    .network-node {
        width: 8px;
        height: 8px;
    }

    .network-node.center-node {
        width: 12px;
        height: 12px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: clamp(10px, 1.5vw, 14px);
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: clamp(12px, 2vw, 16px) clamp(20px, 3vw, 28px);
        font-size: clamp(14px, 2vw, 16px);
        min-height: clamp(44px, 6vw, 52px);
    }

    .hero-image-main {
        height: clamp(280px, 45vh, 380px);
        border-radius: clamp(16px, 2.5vw, 24px);
    }

    .hero-image {
        order: -1;
        margin-bottom: clamp(20px, 3vw, 30px);
    }

    .floating-card {
        display: none;
    }

    .slider-arrows {
        padding: 0 15px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        max-width: 100%;
        left: 0;
        display: flex;
        justify-content: space-between;
        z-index: 15;
        pointer-events: none;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        position: relative;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 3px 10px rgba(0,0,0,0.15);
        pointer-events: all;
        flex-shrink: 0;
    }

    .slider-controls {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        z-index: 15;
        justify-content: center;
        width: auto;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
        min-width: 10px;
        min-height: 10px;
    }

    .slider-dot.active {
        width: 25px;
    }

    /* Hero Sections */
    .hero-section {
        padding: 60px 0;
    }

    .hero-section .hero-content {
        grid-template-columns: 1fr;
    }

    /* Services */
    .services {
        padding: 60px 0;
    }

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

    .section-tag {
        font-size: 12px;
        padding: 6px 16px;
    }

    .section-header h2 {
        font-size: clamp(26px, 6vw, 32px);
        margin-bottom: 15px;
    }

    .section-header p {
        font-size: clamp(14px, 2.5vw, 16px);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px;
    }

    .service-card h3 {
        font-size: clamp(20px, 4vw, 24px);
    }

    .service-card p {
        font-size: 14px;
    }

    /* Stats */
    .stats {
        padding: 80px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-icon-wrapper {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }

    .stat-icon-wrapper i {
        font-size: 28px;
    }

    .stat-number {
        font-size: 48px;
    }

    .stat-label {
        font-size: 16px;
    }

    /* Testimonials */
    .testimonials {
        padding: 80px 0;
    }

    .testimonials-carousel-wrapper {
        padding: 20px 5px;
    }
    
    .testimonials-carousel-track {
        gap: 15px;
    }
    
    .testimonial-card {
        flex: 0 0 85%;
        padding: 30px 25px;
    }
    
    @keyframes scrollTestimonials {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-85% - 15px));
        }
    }

    .companies-rely-section {
        padding: 80px 0;
    }

    .companies-logo-carousel-wrapper {
        margin-bottom: 40px;
        padding: 20px 0;
    }

    .companies-logo-carousel-track {
        gap: 30px;
    }

    .company-logo-item {
        height: 60px;
        padding: 10px 20px;
    }

    .company-logo-item img {
        max-width: 110px;
        max-height: 45px;
    }

    .companies-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .company-step {
        padding: 40px 30px;
    }

    .step-number {
        font-size: 56px;
        margin-bottom: 20px;
    }

    .company-step h4 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .company-step p {
        font-size: 16px;
    }

    .partners-section {
        padding: 40px 0;
    }

    .partners-header h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .partners-list {
        gap: 15px;
    }

    .partner-item {
        height: 40px;
        padding: 5px 10px;
    }

    .partner-item img {
        max-width: 70px;
        max-height: 30px;
    }

    .testimonial-card {
        padding: 35px 25px;
    }

    .testimonial-header {
        margin-bottom: 20px;
    }

    .quote-icon {
        width: 45px;
        height: 45px;
    }

    .quote-icon i {
        font-size: 18px;
    }

    .author-avatar {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .author-info h4 {
        font-size: 17px;
    }

    /* CTA Section */
    .cta-section {
        padding: 80px 0;
    }

    .cta-badge {
        font-size: 12px;
        padding: 8px 20px;
        margin-bottom: 20px;
    }

    .cta-badge i {
        font-size: 14px;
    }

    .cta-content h2 {
        font-size: clamp(28px, 7vw, 48px);
        margin-bottom: 20px;
    }

    .cta-content p {
        font-size: clamp(16px, 2.5vw, 20px);
        margin-bottom: 40px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-white,
    .btn-outline-white {
        width: 100%;
        padding: 14px 25px;
        font-size: 15px;
        min-height: 48px;
    }

    /* Footer */
    .footer {
        padding: 70px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand h3 {
        font-size: 28px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4 {
        font-size: 19px;
        padding-bottom: 12px;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section ul li {
        animation-delay: 0s !important;
    }

    .social-links {
        justify-content: center;
    }

    .social-links a {
        width: 45px;
        height: 45px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    html {
        font-size: 13.5px;
    }

    .container {
        padding: 0 15px;
    }

    .services-grid {
        gap: 15px;
    }

    .service-card {
        padding: 20px;
    }

    .testimonial-card {
        flex: 0 0 90%;
        padding: 25px 20px;
    }
    
    @keyframes scrollTestimonials {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-90% - 15px));
        }
    }

    .partners-list {
        gap: 12px;
    }

    .partner-item {
        height: 35px;
        padding: 5px 8px;
    }

    .partner-item img {
        max-width: 60px;
        max-height: 25px;
    }

    .hero-section {
        padding: 50px 0;
    }

    .companies-logo-carousel-wrapper {
        margin-bottom: 35px;
        padding: 15px 0;
    }

    .companies-logo-carousel-track {
        gap: 25px;
    }

    .company-logo-item {
        height: 50px;
        padding: 8px 15px;
    }

    .company-logo-item img {
        max-width: 90px;
        max-height: 35px;
    }

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

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }

    .top-bar {
        font-size: 11px;
        padding: 6px 0;
    }

    .top-bar-content {
        gap: 6px;
        padding: 0 10px;
    }

    .top-bar-left a,
    .top-bar-right a {
        font-size: 11px;
        padding: 4px 0;
    }

    .header {
        padding: 10px 0;
    }

    .header-content {
        padding: 0 10px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .logo-text h1 {
        font-size: clamp(14px, 3.5vw, 18px);
    }

    .hero-text h1 {
        font-size: clamp(24px, 8vw, 28px);
    }

    .section-header h2 {
        font-size: clamp(24px, 7vw, 28px);
    }

    .cta-content h2 {
        font-size: clamp(24px, 7vw, 28px);
    }

    /* Hero Slider Mobile */
    .hero {
        min-height: auto;
    }

    .hero-slider {
        min-height: auto;
    }

    .hero-slide {
        padding: 50px 0 70px;
        min-height: auto;
    }

    .hero-bg-image {
        filter: brightness(0.25);
    }

    .hero-overlay {
        opacity: 0.95;
    }

    .hero-content {
        padding: 0 15px;
        gap: 30px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 5px 14px;
    }

    .hero-text h1 {
        font-size: clamp(28px, 9vw, 40px);
    }

    .hero-text p {
        font-size: clamp(15px, 4vw, 18px);
    }

    .hero-image-main {
        height: clamp(250px, 45vh, 350px);
        border-radius: 15px;
    }

    .hero-main-image {
        border-radius: 15px;
    }

    .hero-features {
        gap: 10px;
    }

    .hero-feature-item {
        padding: 10px 16px;
        font-size: 13px;
    }

    .hero-image-main {
        height: clamp(250px, 45vh, 350px);
    }

    .slider-arrows {
        padding: 0 15px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-controls {
        bottom: 15px;
        padding: 6px 12px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .slider-dot.active {
        width: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 35px 25px;
    }

    .stat-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }

    .stat-icon-wrapper i {
        font-size: 26px;
    }

    .stat-number {
        font-size: clamp(40px, 10vw, 56px);
    }

    .stat-label {
        font-size: 15px;
    }

    .stat-number {
        font-size: clamp(32px, 8vw, 40px);
    }

    .container {
        padding: 0 10px;
    }

    .companies-logo-carousel-wrapper {
        margin-bottom: 30px;
        padding: 15px 0;
    }

    .companies-logo-carousel-track {
        gap: 20px;
    }

    .company-logo-item {
        height: 45px;
        padding: 8px 12px;
    }

    .company-logo-item img {
        max-width: 80px;
        max-height: 30px;
    }

    .service-card,
    .testimonial-card {
        padding: 18px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-white,
    .btn-outline-white {
        font-size: 14px;
        padding: 12px 20px;
        min-height: 44px;
    }

    .hero-feature-item {
        font-size: 13px;
    }

    .service-card p,
    .testimonial-text {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    html {
        font-size: 12px;
    }

    .hero {
        min-height: auto;
    }

    .hero-slide {
        padding: 35px 0 50px;
    }

    .hero-content {
        padding: 0 8px;
        gap: 20px;
    }

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

    .hero-image-main {
        height: clamp(180px, 30vh, 250px);
    }

    .hero-image-main i {
        font-size: 80px !important;
    }

    .slider-arrow {
        width: 32px;
        height: 32px;
    }

    .slider-controls {
        bottom: 8px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .container {
        padding: 0 8px;
    }

    .service-card,
    .testimonial-card {
        padding: 15px;
    }
}

/* Responsive hero image icons */
@media (max-width: 1024px) {
    .hero-image-main {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .hero-image-main {
        height: clamp(300px, 50vh, 400px);
        border-radius: clamp(16px, 2.5vw, 24px);
    }

    .hero-image-main i {
        font-size: clamp(70px, 18vw, 120px) !important;
    }

    .hero-features {
        justify-content: center;
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-feature-item {
        flex: 1 1 calc(50% - 8px);
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        height: auto;
        overflow: hidden;
    }

    .hero-slider {
        min-height: auto;
        height: auto;
        position: relative;
        overflow: hidden;
    }

    .hero-slide {
        min-height: auto;
        padding: clamp(20px, 4vw, 40px) 0;
    }

    .hero-slide:not(.active) {
        display: none;
    }

    .hero-slide.active {
        position: relative;
        display: flex;
    }

    .hero-content {
        min-height: auto;
    }

    .hero-content {
        padding: 0 clamp(12px, 2.5vw, 20px);
        gap: clamp(20px, 3.5vw, 35px);
    }

    .hero-image-main {
        height: clamp(250px, 45vh, 350px);
        border-radius: clamp(14px, 2vw, 20px);
    }

    .hero-image-main i {
        font-size: clamp(60px, 15vw, 100px) !important;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: clamp(8px, 1.2vw, 12px);
    }

    .hero-feature-item {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: clamp(8px, 1.2vw, 12px);
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: clamp(12px, 2vw, 14px) clamp(18px, 2.5vw, 24px);
        font-size: clamp(13px, 1.8vw, 15px);
    }
}

@media (max-width: 360px) {
    .hero {
        min-height: auto;
        height: auto;
        overflow: hidden;
    }

    .hero-slider {
        min-height: auto;
        height: auto;
        position: relative;
        overflow: hidden;
    }

    .hero-slide {
        min-height: auto;
        padding: clamp(15px, 3vw, 30px) 0;
    }

    .hero-slide:not(.active) {
        display: none;
    }

    .hero-slide.active {
        position: relative;
        display: flex;
    }

    .hero-content {
        min-height: auto;
    }

    .hero-content {
        padding: 0 12px;
        gap: clamp(15px, 3vw, 25px);
    }

    .hero-image-main {
        height: clamp(200px, 40vh, 300px);
        border-radius: 12px;
    }

    .hero-image-main i {
        font-size: clamp(50px, 12vw, 80px) !important;
    }

    .hero-text h1 {
        font-size: clamp(20px, 6vw, 32px);
    }

    .hero-text p {
        font-size: clamp(13px, 1.8vw, 15px);
    }

    .hero-badge {
        font-size: 10px;
        padding: 6px 12px;
    }
}