/* Global Styles */
:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #3730a3 100%);
    --gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --neon-glow: 0 0 20px rgba(139, 92, 246, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}
/* Navbar Styles */
.navbar {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(30, 41, 59, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--primary-color) !important;
    text-shadow: var(--neon-glow);
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #fff !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section - Full Viewport with Dark Gradient */
/* Hero Section Base */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 80px;
    align-items: center;
    background-color: #050a19;
    overflow: hidden;
}
/* Shared slide styling - FIXED */
.hero-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
}

/* Slide 1 */
.slide-1 {
    background-image:
        url("../images/about.jpg") !important;
}

/* Slide 2 */
.slide-2 {
    background-image:
        url("../images/about.jpg") !important;
}

/* Glow overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(139, 92, 246, 0.15) 0%,
        transparent 70%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    text-shadow: 
        0 0 30px rgba(139, 92, 246, 0.5),
        0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-section .lead {
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    border: none;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-indicator a:hover {
    color: var(--primary-color) !important;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.8));
}

/* Swiper Controls */
.swiper-button-next,
.swiper-button-prev {
    color: rgba(255, 255, 255, 0.8);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #8b5cf6;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet-active {
    background: #8b5cf6;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .hero-slide {
        background-size: cover !important;
        background-position: center !important;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .cta-buttons .btn {
        padding: 0.75rem 2rem !important;
    }
}
/* Buttons */
.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
}

.btn-light {
    background: #fff;
    color: var(--dark-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
}

/* Factory Graphic */
.factory-graphic {
    position: relative;
    min-height: 400px;
}

/* Stat Box */
.stat-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Solution Cards */
.solution-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.solution-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 20px;
}

.solution-features {
    list-style: none;
    padding: 0;
}

.solution-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.solution-features li:last-child {
    border-bottom: none;
}

/* Sentiment Visualization */
.sentiment-viz {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Feature Cards */
.feature-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-purple);
    border-radius: 20px;
    color: #fff;
    box-shadow: var(--neon-glow);
}

/* Industry Pills/Tabs */
.nav-pills .nav-link {
    color: var(--dark-color) !important;
    font-weight: 600;
    padding: 12px 24px;
    margin: 0 0.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
}

.nav-pills .nav-link.active {
    background: var(--gradient-purple);
    color: #fff;
    box-shadow: var(--neon-glow);
}

/* Industry Use Cases */
.industry-use-cases {
    list-style: none;
    padding: 0;
}

.industry-use-cases li {
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.industry-use-cases li:last-child {
    border-bottom: none;
}

/* Roadmap Timeline */
.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--neon-glow);
}

.timeline-marker.now {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}

.timeline-marker.next {
    background: var(--gradient-purple);
    color: #fff;
}

.timeline-marker.coming {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
}

