/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #111827;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #374151;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: white;
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7c3aed, #3b82f6);
    transition: width 0.3s ease;
}

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

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-text {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-text:hover {
    background: #2563eb;
    transform: translateY(-1px);
    text-decoration: none;
}

.btn-primary {
    background: #9333ea;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #7c3aed;
    transform: translateY(-1px);
    text-decoration: none;
}

.btn-primary:active {
    background: #6d28d9;
    transform: translateY(0);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #374151, #4b5563);
    color: white;
    border: 1px solid #6b7280;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #4b5563, #6b7280);
    border-color: #9ca3af;
    color: white;
    transform: translateY(-1px);
    text-decoration: none;
}

.btn-secondary:active {
    background: linear-gradient(135deg, #1f2937, #374151);
    border-color: #6b7280;
    transform: translateY(0);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #d1d5db;
    font-size: 20px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #374151;
    padding: 20px;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    padding: 12px 0;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link:hover {
    color: white;
    transform: translateX(8px);
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.1), transparent);
    padding-left: 16px;
    border-radius: 8px;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7c3aed, #3b82f6);
    transition: width 0.3s ease;
}

.mobile-nav-link:hover::before {
    width: 4px;
}

.mobile-nav-actions {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-text-mobile, .btn-primary-mobile, .btn-secondary-mobile {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-text-mobile {
    background: #3b82f6;
    color: white;
    text-align: center;
    transition: all 0.2s ease;
}

.btn-text-mobile:hover {
    background: #2563eb;
}

.btn-primary-mobile {
    background: #9333ea;
    color: white;
    border: none;
}

.btn-primary-mobile:hover {
    background: #7c3aed;
    transform: translateY(-1px);
}

.btn-primary-mobile:active {
    background: #6d28d9;
    transform: translateY(0);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-secondary-mobile {
    background: linear-gradient(135deg, #374151, #4b5563);
    color: white;
    border: 1px solid #6b7280;
}

.btn-secondary-mobile:hover {
    background: linear-gradient(135deg, #4b5563, #6b7280);
    border-color: #9ca3af;
    transform: translateY(-1px);
}

.btn-secondary-mobile:active {
    background: linear-gradient(135deg, #1f2937, #374151);
    border-color: #6b7280;
    transform: translateY(0);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #7c3aed 75%, #a855f7 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    color: #fbbf24;
}

.subtitle {
    font-size: 28px;
    font-weight: 400;
}

.hero-description {
    font-size: 20px;
    color: #d1d5db;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: #9333ea;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-white:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.btn-white:active {
    background: #e5e7eb;
    transform: translateY(0);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid #a855f7;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: #a855f7;
    color: #1f2937;
    transform: translateY(-2px);
}

.btn-outline:active {
    background: #9333ea;
    color: white;
    transform: translateY(0);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-video {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #1f2937, #374151);
}

.video-container:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 35px 70px -12px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.2);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-container:hover .video-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.video-container:hover .play-button {
    transform: scale(1.15);
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.6);
}

.video-description {
    color: #e5e7eb;
    text-align: center;
    margin-top: 24px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    max-width: 500px;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #111827;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background: #1f2937;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #374151;
    transition: all 0.2s ease;
}

.service-card:hover {
    border-color: #a855f7;
    transform: translateY(-4px);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 24px;
}

.service-card:nth-child(1) .service-icon {
    background: #9333ea;
}

.service-card:nth-child(2) .service-icon {
    background: #3b82f6;
}

.service-card:nth-child(3) .service-icon {
    background: #059669;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.service-description {
    color: #9ca3af;
    line-height: 1.6;
}

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

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
    z-index: 1;
    animation: pricingGlow 8s ease-in-out infinite alternate;
}

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

.pricing .container {
    position: relative;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.pricing-card {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(124, 58, 237, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(124, 58, 237, 0.4);
}

.pricing-card.popular {
    border-color: #a855f7;
    border-width: 2px;
    background: linear-gradient(145deg, #1e1b4b 0%, #312e81 50%, #0f172a 100%);
    box-shadow: 
        0 4px 6px -1px rgba(168, 85, 247, 0.1),
        0 2px 4px -1px rgba(168, 85, 247, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(168, 85, 247, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 
        0 4px 6px -1px rgba(168, 85, 247, 0.3),
        0 2px 4px -1px rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.plan-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.plan-price {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

.plan-period {
    font-size: 18px;
    color: #9ca3af;
    font-weight: 400;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #d1d5db;
}

.plan-features i {
    color: #059669;
    margin-right: 12px;
    font-size: 14px;
}

.plan-features {
    flex-grow: 1;
    margin-bottom: 24px;
}

.plan-button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: auto;
    background: #374151;
    color: white;
}

.plan-button:hover {
    background: linear-gradient(135deg, #9333ea, #3b82f6);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

.plan-button:active {
    background: #1f2937;
    transform: translateY(0);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.plan-button.popular-btn {
    background: linear-gradient(135deg, #9333ea, #3b82f6);
}

.plan-button.popular-btn:hover {
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    transform: translateY(-1px);
}

.plan-button.popular-btn:active {
    background: linear-gradient(135deg, #6d28d9, #1d4ed8);
    transform: translateY(0);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Active state for selected plan buttons */
.plan-button.active {
    background: #1f2937 !important;
    border: 2px solid #9333ea !important;
    color: #9333ea !important;
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.4);
}

.plan-button.popular-btn.active {
    background: linear-gradient(135deg, #6d28d9, #1d4ed8) !important;
    border: 2px solid #a855f7 !important;
    color: white !important;
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.4);
}

/* Plan notification styles */
.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-content i {
    font-size: 18px;
    color: #10b981;
}

.notification-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notification-text span {
    font-weight: 600;
    font-size: 14px;
}

.notification-text small {
    font-size: 12px;
    opacity: 0.9;
    color: #e5e7eb;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.notification-close:hover {
    opacity: 1;
}

/* Videos Section */
.videos {
    padding: 80px 0;
    background: #111827;
}

/* Videos Carousel */
.videos-carousel-container {
    position: relative;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 60px; /* Reduced padding since arrows are now inside */
}

.videos-carousel {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

/* Ensure exactly 3 videos are visible on desktop */
@media (min-width: 1200px) {
    .videos-carousel {
        width: calc(3.5 * 350px + 3 * 24px); /* 3.5 cards + 3 gaps to show half of 4th video */
        margin: 0 auto; /* Center the videos */
        position: relative;
    }
    
    .videos-track {
        width: calc(3.5 * 350px + 3 * 24px);
        justify-content: flex-start; /* Align videos to the left to show half of 4th */
    }
    
    .carousel-btn-left {
        left: 20px;
    }
    
    .carousel-btn-right {
        right: 5px; /* Much closer to the third video */
    }
}

.videos-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
    align-items: stretch;
    width: max-content;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(168, 85, 247, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(168, 85, 247, 0.4);
}

.carousel-btn:active {
    background: rgba(168, 85, 247, 1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.6);
}

.carousel-btn-left {
    left: 20px;
}

.carousel-btn-right {
    right: 5px; /* Closer to videos on desktop */
}

/* Responsive carousel */
@media (max-width: 1600px) {
    .videos-carousel-container {
        padding: 0 60px;
    }
    
    .video-card {
        flex: 0 0 330px;
        min-width: 330px;
    }
    
    .videos-carousel {
        margin: 0 auto 0 0; /* Move videos to the left */
    }
    
    .videos-track {
        justify-content: flex-start; /* Align videos to the left */
    }
    
    .carousel-btn-left {
        left: 20px;
    }
    
    .carousel-btn-right {
        right: 20px;
    }
}

@media (max-width: 1400px) {
    .videos-carousel-container {
        padding: 0 50px;
    }
    
    .video-card {
        flex: 0 0 320px;
        min-width: 320px;
    }
    
    .videos-carousel {
        margin: 0 auto 0 0; /* Move videos to the left */
    }
    
    .videos-track {
        justify-content: flex-start; /* Align videos to the left */
    }
    
    .carousel-btn-left {
        left: 20px;
    }
    
    .carousel-btn-right {
        right: 20px;
    }
}

@media (max-width: 1200px) {
    .videos-carousel-container {
        padding: 0 40px;
    }
    
    .video-card {
        flex: 0 0 300px;
        min-width: 300px;
    }
    
    .videos-carousel {
        margin: 0 auto 0 0; /* Move videos to the left */
    }
    
    .videos-track {
        justify-content: flex-start; /* Align videos to the left */
    }
    
    .carousel-btn-left {
        left: 20px;
    }
    
    .carousel-btn-right {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .videos-carousel-container {
        padding: 0 30px;
    }
    
    .video-card {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-btn-left {
        left: 20px;
    }
    
    .carousel-btn-right {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .videos-carousel-container {
        padding: 0 20px;
    }
    
    .video-card {
        flex: 0 0 250px;
        min-width: 250px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .carousel-btn-left {
        left: 20px;
    }
    
    .carousel-btn-right {
        right: 20px;
    }
}

.video-card {
    background: #1f2937;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #374151;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    flex: 0 0 300px;
    min-width: 300px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.video-card:hover {
    border-color: #a855f7;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.video-card:active {
    border-color: #a855f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.video-thumbnail-container {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    flex-shrink: 0;
}

.video-thumbnail-container .video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

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

.video-card:hover .video-play-overlay {
    background: rgba(168, 85, 247, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.5);
}

.video-card:active .video-play-overlay {
    background: rgba(168, 85, 247, 1);
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 2px 10px rgba(168, 85, 247, 0.6);
}

.video-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 120px;
}

.video-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
    line-height: 1.4;
}

.video-desc {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #1f2937;
}

.testimonials-carousel-container {
    position: relative;
    margin-top: 40px;
    padding: 0 60px;
}

.testimonials-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    margin: 0 auto;
    scrollbar-width: thin;
    scrollbar-color: #6b7280 #1f2937;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.testimonials-carousel::-webkit-scrollbar {
    height: 8px;
}

.testimonials-carousel::-webkit-scrollbar-track {
    background: #1f2937;
    border-radius: 4px;
}

.testimonials-carousel::-webkit-scrollbar-thumb {
    background: #6b7280;
    border-radius: 4px;
}

.testimonials-carousel::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Desktop (1024px+) - Show 3 cards */
@media (min-width: 1024px) {
    .testimonials-carousel-container {
        padding: 0 60px;
    }
    
    .testimonials-carousel {
        max-width: 1400px;
    }
    
    .testimonial-card {
        flex: 0 0 400px;
        min-width: 400px;
        max-width: 400px;
    }
    
    /* Contact section alignment for desktop */
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
    
    .contact-info {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Laptop (1024px) - Show 3 cards */
@media (min-width: 1024px) and (max-width: 1024px) {
    .testimonials-carousel-container {
        padding: 0 50px;
    }
    
    .testimonials-carousel {
        max-width: 1300px;
    }
    
    .testimonial-card {
        flex: 0 0 380px;
        min-width: 380px;
        max-width: 380px;
    }
    
    /* Contact section alignment for laptop */
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }
    
    .contact-info {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Tablet (768px-1023px) - Show 2 cards */
@media (min-width: 768px) and (max-width: 1023px) {
    .testimonials-carousel-container {
        padding: 0 40px;
    }
    
    .testimonials-carousel {
        max-width: 1000px;
    }
    
    .testimonial-card {
        flex: 0 0 350px;
        min-width: 350px;
        max-width: 350px;
    }
    
    /* Contact section alignment for tablet */
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: stretch;
    }
    
    .contact-info {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .contact-form-container {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    /* Reduce text sizes for tablet */
    .contact-info-title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 12px;
        background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .contact-info-description {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .contact-title {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .contact-text {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .quote-text {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .form-title {
        font-size: 20px;
        margin-bottom: 16px;
        background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .contact-btn {
        font-size: 13px;
        padding: 10px 20px;
    }
}

/* Tablet (768px) - Specific breakpoint */
@media (min-width: 768px) and (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
        align-items: stretch;
    }
    
    .contact-info {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .contact-form-container {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    /* Further reduce text sizes for 768px tablet */
    .contact-info-title {
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: 10px;
        background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .contact-info-description {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .contact-title {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .contact-text {
        font-size: 11px;
        line-height: 1.3;
    }
    
    .quote-text {
        font-size: 12px;
        line-height: 1.3;
    }
    
    .form-title {
        font-size: 18px;
        margin-bottom: 14px;
        background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .form-group label {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 12px;
        padding: 8px 10px;
    }
    
    .contact-btn {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* Mobile (320px-767px) - Show 1 card */
@media (max-width: 767px) {
    .testimonials-carousel-container {
        padding: 0 20px;
    }
    
    .testimonials-carousel {
        max-width: 100%;
    }
    
    .testimonial-card {
        flex: 0 0 300px;
        min-width: 300px;
        max-width: 300px;
    }
    
    /* Contact section alignment for mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: center;
    }
    
    .contact-info {
        height: auto;
        display: flex;
        flex-direction: column;
    }
}

.testimonials-track {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 0 12px;
    min-width: 100%;
    scroll-behavior: smooth;
}

.testimonial-card {
    flex: 0 0 400px;
    min-width: 400px;
    max-width: 400px;
    background: #111827;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #374151;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.testimonial-btn {
    display: none; /* Hide arrow buttons, using scroll instead */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: #111827;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #374151;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #9333ea;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-right: 16px;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.testimonial-role {
    color: #9ca3af;
    font-size: 14px;
}

.testimonial-text {
    color: #d1d5db;
    font-style: italic;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #111827;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #1f2937;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #374151;
    height: 100%;
    justify-content: center;
}

.contact-info-header {
    text-align: left;
}

.contact-info-title {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-info-description {
    font-size: 16px;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: #374151;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #4b5563;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    background: #4b5563;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
}

.contact-card:nth-child(1) .contact-icon {
    background: #25d366;
}

.contact-card:nth-child(2) .contact-icon {
    background: #ef4444;
}

.contact-details {
    flex: 1;
}

.contact-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
    line-height: 1.4;
}

.contact-text {
    color: #d1d5db;
    font-size: 13px;
    line-height: 1.4;
}

.contact-text a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.contact-text a:hover {
    color: #93c5fd;
    text-decoration: underline;
}

.contact-quote {
    margin-top: 12px;
    padding: 20px;
    background: #374151;
    border-radius: 12px;
    border-left: 4px solid #8B5CF6;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.quote-text {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.5;
    font-style: italic;
    margin: 0;
    text-align: left;
}

.contact-form-container {
    background: #1f2937;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #374151;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-title {
    font-size: 24px;
    font-weight: 600;
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    color: #d1d5db;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-input, .form-textarea {
    background: #374151;
    border: 1px solid #4b5563;
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #a855f7;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    background: linear-gradient(135deg, #9333ea, #3b82f6);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-submit:hover {
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1f2937;
    border-top: 1px solid #374151;
    padding: 70px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
    align-items: start;
    width: 100%;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

/* Company Section */
.company-section {
    max-width: 100%;
    text-align: left;
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 25px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 32px;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}

.company-quote {
    color: #d1d5db;
    font-size: 17px;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
    padding-left: 25px;
    border-left: 4px solid #9333ea;
    max-width: 400px;
}

/* Quick Links Section */
.quick-links-section {
    text-align: left;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding: 4px 0;
}

.footer-link:hover {
    color: white;
    transform: translateX(8px);
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7c3aed, #3b82f6);
    transition: all 0.3s ease;
}

.footer-link:hover::before {
    width: 8px;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #7c3aed, #3b82f6);
    transition: width 0.3s ease;
}

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

/* Social Section */
.social-section {
    text-align: left;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    justify-content: flex-start;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

.social-link.youtube {
    background: #dc2626;
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link.whatsapp {
    background: #25d366;
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d1d5db;
    font-size: 15px;
    font-weight: 400;
}

.contact-info-item i {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

/* Newsletter Section */
.newsletter-section {
    max-width: 100%;
    text-align: left;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
}

.newsletter-form {
    margin-top: 0;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    width: 100%;
}

.newsletter-input {
    flex: 1;
    background: #374151;
    border: 1px solid #4b5563;
    border-radius: 8px 0 0 8px;
    padding: 16px 18px;
    color: white;
    font-size: 15px;
    transition: all 0.2s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #a855f7;
    background: #4b5563;
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-button {
    background: linear-gradient(135deg, #9333ea, #3b82f6);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    transform: translateY(-1px);
}

.newsletter-button:active {
    background: linear-gradient(135deg, #6d28d9, #1d4ed8);
    transform: translateY(0);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #9ca3af;
    font-size: 14px;
    flex-wrap: wrap;
}

.footer-bottom-link {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    position: relative;
    padding: 4px 8px;
    border-radius: 4px;
}

.footer-bottom-link:hover {
    color: white;
    background: rgba(124, 58, 237, 0.1);
    transform: translateY(-1px);
}

.footer-bottom-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #7c3aed, #3b82f6);
    transition: width 0.3s ease;
}

.footer-bottom-link:hover::after {
    width: 80%;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a855f7;
    font-weight: 600;
}

.company-link {
    color: #a855f7;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 8px;
    border-radius: 4px;
}

.company-link:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.company-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #7c3aed);
    transition: width 0.3s ease;
}

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

.company-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: black;
    border-radius: 12px;
    overflow: hidden;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 2001;
}

.video-modal-iframe {
    width: 100%;
    height: 100%;
}

/* Responsive Design */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .videos-carousel {
        width: calc(3.5 * 350px + 3 * 24px); /* 3.5 cards + 3 gaps to show half of 4th video */
    }
    
    .videos-track {
        width: calc(3.5 * 350px + 3 * 24px);
        justify-content: flex-start; /* Align videos to the left to show half of 4th */
    }
    
    .carousel-btn-right {
        right: 5px; /* Consistent with desktop positioning */
    }
    
    .footer-content {
        grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
        gap: 50px;
        align-items: start;
    }
    
    .company-section {
        text-align: left;
    }
    
    .quick-links-section {
        text-align: left;
    }
    
    .social-section {
        text-align: left;
    }
    
    .newsletter-section {
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Laptop (1024px) */
@media (min-width: 1024px) and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1.6fr 0.9fr 0.7fr 1.6fr;
        gap: 20px 30px;
        align-items: start;
    }
    
    .company-section {
        text-align: left;
    }
    
    .company-section .company-quote {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .quick-links-section {
        text-align: left;
    }
    
    .quick-links-section h3 {
        white-space: nowrap;
    }
    
    .social-section {
        text-align: left;
    }
    
    .social-section h3 {
        white-space: nowrap;
    }
    
    .social-icons {
        gap: 6px;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
    }
    
    .contact-info {
        font-size: 13px;
    }
    
    .newsletter-section {
        text-align: left;
    }
    
    .newsletter-section h3 {
        white-space: nowrap;
    }
    
    .newsletter-section .newsletter-form {
        max-width: 100%;
    }
    
    .newsletter-section .newsletter-input {
        width: 100%;
        max-width: 100%;
        background-color: #374151;
        border: 1px solid #4B5563;
        color: #F9FAFB;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .newsletter-section .newsletter-input::placeholder {
        color: #9CA3AF;
        opacity: 1;
    }
    
    .newsletter-section .newsletter-input:focus {
        outline: none;
        border-color: #8B5CF6;
        box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Desktop (1025px-1399px) */
@media (min-width: 1025px) and (max-width: 1399px) {
    .container {
        max-width: 1200px;
    }
    
    .hero-content {
        gap: 60px;
    }
    
    .services-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
        gap: 40px;
        align-items: start;
    }
    
    .company-section {
        text-align: left;
    }
    
    .quick-links-section {
        text-align: left;
    }
    
    .social-section {
        text-align: left;
    }
    
    .newsletter-section {
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Tablet (768px) */
@media (min-width: 768px) and (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: #d1d5db;
        font-size: 24px;
        cursor: pointer;
        padding: 8px;
        border-radius: 4px;
        transition: all 0.2s ease;
    }
    
    .mobile-menu-btn:hover {
        color: white;
        background: rgba(55, 65, 81, 0.5);
    }
    
    .mobile-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(17, 24, 39, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid #374151;
        padding: 24px;
        flex-direction: column;
        gap: 0;
        z-index: 1000;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-nav.active {
        display: flex;
    }
    
    .mobile-nav-link {
        color: #d1d5db;
        text-decoration: none;
        font-weight: 500;
        padding: 16px 0;
        border-bottom: 1px solid #374151;
        transition: color 0.2s ease;
        font-size: 16px;
    }
    
    .mobile-nav-link:last-child {
        border-bottom: none;
    }
    
    .mobile-nav-link:hover {
        color: white;
        background: rgba(55, 65, 81, 0.3);
        margin: 0 -24px;
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .mobile-nav-actions {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #374151;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-text-mobile, .btn-primary-mobile, .btn-secondary-mobile {
        width: 100%;
        padding: 12px 16px;
        border-radius: 8px;
        font-weight: 500;
        text-align: center;
        text-decoration: none;
        transition: all 0.2s ease;
    }
    
    .btn-primary-mobile {
        background: linear-gradient(135deg, #8B5CF6, #A855F7);
        color: white;
    }
    
    .btn-primary-mobile:hover {
        background: linear-gradient(135deg, #7C3AED, #9333EA);
        transform: translateY(-1px);
    }
    
    .btn-secondary-mobile {
        background: transparent;
        color: #d1d5db;
        border: 1px solid #374151;
    }
    
    .btn-secondary-mobile:hover {
        background: rgba(55, 65, 81, 0.5);
        color: white;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px 40px;
        align-items: start;
    }
    
    .company-section {
        grid-column: 1;
        text-align: left;
    }
    
    .quick-links-section {
        grid-column: 2;
        text-align: left;
    }
    
    .social-section {
        grid-column: 1;
        text-align: left;
    }
    
    .newsletter-section {
        grid-column: 2;
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Tablet (769px-1023px) */
@media (min-width: 769px) and (max-width: 1023px) {
    .container {
        padding: 0 24px;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: #d1d5db;
        font-size: 24px;
        cursor: pointer;
        padding: 8px;
        border-radius: 4px;
        transition: all 0.2s ease;
    }
    
    .mobile-menu-btn:hover {
        color: white;
        background: rgba(55, 65, 81, 0.5);
    }
    
    .mobile-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(17, 24, 39, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid #374151;
        padding: 24px;
        flex-direction: column;
        gap: 0;
        z-index: 1000;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-nav.active {
        display: flex;
    }
    
    .mobile-nav-link {
        color: #d1d5db;
        text-decoration: none;
        font-weight: 500;
        padding: 16px 0;
        border-bottom: 1px solid #374151;
        transition: color 0.2s ease;
        font-size: 16px;
    }
    
    .mobile-nav-link:last-child {
        border-bottom: none;
    }
    
    .mobile-nav-link:hover {
        color: white;
        background: rgba(55, 65, 81, 0.3);
        margin: 0 -24px;
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .mobile-nav-actions {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #374151;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-text-mobile, .btn-primary-mobile, .btn-secondary-mobile {
        width: 100%;
        padding: 12px 16px;
        border-radius: 8px;
        font-weight: 500;
        text-align: center;
        text-decoration: none;
        transition: all 0.2s ease;
    }
    
    .btn-primary-mobile {
        background: linear-gradient(135deg, #8B5CF6, #A855F7);
        color: white;
    }
    
    .btn-primary-mobile:hover {
        background: linear-gradient(135deg, #7C3AED, #9333EA);
        transform: translateY(-1px);
    }
    
    .btn-secondary-mobile {
        background: transparent;
        color: #d1d5db;
        border: 1px solid #374151;
    }
    
    .btn-secondary-mobile:hover {
        background: rgba(55, 65, 81, 0.5);
        color: white;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .video-container {
        max-width: 500px;
    }
    
    .video-description {
        font-size: 16px;
        margin-top: 20px;
    }
    
    .play-button {
        width: 75px;
        height: 75px;
        font-size: 26px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .subtitle {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .services-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .testimonials-carousel-container {
        padding: 0 40px;
    }
    
    .videos-carousel-container {
        padding: 0 40px;
    }
    
    .videos-carousel {
        width: calc(2 * 300px + 1 * 24px); /* 2 cards + 1 gap */
    }
    
    .video-card {
        flex: 0 0 300px;
        min-width: 300px;
    }
    
    .carousel-btn-left {
        left: 20px;
    }
    
    .carousel-btn-right {
        right: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
    }
    
    .contact-info {
        gap: 20px;
    }
    
    .contact-cards {
        gap: 16px;
    }
    
    .contact-card {
        padding: 16px;
    }
    
    .contact-quote {
        margin-top: 16px;
        padding: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px 40px;
        align-items: start;
    }
    
    .company-section {
        grid-column: 1;
        text-align: left;
    }
    
    .quick-links-section {
        grid-column: 2;
        text-align: left;
    }
    
    .social-section {
        grid-column: 1;
        text-align: left;
    }
    
    .newsletter-section {
        grid-column: 2;
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Mobile (481px-767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(17, 24, 39, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid #374151;
        padding: 20px;
        flex-direction: column;
        gap: 16px;
    }
    
    .mobile-nav.active {
        display: flex;
    }
    
    .mobile-nav-link {
        color: #d1d5db;
        text-decoration: none;
        font-weight: 500;
        padding: 12px 0;
        border-bottom: 1px solid #374151;
        transition: color 0.2s ease;
    }
    
    .mobile-nav-link:hover {
        color: white;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .subtitle {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .services-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-carousel-container {
        padding: 0 30px;
    }
    
    .videos-carousel-container {
        padding: 0 30px;
    }
    
    .videos-carousel {
        width: 100%; /* Full width to center the single video */
        display: flex;
        justify-content: center;
    }
    
    .videos-track {
        justify-content: center; /* Center the single video */
    }
    
    .video-card {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .carousel-btn-left {
        left: 20px;
    }
    
    .carousel-btn-right {
        right: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
    }
    
    .contact-info {
        gap: 18px;
    }
    
    .contact-cards {
        gap: 14px;
    }
    
    .contact-card {
        padding: 14px;
    }
    
    .contact-quote {
        margin-top: 14px;
        padding: 14px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        align-items: center;
    }
    
    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* Extra Small Mobile (≤425px) */
@media (max-width: 425px) {
    .videos-carousel-container {
        padding: 0 15px;
    }
    
    .videos-carousel {
        width: 100%; /* Full width to center the single video */
        display: flex;
        justify-content: center;
    }
    
    .videos-track {
        justify-content: center; /* Center the single video */
    }
    
    .carousel-btn-left {
        left: 2px;
    }
    
    .carousel-btn-right {
        right: 2px;
    }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .video-container {
        max-width: 400px;
    }
    
    .video-description {
        font-size: 14px;
        margin-top: 16px;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
        font-size: 22px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn-white,
    .btn-outline {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-grid,
    .pricing-grid,
    .videos-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .videos-carousel-container {
        padding: 0 20px;
    }
    
    .videos-carousel {
        width: 100%; /* Full width to center the single video */
        display: flex;
        justify-content: center;
    }
    
    .videos-track {
        justify-content: center; /* Center the single video */
    }
    
    .video-card {
        flex: 0 0 250px;
        min-width: 250px;
    }
    
    .carousel-btn-left {
        left: 5px;
    }
    
    .carousel-btn-right {
        right: 5px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: center;
    }
    
    .contact-info {
        gap: 16px;
    }
    
    .contact-cards {
        gap: 12px;
    }
    
    .contact-card {
        padding: 12px;
    }
    
    .contact-quote {
        margin-top: 12px;
        padding: 12px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        align-items: center;
    }
    
    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .company-section {
        order: 1;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .company-quote {
        text-align: center;
        padding-left: 0;
        border-left: none;
        border-top: 3px solid #9333ea;
        padding-top: 15px;
        margin-top: 15px;
    }
    
    .quick-links-section {
        order: 2;
        text-align: center;
    }
    
    .social-section {
        order: 3;
        text-align: center;
    }
    
    .newsletter-section {
        order: 4;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        align-items: center;
    }
    
    .footer-bottom-left,
    .footer-bottom-right {
        justify-content: center;
        text-align: center;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-input {
        border-radius: 8px;
        margin-bottom: 12px;
    }
    
    .newsletter-button {
        border-radius: 8px;
        width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info-footer {
        align-items: center;
    }
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(124, 58, 237, 0.9) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 160px;
    text-align: center;
    border: 2px solid transparent;
}

.cta-btn-primary {
    background: white;
    color: #7c3aed;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn-primary:hover {
    background: #f8fafc;
    color: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-btn-secondary {
    background: #6d28d9;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary:hover {
    background: #5b21b6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* CTA Section Responsive Design */
@media (max-width: 1023px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2.8rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-btn {
        padding: 14px 28px;
        font-size: 1rem;
        min-width: 140px;
    }
}

@media (max-width: 767px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
    
    .cta-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #7c3aed;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9333ea;
}
