:root {
    --primary-color: #e11d48;
    --secondary-color: #0f172a;
    --accent-color: #3b82f6;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --light-bg: #f8fafc;
    --gradient-primary: linear-gradient(135deg, #e11d48 0%, #be185d 100%);
    --gradient-secondary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --shadow-primary: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    overflow-x: hidden;
}

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

/* Custom Navbar */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--secondary-color) !important;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary-custom {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
    color: white !important;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.4);
    color: white !important;
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 3;
}

/* Hero Carousel Background */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 20s ease-in-out;
    transform: scale(1.15);
    will-change: opacity, transform;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    animation: kenBurns 15s ease-in-out infinite;
}

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

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.75) 50%, rgba(51, 65, 85, 0.85) 100%);
    z-index: 1;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.5) 50%, rgba(51, 65, 85, 0.6) 100%);
    z-index: 1;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.carousel-indicators .indicator.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: heroContentFade 0.8s ease-out;
}

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

/* Subtle page animation on slide change */
.hero-container {
    animation: subtleFloat 15s ease-in-out infinite;
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Features Section */
.features-section {
    background: var(--light-bg);
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-primary);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
}

/* Social Proof Section */
.social-proof {
    background: white;
    padding: 60px 0;
}

.client-logo {
    height: 60px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Demo Section */
.demo-section {
    background: var(--gradient-secondary);
    color: white;
}

.demo-preview {
    background: transparent;
    padding: 0;
    margin-top: 2rem;
}

.dashboard-mockup {
    width: 100%;
    height: 400px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 1.2rem;
    position: relative;
    overflow: visible;
}

/* Globe Container */
.globe-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-container:hover .globe-inner {
    animation-duration: 15s;
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.6), 0 0 100px rgba(236, 72, 153, 0.4);
}

.globe-container:hover .orbit-icon {
    animation-duration: 10s;
}

.orbit-icon:hover {
    animation-duration: 8s !important;
}

/* Futuristic AI Globe */
.globe {
    position: absolute;
    width: 450px;
    height: 450px;
    left: 50%;
    top: 50%;
    margin-left: -225px;
    margin-top: -225px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transform-style: preserve-3d;
}

.globe-wireframe {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform-style: preserve-3d;
    animation: globeRotate3D 20s linear infinite;
}

/* Wireframe Lines - Latitude */
.wireframe-line {
    position: absolute;
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform-origin: center;
}

.wireframe-lat-1 {
    width: 405px;
    height: 135px;
    margin-left: -202.5px;
    margin-top: -67.5px;
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.wireframe-lat-2 {
    width: 360px;
    height: 180px;
    margin-left: -180px;
    margin-top: -90px;
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 0 8px rgba(236, 72, 153, 0.2);
}

.wireframe-lat-3 {
    width: 315px;
    height: 225px;
    margin-left: -157.5px;
    margin-top: -112.5px;
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 6px rgba(139, 92, 246, 0.2);
}

/* Wireframe Lines - Longitude */
.wireframe-lng-1 {
    width: 450px;
    height: 450px;
    margin-left: -225px;
    margin-top: -225px;
    border: none;
    border-left: 1px solid rgba(139, 92, 246, 0.4);
    border-right: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 50%;
    transform: rotateY(0deg);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
}

.wireframe-lng-2 {
    width: 450px;
    height: 450px;
    margin-left: -225px;
    margin-top: -225px;
    border: none;
    border-left: 1px solid rgba(236, 72, 153, 0.3);
    border-right: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 50%;
    transform: rotateY(45deg);
    box-shadow: 0 0 8px rgba(236, 72, 153, 0.15);
}

.wireframe-lng-3 {
    width: 450px;
    height: 450px;
    margin-left: -225px;
    margin-top: -225px;
    border: none;
    border-left: 1px solid rgba(139, 92, 246, 0.3);
    border-right: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    transform: rotateY(90deg);
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.15);
}