.timeline-content {
    width: 45%;
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.timeline-label {
    display: inline-block;
    background: var(--gradient-purple);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Logo Placeholders */
.logo-placeholder {
    background: #fff;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonial Cards */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

/* Metric Cards */
.metric-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.metric-icon {
    opacity: 0.2;
}

/* Contact Section */
.contact-form-wrapper {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 12px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.calendly-placeholder {
    border: 2px dashed var(--primary-color);
    transition: all 0.3s ease;
}

.calendly-placeholder:hover {
    background: rgba(99, 102, 241, 0.05);
}

.info-item {
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
}

.info-icon {
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
}

.footer h5,
.footer h6 {
    color: #fff;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links {
    padding-left: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover,
.footer-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    filter: drop-shadow(var(--neon-glow));
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    color: #fff;
}

/* Service Detail Pages */
.page-header {
    background: var(--gradient-purple);
    padding: 150px 0 100px;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.benefit-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-purple);
    border-radius: 15px;
    color: #fff;
    margin-bottom: 1rem;
}

.process-step {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-purple);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.case-study-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.case-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.service-features li:last-child {
    border-bottom: none;
}

.metric-box {
    background: var(--gradient-purple);
    color: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.metric-box h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-section {
    background: var(--gradient-purple);
    padding: 80px 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

/* Section Spacing */
section {
    padding: 80px 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .timeline-item {
        flex-direction: column !important;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-marker {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .display-2 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .service-img,
    .case-img {
        height: 200px;
    }
    
    .nav-pills .nav-link {
        margin: 0.25rem;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .footer-links a:hover,
    .footer-link:hover {
        transform: none;
    }
    
    .btn-lg {
        padding: 10px 24px;
        font-size: 1rem;
    }
}
/* Horizontal Timeline Styles */
.horizontal-timeline {
    position: relative;
    padding: 3rem 0;
}

.timeline-line-horizontal {
    position: absolute;
    top: 80px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(to right, #10b981, var(--primary-color), #f59e0b);
}

.timeline-item-horizontal {
    position: relative;
}

.timeline-marker-horizontal {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
    box-shadow: var(--neon-glow);
}

.timeline-marker-horizontal.now-marker {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}

.timeline-marker-horizontal.next-marker {
    background: var(--gradient-purple);
    color: #fff;
}

.timeline-marker-horizontal.coming-marker {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
}

.timeline-content-horizontal {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-height: 200px;
}

.timeline-content-horizontal:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.timeline-label-horizontal {
    display: inline-block;
    background: var(--gradient-purple);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}
.solution-img {
    max-height: 220px;
    object-fit: cover;
    width: 100%;
}

.solution-card {
    border-radius: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1.5rem 3rem rgba(0,0,0,0.08);
}
/* Database Migration Page V2 Styles - Clean Modern Design */
.db-hero-section {
    min-height: 100vh;
    background-image: url('../images/about.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.db-hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.db-hero-section .container {
    position: relative;
    z-index: 2;
}

.db-section-title {
    color: #1e293b;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 3rem;
}

.db-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.db-content-card {
    background: #fff;
    border-radius: 20px;
	min-height: 400px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid #6366f1;
}

.db-content-card:hover {
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.2);
    transform: translateY(-8px);
}

.db-content-card h4 {
    color: #6366f1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.db-content-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.db-content-card ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
    color: #475569;
    font-size: 1.05rem;
}

.db-content-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 8px;
    height: 8px;
    background: #6366f1;
    border-radius: 50%;
}

.db-content-card p {
    color: #1e293b;
    line-height: 1.8;
}

.contact-info-inline {
    color: #475569;
}

@media (max-width: 768px) {
    .db-hero-section {
        min-height: 70vh;
        background-attachment: scroll;
    }
    
    .db-content-card {
        padding: 2rem;
    }
}
.db-content-card + .col-lg-5 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}
.solution-image-box {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.solution-image-box img {
    border-radius: 15px;
    height: 500px;
    object-fit: cover;
}
/* Customer Intelligence Page V2 Styles */
.ci-hero-section {
    min-height: 100vh;
    background-image: url('../images/about.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.ci-hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ci-hero-section .container {
    position: relative;
    z-index: 2;
}

.ci-section-title {
    color: #1e293b;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 3rem;
}

.ci-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.ci-image-box {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ci-image-box img {
    border-radius: 15px;
    height: 500px;
    object-fit: cover;
}

.ci-content-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid #6366f1;
}

.ci-content-card:hover {
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.2);
    transform: translateY(-8px);
}

.ci-content-card h4 {
    color: #6366f1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.ci-content-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.ci-content-card ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
    color: #475569;
    font-size: 1.05rem;
}

.ci-content-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 8px;
    height: 8px;
    background: #6366f1;
    border-radius: 50%;
}

.ci-content-card ul ul {
    margin-top: 0.5rem;
    margin-left: 1rem;
}

.ci-content-card ul ul li::before {
    width: 6px;
    height: 6px;
    background: #8b5cf6;
}

.ci-impact-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.ci-impact-card:hover {
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.2);
    transform: translateY(-8px);
}

.ci-comparison-table {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ci-comparison-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.ci-comparison-table thead th {
    padding: 1.5rem 1rem;
    font-weight: 600;
    border: none;
}

.ci-comparison-table tbody td {
    padding: 1.25rem 1rem;
    border-color: #e2e8f0;
}

.ci-comparison-table .highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    font-weight: 700;
    color: #6366f1;
}

.ci-comparison-table .highlight-header {
    background: rgba(255, 255, 255, 0.2);
}

.ci-feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid #6366f1;
}

.ci-feature-card:hover {
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.2);
    transform: translateY(-8px);
}

.ci-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
}

.ci-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.ci-cta-section .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .ci-hero-section {
        min-height: 70vh;
        background-attachment: scroll;
    }
    
    .ci-content-card,
    .ci-impact-card,
    .ci-feature-card {
        padding: 2rem;
    }
    
    .ci-image-box img {
        height: 300px;
    }
}
.coming-soon-card {
    background: #ffffff;
    border: 1px solid rgba(229, 57, 53, 0.25);
    position: relative;
}

/* NON-BUTTON label */
.coming-soon-label {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e53935;
    padding-bottom: 6px;
    border-bottom: 2px solid #475569;
}

/* Title emphasis */
.coming-title {
    color: #e53935;
}

/* Subtitle */
.coming-subtitle {
    color: #e53935;
}

/* Optional subtle glow */
.coming-soon-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    box-shadow: 0 0 0 1px rgba(229, 57, 53, 0.15);
    pointer-events: none;
}