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

:root {
    --primary-color: #0a192f;
    --secondary-color: #112240;
    --accent-color: #64ffda;
    --accent-hover: #52dbbf;
    --text-dark: #ffffff;
    --text-light: #e6f1ff;
    --text-lighter: #ccd6f6;
    --background-light: #0a192f;
    --background-dark: #020c1b;
    --white: #112240;
    --card-bg: #112240;
    --border-color: #233554;
    --gradient-1: #0a192f;
    --gradient-2: #112240;
    --gradient-3: #1a365d;
    --nav-bg-1: #ffffff;
    --nav-bg-2: #f8fbff;
    --nav-bg-3: #f0f7ff;
    --nav-text: #0a192f;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--gradient-1) 0%, var(--gradient-2) 50%, var(--gradient-3) 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 255, 255, 0.2),
        0 2px 4px rgba(0,0,0,0.8);
}

h3 {
    color: #ffffff !important; 
    text-shadow: 
        0 0 12px rgba(255, 255, 255, 0.7),
        0 0 24px rgba(255, 255, 255, 0.4),
        0 0 36px rgba(255, 255, 255, 0.3),
        0 4px 8px rgba(0,0,0,0.9) !important;
    font-weight: 800;
}

h4 {
    color: #ffffff !important; 
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.6),
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 30px rgba(255, 255, 255, 0.2),
        0 3px 6px rgba(0,0,0,0.8) !important;
    font-weight: 800;
}  

p {
    color: var(--text-light) !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.7) !important;
    font-weight: 500;
}

.why-card p,
.service-card p,
.insight-card p,
.footer-description,
.footer-col ul li,
.footer-col ul li a {
    color: var(--text-light) !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.7) !important;
}

label {
    color: var(--text-light);
    text-shadow: 
        0 0 6px rgba(255, 255, 255, 0.3),
        0 0 12px rgba(255, 255, 255, 0.2),
        0 0 18px rgba(255, 255, 255, 0.1),
        0 1px 2px rgba(0,0,0,0.5);
    font-weight: 600;
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--nav-bg-1) 0%, var(--nav-bg-2) 50%, var(--nav-bg-3) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(10, 25, 47, 0.1);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    text-decoration: none;
    color: var(--nav-text);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--nav-text);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--nav-bg-1) 0%, var(--nav-bg-2) 100%);
    box-shadow: 0 4px 20px rgba(10, 25, 47, 0.1);
    z-index: 999;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
}

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

.mobile-nav-link {
    display: block;
    padding: 16px 24px;
    text-decoration: none;
    color: var(--nav-text);
    font-weight: 600;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    transition: var(--transition);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.mobile-nav-link:hover {
    background: rgba(59, 130, 246, 0.05);
    color: var(--accent-color);
}

/* Hero Slider */
.hero-slider {
    margin-top: 72px;
    position: relative;
    height: 85vh;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.85), rgba(17, 34, 64, 0.8));
}

.slide.active {
    opacity: 1;
}

.slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.slide img,
.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.slide-content .btn {
    display: inline-block;
}


.hero-title {
    font-size: 56px;
    color: #ffffff !important;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(255, 255, 255, 0.5),
        0 0 45px rgba(255, 255, 255, 0.3),
        0 4px 8px rgba(0,0,0,0.9) !important;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
}

.hero-subtitle {
    font-size: 20px;
    color: #ffffff !important;
    margin-bottom: 32px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s both;
    font-weight: 500;
    text-shadow: 
        0 0 8px rgba(255, 255, 255, 0.6),
        0 0 16px rgba(255, 255, 255, 0.3),
        0 2px 4px rgba(0,0,0,0.8) !important;
    text-align: center;
}

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

.btn {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--primary-color);
    animation: fadeInUp 0.8s ease 0.4s both;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(100, 255, 218, 0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.btn-white {
    background: var(--text-light);
    color: var(--primary-color);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

.btn-white:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.4);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(230, 241, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.dot.active {
    background: var(--accent-color);
    width: 40px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(100, 255, 218, 0.5);
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gradient-2) 0%, var(--gradient-1) 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.section-header.centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.section-title {
    font-size: 42px;
    color: #ffffff !important;
    margin-bottom: 16px;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.7),
        0 0 30px rgba(255, 255, 255, 0.4),
        0 0 45px rgba(255, 255, 255, 0.2),
        0 4px 8px rgba(0,0,0,0.9) !important;
    font-weight: 800;
}

.section-description {
    font-size: 18px;
    color: #ffffff !important;
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 0 0 8px rgba(255,255,255,0.5);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}

.why-card {
    background: var(--card-bg);
    padding: 40px 32px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: var(--accent-color);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(100, 255, 218, 0.3);
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.why-card p {
    color: #ffffff !important;
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 0 0 6px rgba(255,255,255,0.4);
}

/* Services Preview - Fixed for side-by-side on all devices */
.services-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gradient-3) 0%, var(--gradient-2) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Always 2 columns */
    gap: 32px;
}