.wireframe-lng-4 {
    width: 450px;
    height: 450px;
    margin-left: -225px;
    margin-top: -225px;
    border: none;
    border-left: 1px solid rgba(236, 72, 153, 0.25);
    border-right: 1px solid rgba(236, 72, 153, 0.25);
    border-radius: 50%;
    transform: rotateY(135deg);
    box-shadow: 0 0 6px rgba(236, 72, 153, 0.1);
}

/* Hexagonal Pattern Overlay */
.hex-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 15px, rgba(139, 92, 246, 0.1) 15px, rgba(139, 92, 246, 0.1) 16px),
        repeating-linear-gradient(60deg, transparent, transparent 15px, rgba(236, 72, 153, 0.08) 15px, rgba(236, 72, 153, 0.08) 16px),
        repeating-linear-gradient(120deg, transparent, transparent 15px, rgba(139, 92, 246, 0.06) 15px, rgba(139, 92, 246, 0.06) 16px);
    opacity: 0.6;
    animation: hexRotate 15s linear infinite;
}

/* Core Pulse */
.globe-core {
    position: absolute;
    width: 90px;
    height: 90px;
    left: 50%;
    top: 50%;
    margin-left: -45px;
    margin-top: -45px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 1) 0%, rgba(236, 72, 153, 0.8) 50%, transparent 100%);
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.8),
        0 0 40px rgba(236, 72, 153, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.core-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.6) 0%, transparent 70%);
    animation: corePulse 2s ease-in-out infinite;
}

/* Data Nodes */
.data-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(139, 92, 246, 0.9);
    border-radius: 50%;
    box-shadow: 
        0 0 10px rgba(139, 92, 246, 0.8),
        0 0 20px rgba(139, 92, 246, 0.4);
    animation: nodePulse 2s ease-in-out infinite;
}

.node-1 { left: 50%; top: 10%; margin-left: -4px; animation-delay: 0s; }
.node-2 { left: 85%; top: 30%; margin-left: -4px; animation-delay: 0.3s; }
.node-3 { left: 85%; top: 70%; margin-left: -4px; animation-delay: 0.6s; }
.node-4 { left: 50%; top: 90%; margin-left: -4px; animation-delay: 0.9s; }
.node-5 { left: 15%; top: 70%; margin-left: -4px; animation-delay: 1.2s; }
.node-6 { left: 15%; top: 30%; margin-left: -4px; animation-delay: 1.5s; }

