* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #202af5;
    --primary-purple: #3a006c;
    --primary-dark: #190558;
    --gradient-primary: linear-gradient(135deg, #202af5 0%, #3a006c 50%, #130053 100%);
    --gradient-secondary: linear-gradient(45deg, #202af5, #02006c);
    --gradient-hero: linear-gradient(135deg, #e9f3fb 0%, #dde8fb 50%, #d7eefb 100%);
    --gradient-mesh: linear-gradient(45deg, #202af5 0%, #02006c 25%, #130053 50%, #202af5 75%, #3a006c 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --text-light: #ffffff;
    --text-dark: #1c0664;
    --text-gray: #666666;
    --text-blue:#4f8cff;
    --text-light-gray: #999999;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #0d0d47;
    --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-large: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 12px 40px rgba(59, 130, 246, 0.2);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    --border-radius: 12px;
    --border-radius-large: 20px;
    --border-radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}




 
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    /* background: var(--bg-light) ; */
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  background: var(--gradient-hero);
    pointer-events: none;
    z-index: -1;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes particles {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(120deg);
    }
    66% {
        transform: translateY(5px) rotate(240deg);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(32, 42, 245, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(32, 42, 245, 0.6);
    }
}

@keyframes morphing {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(32, 42, 245, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    opacity: 0.5;
    pointer-events: none;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 0;
    box-shadow: 0 8px 40px rgba(32, 42, 245, 0.15);
    transform: translateY(0);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 3;
}

.dashboard-logo{
     height: 22px;
    transition: var(--transition);
}

.logo {
    height: 45px;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    background: transparent;
    border: 1px solid transparent;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-secondary);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-links a:hover::before {
    opacity: 1;
}

.nav-links a:hover {
    color: var(--text-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(32, 42, 245, 0.3);
}

.nav-links a.active {
    background: var(--gradient-secondary);
    color: var(--text-light);
    box-shadow: 0 2px 10px rgba(32, 42, 245, 0.2);
}

.nav-links a.active:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(32, 42, 245, 0.4);
}

.nav-cta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    z-index: 3;
}

.nav-cta .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-cta .btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid rgba(32, 42, 245, 0.2);
    transition: all 0.3s ease;
}

.nav-cta .btn-outline:hover {
    background: rgba(32, 42, 245, 0.05);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-1px);
}

.nav-cta .btn-primary {
    background: var(--gradient-secondary);
    color: var(--text-light);
    border: none;
    box-shadow: 0 2px 10px rgba(32, 42, 245, 0.2);
}

.nav-cta .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(32, 42, 245, 0.3);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.mobile-menu:hover {
    background: rgba(32, 42, 245, 0.05);
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

.mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.navbar.mobile-open {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-bounce);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::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;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--text-light);
    box-shadow: var(--shadow);
    position: relative;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-secondary);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover::after {
    opacity: 0.8;
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: transparent;
    color:var(--primary-dark);
    border: 2px solid var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--text-light);
    transform: translateY(-3px) scale(1.02);
    border-color: transparent;
    box-shadow: var(--shadow-hover);
}

.btn-secondary:hover::after {
    left: 0;
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid rgba(32, 42, 245, 0.2);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--text-light);
    border-color: var(--primary-blue);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Banner Section */
.hero-banner {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-hero);
    color: var(--text-dark);
    overflow: hidden;
    padding-top: 80px; /* Account for fixed navbar */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    opacity: 0.1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle, rgba(32, 42, 245, 0.1) 1px, transparent 1px),
        radial-gradient(circle, rgba(0, 7, 108, 0.08) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 25px 25px;
    animation: particles 20s linear infinite;
}

.hero-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.03;
    animation: morphing 8s ease-in-out infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
    animation: slideInScale 0.8s ease-out 0.2s both;
}

.hero-badge i {
    animation: pulse 2s infinite;
    color: #ffffff;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 50%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #1e293b;
}

.hero-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #475569;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Hero Banner Slider */
.hero-visual {
    position: relative;
    width: 100%;
    /* height: 100%; */
}

.hero-banner-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;

}