/* Force 2 columns on all screen sizes */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }
}

@media (max-width: 360px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
    }
}

.service-card {
    text-decoration: none;
    display: block;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-color);
    transition: height 0.3s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border-color: var(--accent-color);
}

.service-card-inner {
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 24px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(100, 255, 218, 0.3);
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card p {
    color: #ffffff !important;
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 500;
    text-shadow: 0 0 6px rgba(255,255,255,0.4);
    flex-grow: 1;
}

.service-link-arrow {
    color: var(--accent-color);
    font-size: 24px;
    font-weight: 700;
    transition: var(--transition);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    align-self: flex-start;
}

.service-card:hover .service-link-arrow {
    transform: translateX(8px);
    display: inline-block;
}

/* SVG Responsive Styles */
.service-icon-wrapper svg,
.why-icon svg,
.footer-social svg {
    width: 40px;
    height: 40px;
    transition: var(--transition);
}

.service-icon-wrapper,
.why-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-wrapper svg,
.why-icon svg {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

/* Insights Section - Netflix style scroll */
.insights-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gradient-1) 0%, var(--gradient-2) 100%);
    position: relative;
    overflow: hidden;
}

.insights-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    margin-bottom: 40px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) var(--border-color);
}

.insights-grid::-webkit-scrollbar {
    height: 8px;
}

.insights-grid::-webkit-scrollbar-track {
    background: var(--border-color);
    border-radius: 10px;
}

.insights-grid::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

.insight-card {
    flex: 0 0 85%;
    max-width: 350px;
    scroll-snap-align: start;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.insight-card:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-color: var(--accent-color);
}

.insight-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.insight-content {
    padding: 28px;
}

.insight-category {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(100, 255, 218, 0.3);
}

.insight-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.insight-card p {
    color: #ffffff !important;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 500;
}

.insight-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.insight-link:hover {
    color: var(--text-light);
    transform: translateX(4px);
}

.insights-cta {
    text-align: center;
    margin-top: 20px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gradient-3) 0%, var(--gradient-2) 100%);
    text-align: center;
}

.cta-title {
    font-size: 42px;
    margin-bottom: 24px;
    color: #ffffff !important;
    text-shadow: 0 0 15px rgba(255,255,255,0.8);
}

.cta-text {
    font-size: 18px;
    color: #ffffff !important;
    margin-bottom: 32px;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--background-dark);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255,255,255,0.6);
}

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

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

.footer-col ul li a {
    color: #ffffff !important;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-color) !important;
    transform: translateX(4px);
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #ffffff !important;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: var(--text-light);
    transition: var(--transition);
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-icon-wrapper svg,
    .why-icon svg {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .service-icon-wrapper svg,
    .why-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .why-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-card-inner {
        padding: 24px 20px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .service-card p {
        font-size: 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .why-card {
        padding: 24px 16px;
    }
    
    .why-card h3 {
        font-size: 18px;
    }
    
    .service-card-inner {
        padding: 20px 16px;
    }
    
    .service-card h3 {
        font-size: 18px;
    }
    
    .service-card p {
        font-size: 14px;
    }
    
    .service-icon-wrapper svg,
    .why-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .service-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }
    
    .why-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .insight-card {
        flex: 0 0 80%;
    }
    
    .footer-social svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .service-card-inner {
        padding: 16px 12px;
    }
    
    .service-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .service-card p {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    
    .service-icon-wrapper svg,
    .why-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .service-icon-wrapper {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }
    
    .why-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-link-arrow {
        font-size: 20px;
    }
    
    .why-card {
        padding: 20px 12px;
    }
    
    .why-card h3 {
        font-size: 16px;
    }
    
    .why-card p {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .service-card-inner {
        padding: 12px 8px;
    }
    
    .service-card h3 {
        font-size: 14px;
    }
    
    .service-card p {
        font-size: 11px;
        line-height: 1.4;
    }
    
    .service-icon-wrapper svg,
    .why-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .service-icon-wrapper {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .why-icon {
        width: 44px;
        height: 44px;
    }
    
    .why-card h3 {
        font-size: 14px;
    }
    
    .why-card p {
        font-size: 11px;
    }

    .slide {
pointer-events: none;
z-index: 0;
}

.slide.active {
pointer-events: auto;
z-index: 1;
}
    
}

/* Chatbot (hidden by default) */
.chatbot-preview {
    display: none;
}