/* Hologram Effect */
.globe-hologram {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    opacity: 0.7;
    animation: hologramShift 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes globeRotate3D {
    0% {
        transform: rotateY(0deg) rotateX(10deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(10deg);
    }
}

@keyframes hexRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

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

@keyframes hologramShift {
    0%, 100% {
        background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    }
    50% {
        background: radial-gradient(circle at 70% 70%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    }
}

/* Orbit Icons */
.orbit-icon {
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform-origin: center center;
    animation-duration: 25s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    z-index: 3;
}

.orbit-icon-1 {
    animation-name: orbit1;
    animation-delay: 0s;
}

.orbit-icon-2 {
    animation-name: orbit2;
    animation-delay: -4s;
}

.orbit-icon-3 {
    animation-name: orbit3;
    animation-delay: -8s;
}

.orbit-icon-4 {
    animation-name: orbit4;
    animation-delay: -12s;
}

.orbit-icon-5 {
    animation-name: orbit5;
    animation-delay: -16s;
}

.orbit-icon-6 {
    animation-name: orbit6;
    animation-delay: -20s;
}

/* Orbit Paths - Different angles for each icon */
/* Globe radius is 225px, so orbit at 285px (225px + 60px gap) to float around it */
@keyframes orbit1 {
    0% {
        transform: rotate(0deg) translateX(285px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(285px) rotate(-360deg);
    }
}

@keyframes orbit2 {
    0% {
        transform: rotate(60deg) translateX(285px) rotate(-60deg);
    }
    100% {
        transform: rotate(420deg) translateX(285px) rotate(-420deg);
    }
}

@keyframes orbit3 {
    0% {
        transform: rotate(120deg) translateX(285px) rotate(-120deg);
    }
    100% {
        transform: rotate(480deg) translateX(285px) rotate(-480deg);
    }
}

@keyframes orbit4 {
    0% {
        transform: rotate(180deg) translateX(285px) rotate(-180deg);
    }
    100% {
        transform: rotate(540deg) translateX(285px) rotate(-540deg);
    }
}

@keyframes orbit5 {
    0% {
        transform: rotate(240deg) translateX(285px) rotate(-240deg);
    }
    100% {
        transform: rotate(600deg) translateX(285px) rotate(-600deg);
    }
}

@keyframes orbit6 {
    0% {
        transform: rotate(300deg) translateX(285px) rotate(-300deg);
    }
    100% {
        transform: rotate(660deg) translateX(285px) rotate(-660deg);
    }
}

/* Channel Dots - Small glowing orbs */
.channel-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.8) 0%, rgba(236, 72, 153, 0.8) 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.6),
        0 0 40px rgba(236, 72, 153, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    margin-left: -20px;
    margin-top: -20px;
    animation: dotPulse 3s ease-in-out infinite;
}

.channel-dot:nth-child(1) { animation-delay: 0s; }
.channel-dot:nth-child(2) { animation-delay: 0.5s; }
.channel-dot:nth-child(3) { animation-delay: 1s; }
.channel-dot:nth-child(4) { animation-delay: 1.5s; }
.channel-dot:nth-child(5) { animation-delay: 2s; }
.channel-dot:nth-child(6) { animation-delay: 2.5s; }

.channel-dot:hover {
    transform: scale(1.3);
    box-shadow: 
        0 0 30px rgba(139, 92, 246, 0.8),
        0 0 60px rgba(236, 72, 153, 0.6),
        inset 0 0 15px rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.channel-dot i {
    font-size: 1rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(139, 92, 246, 0.6),
            0 0 40px rgba(236, 72, 153, 0.4),
            inset 0 0 10px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(139, 92, 246, 0.8),
            0 0 60px rgba(236, 72, 153, 0.6),
            inset 0 0 15px rgba(255, 255, 255, 0.3);
    }
}

/* Globe Title */
.globe-title {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    z-index: 4;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    padding: 12px 24px;
}

/* Lead Capture Form */
.lead-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-primary);
    margin-top: 2rem;
    color: #1e293b;
}

.lead-form .form-label {
    color: #1e293b;
    font-weight: 500;
}

.lead-form .form-check-label {
    color: #1e293b;
}

.lead-form .form-control {
    color: #1e293b;
    background-color: white;
}

.lead-form .form-control::placeholder {
    color: #94a3b8;
}

.lead-form h3 {
    color: #1e293b !important;
}

.lead-form .text-muted {
    color: #64748b !important;
}

.lead-form small {
    color: #64748b;
}

.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #1e293b;
    background-color: white;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(225, 29, 72, 0.25);
    color: #1e293b;
    background-color: white;
}

/* Industries Section */
.industries-section {
    background: white;
}