.hero-banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    pointer-events: none;
}

.hero-banner-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.hero-banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    animation: subtle-zoom 20s ease-in-out infinite alternate;
}

@keyframes subtle-zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
         letter-spacing: -2px;
            background: linear-gradient(135deg, #1e293b 0%, #3b82f6 50%, #1e293b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: #1e293b;
            opacity: 1 !important;
            visibility: visible !important;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Portfolio Section */
.portfolio-section {
    display: none !important    ;
    padding: 6rem 0;
    /* background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); */
    position: relative;
    overflow: hidden;
}

.portfolio-slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 80px;
}

.portfolio-slider {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    /* border-radius: 20px; */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    cursor: pointer;
}

.portfolio-item.active {
    opacity: 1;
    z-index: 2;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s ease;
}

.portfolio-item:hover img {
    transform: scale(1.02);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(180deg, transparent 70%, rgba(190, 220, 233, 0.90) 100%); */
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: none;
}

.portfolio-info p {
    color: #ffffff;
    font-size: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        display: none;

}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: #3b82f6;
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    transform: translateY(-50%) scale(1.15);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot:hover {
    background: #94a3b8;
    transform: scale(1.2);
}

.slider-dot.active {
    background: #3b82f6;
    width: 40px;
    border-radius: 7px;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
}

/* Portfolio Modal */
.portfolio-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    /* border-radius: 8px; */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.modal-nav.modal-prev {
    left: 30px;
    z-index: 99 ;
}

.modal-nav.modal-next {
    right: 30px;
        z-index: 99 ;

}

.modal-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Static Line Section */
.static-line {
    /* background: var(--bg-light); */
    padding: 3rem 0;
    text-align: center;
}

.static-line h2 {
    font-size: 2rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 600;
    line-height: 1.4;
    padding: 0 1rem;
}

/* Partners Section */
.partners {
    padding: 4rem 0;
    /* background: white; */
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px);
  gap: 2rem;
  justify-content: center; /* centers the grid items horizontally */
}