/* Call Back Modal Styles */
.callback-modal-content {
    border-radius: 8px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.callback-modal-header {
    border-bottom: none;
    padding: 1.5rem 1.5rem 0;
}

.callback-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.callback-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.callback-close {
    color: var(--primary-color);
    opacity: 1;
}

.callback-divider {
    margin: 0;
    border-top: 2px solid var(--primary-color);
    opacity: 0.6;
}

.callback-modal-body {
    padding: 1.5rem;
}

.callback-info-box {
    background-color: rgba(225, 29, 72, 0.05);
    border: 1px solid rgba(225, 29, 72, 0.3);
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.callback-info-icon {
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.callback-info-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.callback-info-text {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.callback-warning {
    color: #dc2626;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.callback-label {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.callback-input {
    border: 1px solid rgba(225, 29, 72, 0.3);
    border-radius: 4px;
    padding: 0.75rem;
    color: #1e293b;
    font-size: 0.95rem;
}

.callback-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(225, 29, 72, 0.25);
    color: #1e293b;
}

.callback-input::placeholder {
    color: #94a3b8;
}

.callback-modal-footer {
    border-top: 2px solid var(--primary-color);
    padding: 1rem 1.5rem;
    justify-content: flex-end;
    gap: 0.75rem;
}

.callback-cancel-btn {
    background: white;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.callback-cancel-btn:hover {
    background: #f8f9fa;
    border-color: #be185d;
    color: #be185d;
}

.callback-submit-btn {
    background: var(--gradient-primary);
    border: 1px solid var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.callback-submit-btn:hover {
    background: var(--primary-color);
    border-color: #be185d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
}

.callback-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Schedule Demo Modal Specific Styles */
#scheduleDemoModal .form-check-input {
    margin-top: 0.25rem;
}

#scheduleDemoModal .form-check-label {
    margin-left: 0.5rem;
    line-height: 1.5;
}

#scheduleDemoModal input[type="date"],
#scheduleDemoModal input[type="time"] {
    color: #1e293b;
}

#scheduleDemoModal input[type="date"]::-webkit-calendar-picker-indicator,
#scheduleDemoModal input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(0.3);
    cursor: pointer;
}

/* Trial Registration Modal Specific Styles */
#trialRegistrationModal .form-check {
    padding-left: 0;
    margin-bottom: 0.5rem;
}

#trialRegistrationModal .form-check-input {
    margin-top: 0.25rem;
    margin-left: 0;
    margin-right: 0.5rem;
}

#trialRegistrationModal .form-check-label {
    margin-left: 0;
    line-height: 1.5;
    cursor: pointer;
}

#trialRegistrationModal h6 {
    margin-top: 1.5rem;
}

#trialRegistrationModal h6:first-of-type {
    margin-top: 0;
}

.industry-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.industry-card:hover {
    background: white;
    box-shadow: var(--shadow-primary);
    transform: translateY(-4px);
}

.industry-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

.footer .text-muted {
    color: white !important;
}

.footer-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

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

/* Loading Animation */
.loading-dots {
    display: inline-block;
}

.loading-dots::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60% { content: '...'; }
    80%, 100% { content: ''; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .navbar-brand img {
        height: 32px;
    }
    
    .carousel-indicators {
        bottom: 20px;
        gap: 8px;
    }
    
    .carousel-indicators .indicator {
        width: 10px;
        height: 10px;
    }
    
    .carousel-indicators .indicator.active {
        width: 24px;
    }
    
    .carousel-slide {
        transform: scale(1.1);
    }
    
    /* Globe animation responsive */
    .globe {
        width: 80px;
        height: 80px;
    }
    
    .globe-inner i {
        font-size: 2rem;
    }
    
    .orbit-icon {
        width: 150px;
        height: 150px;
        margin-left: -75px;
        margin-top: -75px;
    }
    
    /* Adjust orbit radius for mobile by using smaller translateX in keyframes */
    .orbit-icon-1 {
        animation: orbit1Mobile 25s linear infinite;
    }
    
    .orbit-icon-2 {
        animation: orbit2Mobile 25s linear infinite;
        animation-delay: -4s;
    }
    
    .orbit-icon-3 {
        animation: orbit3Mobile 25s linear infinite;
        animation-delay: -8s;
    }
    
    .orbit-icon-4 {
        animation: orbit4Mobile 25s linear infinite;
        animation-delay: -12s;
    }
    
    .orbit-icon-5 {
        animation: orbit5Mobile 25s linear infinite;
        animation-delay: -16s;
    }
    
    .orbit-icon-6 {
        animation: orbit6Mobile 25s linear infinite;
        animation-delay: -20s;
    }
    
    @keyframes orbit1Mobile {
        0% {
            transform: rotate(0deg) translateX(100px) rotate(0deg);
        }
        100% {
            transform: rotate(360deg) translateX(100px) rotate(-360deg);
        }
    }
    
    @keyframes orbit2Mobile {
        0% {
            transform: rotate(60deg) translateX(100px) rotate(-60deg);
        }
        100% {
            transform: rotate(420deg) translateX(100px) rotate(-420deg);
        }
    }
    
    @keyframes orbit3Mobile {
        0% {
            transform: rotate(120deg) translateX(100px) rotate(-120deg);
        }
        100% {
            transform: rotate(480deg) translateX(100px) rotate(-480deg);
        }
    }
    
    @keyframes orbit4Mobile {
        0% {
            transform: rotate(180deg) translateX(100px) rotate(-180deg);
        }
        100% {
            transform: rotate(540deg) translateX(100px) rotate(-540deg);
        }
    }
    
    @keyframes orbit5Mobile {
        0% {
            transform: rotate(240deg) translateX(100px) rotate(-240deg);
        }
        100% {
            transform: rotate(600deg) translateX(100px) rotate(-600deg);
        }
    }
    
    @keyframes orbit6Mobile {
        0% {
            transform: rotate(300deg) translateX(100px) rotate(-300deg);
        }
        100% {
            transform: rotate(660deg) translateX(100px) rotate(-660deg);
        }
    }
    
    .globe {
        width: 220px;
        height: 220px;
        margin-left: -110px;
        margin-top: -110px;
    }
    
    .wireframe-lat-1 {
        width: 198px;
        height: 66px;
        margin-left: -99px;
        margin-top: -33px;
    }
    
    .wireframe-lat-2 {
        width: 176px;
        height: 88px;
        margin-left: -88px;
        margin-top: -44px;
    }
    
    .wireframe-lat-3 {
        width: 154px;
        height: 110px;
        margin-left: -77px;
        margin-top: -55px;
    }
    
    .wireframe-lng-1,
    .wireframe-lng-2,
    .wireframe-lng-3,
    .wireframe-lng-4 {
        width: 220px;
        height: 220px;
        margin-left: -110px;
        margin-top: -110px;
    }
    
    .globe-core {
        width: 44px;
        height: 44px;
        margin-left: -22px;
        margin-top: -22px;
    }
    
    .orbit-icon {
        width: 0;
        height: 0;
    }
    
    @keyframes orbit1Mobile {
        0% {
            transform: rotate(0deg) translateX(140px) rotate(0deg);
        }
        100% {
            transform: rotate(360deg) translateX(140px) rotate(-360deg);
        }
    }
    
    @keyframes orbit2Mobile {
        0% {
            transform: rotate(60deg) translateX(140px) rotate(-60deg);
        }
        100% {
            transform: rotate(420deg) translateX(140px) rotate(-420deg);
        }
    }
    
    @keyframes orbit3Mobile {
        0% {
            transform: rotate(120deg) translateX(140px) rotate(-120deg);
        }
        100% {
            transform: rotate(480deg) translateX(140px) rotate(-480deg);
        }
    }
    
    @keyframes orbit4Mobile {
        0% {
            transform: rotate(180deg) translateX(140px) rotate(-180deg);
        }
        100% {
            transform: rotate(540deg) translateX(140px) rotate(-540deg);
        }
    }
    
    @keyframes orbit5Mobile {
        0% {
            transform: rotate(240deg) translateX(140px) rotate(-240deg);
        }
        100% {
            transform: rotate(600deg) translateX(140px) rotate(-600deg);
        }
    }
    
    @keyframes orbit6Mobile {
        0% {
            transform: rotate(300deg) translateX(140px) rotate(-300deg);
        }
        100% {
            transform: rotate(660deg) translateX(140px) rotate(-660deg);
        }
    }
    
    .data-node {
        width: 6px;
        height: 6px;
        margin-left: -3px;
    }
    
    
    .channel-dot {
        width: 32px;
        height: 32px;
    }
    
    .channel-dot i {
        font-size: 0.8rem;
    }
    
    .globe-title {
        font-size: 1.1rem;
        bottom: 5px;
        padding: 8px 16px;
    }
}