.partner-logo {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.partners .section-title p {
    max-width: 700px !important;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.partner-logo img {
    max-height: 60px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover img {
    opacity: 1;
}

/* About Us Section */
.about {
    padding: 5rem 0;
    /* background: var(--bg-light); */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
     letter-spacing: -2px;
            background: linear-gradient(135deg, #1e293b 0%, #3b82f6 50%, #1e293b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: #1e293b;
            opacity: 1 !important;
            visibility: visible !important;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    justify-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-blue);
    font-weight: 500;
    text-align: center;
}

.about-visual {
    position: relative;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

/* Expertise Section */
.expertise {
    padding: 5rem 0;
    /* background: var(--bg-light); */
}

.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.expertise-category h3 {
    font-size: 1.5rem;
   color: var(--text-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.expertise-list {
    list-style: none;
}

.expertise-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(32, 42, 245, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.expertise-list li:last-child {
    border-bottom: none;
}

.expertise-list strong {
    color: var(--text-blue);
    min-width: 150px;
}

.expertise-list span {
    color: var(--text-gray);
}

/* Process Section */
.process {
    padding: 5rem 0;
    /* background: white; */
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--text-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.3rem;
    color: var(--text-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    /* background: var(--bg-light); */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.04), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
}

.feature-card:hover .feature-icon::before {
    transform: scale(1);
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--text-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.feature-list i {
    color: var(--primary-dark);;
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    position: relative;
}

/* .services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(32, 42, 245, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(32, 42, 245, 0.03) 0%, transparent 50%);
    pointer-events: none;
} */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #2563eb, #1d4ed8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
}

.service-header {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0c47a5 0%, #022b83 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 1.6rem;
    box-shadow: 
        0 4px 12px rgba(59, 130, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 8px 20px rgba(5, 54, 134, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-card h3 {
    font-size: 1.35rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}

.service-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.service-features li {
    color: #64748b;
    margin-bottom: 0.65rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-features li::before {
    content: '✓';
    color: #3b82f6;
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 0.85rem;
}

.service-cta {
color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    padding: 0.5rem 0;
}

.service-cta:hover {
    gap: 0.75rem;
color: var(--primary-dark);
    transform: translateX(4px);
}

.service-cta i {
    transition: transform 0.3s ease;
}

.service-cta:hover i {
    transform: translateX(4px);
}

/* Platform Section */
.platform-section {
    padding: 6rem 0;
    /* background: var(--bg-light); */
}

.platform-workflow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.workflow-step {
    text-align: center;
    max-width: 300px;
}

.step-visual {
    position: relative;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--text-light);
    font-size: 2rem;
    box-shadow: var(--shadow);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--text-blue);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
        display: none;

}

.workflow-arrow {
    color: var(--primary-blue);
    font-size: 2rem;
    margin: 0 1rem;
}

.step-content h3 {
    font-size: 1.3rem;
   color: var(--text-blue);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

.platform-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.platform-feature {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.feature-visual {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.4rem;
   color: var(--text-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-content ul {
    list-style: none;
}

.feature-content ul li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.feature-content ul li::before {
    content: '✓';
    color: var(--text-blue);;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Advanced Features Section */
.advanced-features {
    padding: 6rem 0;
    /* background: var(--bg-white); */
}

.advanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.advanced-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(32, 42, 245, 0.1);
}

.advanced-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    font-size: 1.8rem;
}

.advanced-card h3 {
    font-size: 1.3rem;
    color: var(--text-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.advanced-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    /* background: var(--bg-light); */
}

.testimonials-grid {
   display: flex;
   justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
    transition: var(--transition-bounce);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    width: 50%;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-glow);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-icon {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: var(--text-gray);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.author-info h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Combined Testimonial Card with Video */
.testimonial-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    margin: 2rem 0;
}

.testimonial-video-section {
    margin-top: 1.5rem;
}

.video-title {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.testimonial-video-wrapper {
    position: relative;
    width: 70%;
    max-width: 500px;
    margin: 0 auto;
    padding-bottom: 39.375%; /* 16:9 aspect ratio at 70% width */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    background: #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--border-radius);
}

.client-logos {
    text-align: center;
}

.client-logos h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.logo-item {
    text-align: center;
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.logo-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.logo-item img {
    max-height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-item:hover img {
    opacity: 1;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-hero);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.3rem;
    font-weight: 700;
    letter-spacing: -2px;
            background: linear-gradient(135deg, #1e293b 0%, #3b82f6 50%, #1e293b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: #1e293b;
            opacity: 1 !important;
            visibility: visible !important;
                line-height: 1.3;

}

.cta-text p {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.7;
}

.demo-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row select:only-child {
    grid-column: 1 / -1;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius);
    background: #f8fafc;
    color: #1e293b;
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
    box-sizing: border-box;
}

.demo-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231e293b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.demo-form select option {
    background: #ffffff;
    color: #1e293b;
}

.demo-form textarea{
        width: -webkit-fill-available;
}

.demo-form input::placeholder,
.demo-form textarea::placeholder {
    color: #94a3b8;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.demo-form textarea {
    grid-column: 1 / -1;
    margin-bottom: 1.5rem;
    resize: vertical;
}

.demo-form button {
    width: 100%;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
}

.cta-feature i {
    color: #3b82f6;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(32, 42, 245, 0.1);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
}

.footer-logo .brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer-address {
    margin-bottom: 2rem;
    /* padding: 1.5rem; */
    /* background:var(--gradient-hero);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-dark); */
}

.footer-address h4 {
    color: var(--text-blue);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-address h4 i {
    font-size: 1rem;
}

.footer-address p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: var(--transition);
    border: 1px solid rgba(8, 13, 118, 0.2);
    box-shadow: var(--shadow);
}

.social-links a:hover {
    background: var(--primary-blue);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-blue);
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(32, 42, 245, 0.1);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-legal p {
    color: var(--text-light-gray);
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--primary-blue);
}

.footer-contact {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    color: var(--primary-blue);
}

.contact-item a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-blue);
}

.newsletter-section {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    box-shadow: var(--shadow);
    border: 1px solid rgba(32, 42, 245, 0.1);
}

.newsletter-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.newsletter-content p {
    color: var(--text-gray);
}

.newsletter-content h3 {
    color: var(--primary-dark);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    min-width: 300px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(32, 42, 245, 0.2);
    border-radius: var(--border-radius);
    background: var(--bg-light);
    color: var(--text-dark);
}

.newsletter-form input::placeholder {
    color: var(--text-gray);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: all;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #1018b9 0%, #050f96 50%, #100478 100%);
    color: var(--text-light);
    padding: 1.2rem 2rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 
        0 8px 32px rgba(16, 50, 185, 0.4),
        0 4px 16px rgba(72, 16, 185, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 160px;
    text-align: center;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
}

.floating-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.floating-btn:hover::before {
    left: 100%;
}

.floating-btn:hover::after {
    width: 300px;
    height: 300px;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 
        0 12px 40px rgba(16, 27, 185, 0.5),
        0 8px 24px rgba(44, 16, 185, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.floating-btn:active {
    transform: translateY(-2px) scale(1.05);
    transition: all 0.1s ease;
}

.floating-btn i {
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.floating-btn span {
    white-space: nowrap;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

/* Floating CTA Tooltip */
.floating-tooltip {
    position: absolute;
    bottom: 100%;
    right: 50%;
    transform: translateX(50%) translateY(10px);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-light);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    margin-bottom: 0.75rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.floating-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

.floating-cta:hover .floating-tooltip {
    opacity: 1;
    transform: translateX(50%) translateY(0);
}

/* Floating CTA animations */
@keyframes callPulse {
    0%, 100% {
        box-shadow: 
            0 8px 32px rgba(16, 19, 185, 0.4),
            0 4px 16px rgba(33, 16, 185, 0.3),
            0 0 0 0 rgba(50, 16, 185, 0.6);
    }
    50% {
        box-shadow: 
            0 12px 40px rgba(16, 16, 185, 0.5),
            0 8px 24px rgba(22, 16, 185, 0.4),
            0 0 0 15px rgba(24, 16, 185, 0);
    }
}

@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: rotate(-10deg);
    }
    20%, 40%, 60%, 80% {
        transform: rotate(10deg);
    }
}

@keyframes floatBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-12px) scale(1.05);
    }
    60% {
        transform: translateY(-6px) scale(1.02);
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100px) scale(0.6) rotate(180deg);
        opacity: 0;
    }
    50% {
        transform: translateX(-10px) scale(1.1) rotate(0deg);
        opacity: 0.8;
    }
    100% {
        transform: translateX(0) scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.floating-btn.pulse-animation {
    animation: callPulse 2s infinite;
}

.floating-btn.pulse-animation i {
    animation: phoneRing 0.8s ease-in-out infinite;
}

.floating-cta.visible {
    animation: slideInFromRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-btn:hover {
    animation: floatBounce 0.6s ease-in-out;
}

.floating-btn:not(:hover):not(.pulse-animation) {
    animation: breathe 3s ease-in-out infinite;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Loading state for button */
.floating-btn .fa-spinner {
    animation: spin 1s linear infinite !important;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: all;
}

.floating-whatsapp.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.floating-btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 50%, #075E54 100%);
    color: #ffffff;
    padding: 1.2rem 2rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 
        0 8px 32px rgba(37, 211, 102, 0.4),
        0 4px 16px rgba(18, 140, 126, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 180px;
    text-align: center;
}

.floating-btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
}

.floating-btn-whatsapp::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.floating-btn-whatsapp:hover::before {
    left: 100%;
}

.floating-btn-whatsapp:hover::after {
    width: 300px;
    height: 300px;
}

.floating-btn-whatsapp:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 
        0 12px 40px rgba(37, 211, 102, 0.5),
        0 8px 24px rgba(18, 140, 126, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.floating-btn-whatsapp:active {
    transform: translateY(-2px) scale(1.05);
    transition: all 0.1s ease;
}

.floating-btn-whatsapp i {
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.floating-btn-whatsapp span {
    white-space: nowrap;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

/* WhatsApp Tooltip */
.floating-tooltip-whatsapp {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.95), rgba(18, 140, 126, 0.95));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    margin-bottom: 0.75rem;
    box-shadow: 
        0 8px 32px rgba(37, 211, 102, 0.3),
        0 4px 16px rgba(18, 140, 126, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
}

.floating-tooltip-whatsapp::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(37, 211, 102, 0.95);
}

.floating-whatsapp:hover .floating-tooltip-whatsapp {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* WhatsApp animations */
@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 
            0 8px 32px rgba(37, 211, 102, 0.4),
            0 4px 16px rgba(18, 140, 126, 0.3),
            0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    50% {
        box-shadow: 
            0 12px 40px rgba(37, 211, 102, 0.5),
            0 8px 24px rgba(18, 140, 126, 0.4),
            0 0 0 15px rgba(37, 211, 102, 0);
    }
}

@keyframes whatsappBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-12px) scale(1.05);
    }
    60% {
        transform: translateY(-6px) scale(1.02);
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100px) scale(0.6) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: translateX(10px) scale(1.1) rotate(0deg);
        opacity: 0.8;
    }
    100% {
        transform: translateX(0) scale(1) rotate(0deg);
        opacity: 1;
    }
}

.floating-btn-whatsapp.pulse-animation {
    animation: whatsappPulse 2s infinite;
}

.floating-whatsapp.visible {
    animation: slideInFromLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-btn-whatsapp:hover {
    animation: whatsappBounce 0.6s ease-in-out;
}

.floating-btn-whatsapp:not(:hover):not(.pulse-animation) {
    animation: breathe 3s ease-in-out infinite;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3) { transition-delay: 0.3s; }
.fade-in:nth-child(4) { transition-delay: 0.4s; }
.fade-in:nth-child(5) { transition-delay: 0.5s; }
.fade-in:nth-child(6) { transition-delay: 0.6s; }

/* Loading states */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -200px;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

/* Hover glow effects */
.glow-on-hover {
    transition: var(--transition);
}

.glow-on-hover:hover {
    box-shadow: 0 0 30px rgba(32, 42, 245, 0.4);
}

/* Responsive Design */
/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .testimonial-card {
    width: 100%;
    }

    /* About Us - Tablet */
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }

    /* Expertise - Tablet */
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .expertise-category {
        text-align: center;
    }

    .expertise-list li {
        flex-direction: row;
        text-align: left;
        justify-content: center;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Services - Tablet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Features - Tablet */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Platform Features - Tablet */
    .platform-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .platform-feature {
        flex-direction: row;
        text-align: left;
        gap: 2rem;
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
    }

    .hero-banner-slider {
        height: 500px;
        border-radius: 16px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .cta-text h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .cta-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .demo-form {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .demo-form input,
    .demo-form select,
    .demo-form textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    .demo-form textarea {
        width: 100%;
        margin-bottom: 1rem;
    }

    .demo-form button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .cta-features {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }

    .cta-feature {
        font-size: 0.95rem;
    }
}

/* Desktop navigation - ensure nav links are visible */
@media (min-width: 769px) {
    .nav-links,
    .nav-cta {
        display: flex !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        height: 30px;
    }

    .brand-name {
        font-size: 1.3rem;
    }

    /* Floating CTA - Mobile */
    .floating-cta {
        bottom: 25px;
        right: 25px;
    }

    .floating-btn {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
        min-width: auto;
        font-size: 0;
        box-shadow: 
            0 6px 24px rgba(36, 16, 185, 0.4),
            0 3px 12px rgba(16, 27, 185, 0.3);
    }

    .floating-btn span {
        display: none;
    }

    .floating-btn i {
        font-size: 1.4rem;
        margin: 0;
    }

    .floating-btn:hover {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 
            0 8px 32px rgba(41, 16, 185, 0.5),
            0 4px 16px rgba(30, 16, 185, 0.4);
    }

    /* Hide tooltip on mobile */
    .floating-tooltip {
        display: none;
    }

    /* Floating WhatsApp - Mobile */
    .floating-whatsapp {
        bottom: 25px;
        left: 25px;
    }

    .floating-btn-whatsapp {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
        min-width: auto;
        font-size: 0;
        box-shadow: 
            0 6px 24px rgba(37, 211, 102, 0.4),
            0 3px 12px rgba(18, 140, 126, 0.3);
    }

    .floating-btn-whatsapp span {
        display: none;
    }

    .floating-btn-whatsapp i {
        font-size: 1.5rem;
        margin: 0;
    }

    .floating-btn-whatsapp:hover {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 
            0 8px 32px rgba(37, 211, 102, 0.5),
            0 4px 16px rgba(18, 140, 126, 0.4);
    }

    /* Hide WhatsApp tooltip on mobile */
    .floating-tooltip-whatsapp {
        display: none;
    }

    /* Section Spacing - Mobile */
    .partners,
    .about,
    .services,
    .expertise,
    .process,
    .features-section,
    .advanced-features,
    .testimonials-section,
    .platform-section,
    .cta-section {
        padding: 3rem 0;
    }

    /* Portfolio - Mobile */
    .portfolio-section {
        padding: 3rem 0;
    }

    .portfolio-slider-wrapper {
        padding: 0 60px;
    }

    .portfolio-slider {
        height: 200px;
    }

    .portfolio-info h3 {
        font-size: 1.5rem;
    }

    .portfolio-info p {
        font-size: 0.95rem;
    }

    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .modal-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .modal-close {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .static-line {
        padding: 2rem 0;
    }

    .static-line h2 {
        font-size: 1.5rem;
        padding: 0 1rem;
    }

    .hero-banner {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-text h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-badge {
        margin-bottom: 1rem;
            margin-top: 1rem;

    }

    /* About Us Section - Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
        justify-items: center;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-item {
        justify-content: flex-start;
        width: 100%;
        max-width: 250px;
    }

    .about-card {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    /* Expertise Section - Mobile */
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expertise-category h3 {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .expertise-list li {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0;
        gap: 0.5rem;
    }

    .expertise-list strong {
        min-width: auto;
        font-size: 1.1rem;
    }

    .expertise-list span {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Process Section - Mobile */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .process-step h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .process-step p {
        font-size: 0.95rem;
    }

    /* Services Section - Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-header h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    /* Other Grids - Mobile */
    .features-grid,
    .advanced-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .advanced-card,
    .testimonial-card {
        width: 100%;
        padding: 2rem;
    }

    .testimonial-video-wrapper {
        width: 85%;
        padding-bottom: 47.8125%; /* 16:9 at 85% width */
    }

    /* Platform Section - Mobile */
    .platform-workflow {
        flex-direction: column;
    }

    .workflow-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .platform-features {
        grid-template-columns: 1fr;
    }

    .platform-feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .feature-visual {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }

    /* Partners Section - Mobile */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .partner-logo {
        padding: 1rem;
    }

    .partner-logo img {
        max-height: 40px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-address {
        text-align: left;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-section {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .newsletter-content h3 {
        font-size: 1.2rem;
    }

    .newsletter-content p {
        font-size: 0.9rem;
    }

    .newsletter-form {
        min-width: auto;
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-form input {
        width: 100%;
    }

    .newsletter-form button {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    /* Floating CTA - Small Mobile */
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 60px;
        height: 60px;
        box-shadow: 
            0 4px 20px rgba(30, 16, 185, 0.4),
            0 2px 10px rgba(38, 16, 185, 0.3);
    }

    .floating-btn i {
        font-size: 1.3rem;
    }

    .floating-btn:hover {
        transform: translateY(-2px) scale(1.08);
    }

    /* Floating WhatsApp - Small Mobile */
    .floating-whatsapp {
        bottom: 20px;
        left: 20px;
    }

    .floating-btn-whatsapp {
        width: 60px;
        height: 60px;
        box-shadow: 
            0 4px 20px rgba(37, 211, 102, 0.4),
            0 2px 10px rgba(18, 140, 126, 0.3);
    }

    .floating-btn-whatsapp i {
        font-size: 1.4rem;
    }

    .floating-btn-whatsapp:hover {
        transform: translateY(-2px) scale(1.08);
    }

    /* Hero Section - Small Mobile */
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-text h2 {
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-banner-slider {
        height: 350px;
        border-radius: 12px;
    }

    /* Portfolio - Small Mobile */
    .portfolio-slider-wrapper {
        padding: 0 50px;
    }

    .portfolio-slider {
        height: 140px;
        /* border-radius: 12px; */
    }

    .portfolio-info h3 {
        font-size: 1.2rem;
    }

    .portfolio-info p {
        font-size: 0.85rem;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .modal-nav {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .modal-nav.modal-prev {
        left: 15px;
    }

    .modal-nav.modal-next {
        right: 15px;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .modal-counter {
        font-size: 0.95rem;
        padding: 10px 20px;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Section Titles - Small Mobile */
    .section-title h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        
    }

    .section-title p {
        font-size: 1rem;
    }

    /* About Us - Small Mobile */
    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        justify-items: center;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-item {
        justify-content: flex-start;
        width: 100%;
        max-width: 220px;
    }

    .about-card {
        padding: 1rem;
    }

    .about-card h3 {
        font-size: 1.1rem;
    }

    /* Expertise - Small Mobile */
    .expertise-category h3 {
        font-size: 1.2rem;
    }

    .expertise-list li {
        padding: 0.75rem 0;
    }

    .expertise-list strong {
        font-size: 1rem;
    }

    .expertise-list span {
        font-size: 0.9rem;
    }

    /* Services - Small Mobile */
    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .service-header h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    /* Process - Small Mobile */
    .process-step {
        padding: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .process-step h3 {
        font-size: 1.1rem;
    }

    .process-step p {
        font-size: 0.9rem;
    }

    /* Features & Cards - Small Mobile */
    .feature-card,
    .advanced-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-video-wrapper {
        width: 100%;
        padding-bottom: 56.25%; /* Full width 16:9 on small mobile */
    }

    .video-title {
        font-size: 1rem;
    }

    .feature-icon,
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .feature-card h3,
    .advanced-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p,
    .advanced-card p {
        font-size: 0.9rem;
    }

    /* Platform - Small Mobile */
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .feature-visual {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .feature-content h3 {
        font-size: 1.2rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }

    /* Partners - Small Mobile */
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .partner-logo {
        padding: 0.75rem;
    }

    .partner-logo img {
        max-height: 35px;
    }

    /* Footer - Small Mobile */
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-address {
        padding: 1rem;
        text-align: center;
    }

    .footer-address h4 {
        font-size: 1rem;
        justify-content: center;
    }

    .footer-address p {
        font-size: 0.85rem;
    }

    .footer-section {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section ul li a {
        font-size: 0.9rem;
    }

    /* CTA Section - Small Mobile */
    .cta-section {
        padding: 2.5rem 0;
    }

    .cta-content {
        gap: 1.5rem;
    }

    .cta-text h2 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .cta-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .demo-form {
        padding: 1rem;
    }

    .form-row {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .demo-form input,
    .demo-form select,
    .demo-form textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .demo-form textarea {
        margin-bottom: 0.75rem;
        min-height: 60px;
    }

    .demo-form button {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-feature {
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .cta-feature i {
        font-size: 1rem;
    }

    /* Testimonials - Small Mobile */
    .testimonial-content p {
        font-size: 0.9rem;
    }

    .author-info h4 {
        font-size: 0.95rem;
    }

    .author-info span {
        font-size: 0.8rem;
    }

    /* Client Logos - Small Mobile */
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .logo-item img {
        max-height: 30px;
    }

    /* Newsletter - Small Mobile */
    .newsletter-section {
        padding: 1rem;
        gap: 1rem;
    }

    .newsletter-content h3 {
        font-size: 1.1rem;
    }

    .newsletter-content p {
        font-size: 0.85rem;
    }

    .newsletter-form {
        gap: 0.5rem;
    }

    .newsletter-form input {
        padding: 0.65rem 0.85rem;
        font-size: 0.9rem;
    }

    .newsletter-form button {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }

    /* Buttons - Small Mobile */
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}