/* Home Page Enhancements - Modern Professional Styles */

/* Blog Section - Responsive modern cards */
.blog-section { padding: 3.5rem 0; }
.blog-section .section-header .section-subtitle { color: #0d47a1; font-weight:700; }
.blog-grid { display: grid; gap: 2rem; justify-content: center; align-items: start; margin: 0 auto; }
/* Mobile-first: single column */
.blog-grid { grid-template-columns: 1fr; max-width: 720px; }

/* Tablet: two wider columns */
@media (min-width: 720px) {
    .blog-grid { grid-template-columns: repeat(2, minmax(360px, 1fr)); max-width: 1000px; }
}

/* Desktop: three centered fixed-width cards for a modern magazine layout */
@media (min-width: 1200px) {
    .blog-grid { grid-template-columns: repeat(3, 420px); max-width: 1320px; }
}

.blog-card { background: linear-gradient(180deg,#ffffff,#fbfdff); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 14px 40px rgba(7,12,27,0.06); transition: transform .32s cubic-bezier(.2,.9,.3,1), box-shadow .32s ease; width: 100%; }
.blog-card:hover { transform: translateY(-10px) scale(1.01); box-shadow: 0 30px 90px rgba(7,12,27,0.14); }
.blog-card .card-media { width: 100%; height: 260px; overflow: hidden; background: #eee; }
.blog-card .card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.2,.9,.3,1); }
.blog-card:hover .card-media img { transform: scale(1.05); }
.blog-card .card-body { padding: 1.1rem 1.25rem; display:flex; flex-direction:column; gap:0.6rem; }
.blog-card .card-meta { display:flex; gap:0.75rem; align-items:center; color:#64748b; font-size:0.9rem; }
.blog-card .card-meta .author { display:flex; gap:0.5rem; align-items:center; }
.blog-card .card-title { font-size:1.15rem; color:#07112a; font-weight:800; margin:0.15rem 0 0.25rem; }
.blog-card .card-excerpt { color:#475569; font-size:0.98rem; line-height:1.6; margin-bottom: 0.5rem; }
.blog-card .card-footer { display:flex; justify-content:space-between; align-items:center; gap:1rem; margin-top:auto; }
.blog-card .read-more { background: linear-gradient(90deg,#f9b233,#ff8f00); color:#07112a; padding:0.6rem 1rem; border-radius:10px; font-weight:800; display:inline-flex; align-items:center; gap:0.6rem; text-decoration:none; box-shadow: 0 8px 22px rgba(249,178,51,0.14); }
.blog-card .tags { display:flex; gap:0.5rem; align-items:center; }
.blog-card .tag { background:#eef2ff; color:#0d47a1; padding:0.28rem 0.6rem; border-radius:8px; font-weight:700; font-size:0.82rem; }

@media (max-width: 991px) {
    .blog-card .card-media { height: 200px; }
    .blog-card .card-body { padding: 0.95rem; }
}



/* Modern Navigation Styles */
.modern-nav {
    /* sit below the topbar via JS-updated --topbar-height */
    top: var(--topbar-height);
    left: 0;
    right: 0;
    position: fixed;
    width: 100%;
    background: rgba(7, 12, 27, 0.65);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.28s cubic-bezier(0.23, 1, 0.320, 1);
    padding: 0.7rem 0;
    z-index: 2150;
}

/* Desktop nav layout polish */
.modern-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.navbar-nav { display: flex; align-items: center; gap: 0.5rem; }
.navbar-nav .nav-link { padding: 0.45rem 0.8rem !important; text-transform: none; letter-spacing: 0.2px; border-radius: 8px; }
.navbar-nav .nav-link { color: rgba(255,255,255,0.92) !important; }
.navbar-nav .nav-link::before { display:none; }
.navbar-nav .nav-link:hover { color: #fff !important; background: rgba(255,255,255,0.04); transform: translateY(-2px); }

.navbar-brand { display:flex; align-items:center; gap:0.6rem; }
.nav-logo { width:48px; height:48px; }
.brand-text { font-size:1.15rem; }

/* subtle underline animation for links */
.navbar-nav .nav-link { position: relative; }
.navbar-nav .nav-link::after { content: ''; position: absolute; left: 20%; right: 20%; bottom: 8px; height: 2px; background: linear-gradient(90deg,#f9b233,#ff8f00); transform: scaleX(0); transform-origin: left; transition: transform .28s ease; border-radius:2px; }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { transform: scaleX(1); }

.modern-nav.scrolled {
    background: rgba(13, 71, 161, 0.98);
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(13, 71, 161, 0.3);
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.brand-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.text-accent {
    color: #f9b233;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, #f9b233, #ff8f00);
    border: none;
    color: white !important;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 4px 12px rgba(249, 178, 51, 0.3);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(249, 178, 51, 0.4);
    color: white !important;
}

/* Mobile Navigation Improvements */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Navigation - Modern Professional Tech Style */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: var(--topbar-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--topbar-height));
        background: linear-gradient(135deg, rgba(7,12,27,0.98) 0%, rgba(10,20,40,0.98) 100%);
        backdrop-filter: blur(18px);
        z-index: 9999;
        padding: 2rem 1.25rem;
        /* slide in from right for a modern feel */
        transform: translateX(100%);
        transition: transform 0.36s cubic-bezier(0.23, 1, 0.320, 1);
        overflow-y: auto;
        border-left: 1px solid rgba(255, 255, 255, 0.03);
    }
    
    .navbar-collapse.show {
        transform: translateX(0);
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0;
        margin-top: 4rem;
    }
    
    .navbar-nav .nav-link {
        padding: 1.5rem 2rem !important;
        margin: 0.5rem 0;
        border-radius: 20px;
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 1.2rem;
        font-weight: 600;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
    }
    
    .navbar-nav .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(135deg, #f9b233, #ff8f00);
        transform: scaleY(0);
        transition: transform 0.4s ease;
        border-radius: 0 2px 2px 0;
    }
    
    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        background: linear-gradient(135deg, #f9b233, #ff8f00);
        border-radius: 50%;
        opacity: 0;
        transition: all 0.4s ease;
        box-shadow: 0 0 10px rgba(249, 178, 51, 0.5);
    }
    
    .navbar-nav .nav-link:hover::before,
    .navbar-nav .nav-link.active::before {
        transform: scaleY(1);
    }
    
    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: rgba(255, 255, 255, 0.15);
        transform: translateX(15px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        border-color: rgba(249, 178, 51, 0.3);
    }
    
    .navbar-nav .nav-link i {
        font-size: 1.1rem;
        width: 24px;
        text-align: center;
        color: #f9b233;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover i {
        transform: scale(1.2);
        color: #fff;
    }
    
    .btn-accent {
        margin-top: 2rem;
        width: 100%;
        padding: 1.5rem;
        font-size: 1.3rem;
        font-weight: 700;
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(249, 178, 51, 0.4);
        background: linear-gradient(135deg, #f9b233, #ff8f00);
        border: none;
        transition: all 0.3s ease;
    }
    
    .btn-accent:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 50px rgba(249, 178, 51, 0.5);
    }
    
    /* Modern hamburger menu */
    .navbar-toggler {
        position: relative;
        z-index: 10000;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 16px;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .navbar-toggler:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        transform: scale(1.05);
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(249, 178, 51, 0.3);
    }
    
    .navbar-toggler-icon {
        width: 24px;
        height: 24px;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler.collapsed .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M6 6l18 18M6 24L24 6'/%3e%3c/svg%3e");
        transform: rotate(180deg);
    }
    
    /* Professional grid overlay */
    .navbar-collapse::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        opacity: 0.5;
        pointer-events: none;
    }
    
    /* Enhanced mobile contact footer */
    .mobile-nav-footer {
        position: absolute;
        bottom: 2rem;
        left: 2rem;
        right: 2rem;
        padding: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        backdrop-filter: blur(10px);
    }
    
    .mobile-contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 1rem;
        font-size: 0.95rem;
        padding: 0.5rem 0;
        transition: all 0.3s ease;
    }
    
    .mobile-contact-item:hover {
        color: white;
        transform: translateX(5px);
    }
    
    .mobile-contact-item i {
        width: 24px;
        height: 24px;
        text-align: center;
        color: #f9b233;
        background: rgba(249, 178, 51, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }
    
    .mobile-contact-item:hover i {
        background: #f9b233;
        color: white;
        transform: scale(1.1);
    }
}

/* Enhanced Hero Section */
.hero-3d-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0A192F 0%, #1a365d 50%, #2d3748 100%);
    padding-top: 120px;
}

#canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(13, 71, 161, 0.2);
    border: 1px solid rgba(13, 71, 161, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    color: #4FD1C5;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.text-gradient {
    background: linear-gradient(135deg, #4FD1C5 0%, #f9b233 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    min-width: 200px;
    justify-content: center;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #f9b233, #ff8f00);
    color: #0A192F;
    box-shadow: 0 8px 24px rgba(249, 178, 51, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(249, 178, 51, 0.4);
    color: #0A192F;
}

.hero-btn-secondary {
    background: transparent;
    border: 2px solid #4FD1C5;
    color: #4FD1C5;
}

.hero-btn-secondary:hover {
    background: #4FD1C5;
    color: #0A192F;
    transform: translateY(-3px);
}

/* Enhanced Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(13, 71, 161, 0.1);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #0d47a1, #1976d2);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 48px rgba(13, 71, 161, 0.2);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    color: white;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    background: linear-gradient(135deg, #f9b233, #ff8f00);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f9b233, #ff8f00);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f9b233, #ff8f00);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.pricing-card.featured .pricing-icon {
    background: rgba(255, 255, 255, 0.2);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1rem;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #0d47a1;
}

.pricing-card.featured .amount {
    color: white;
}

.period {
    font-size: 1rem;
    color: #6c757d;
}

.pricing-card.featured .period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-description {
    color: #6c757d;
    margin-bottom: 2rem;
}

.pricing-card.featured .pricing-description {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-features i {
    color: #28a745;
    font-size: 1.1rem;
}

.pricing-card.featured .pricing-features i {
    color: #4FD1C5;
}

.pricing-footer {
    text-align: center;
}

/* Partners Section - Enhanced Professional Display */
.partners-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(13,71,161,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.partners-grid {
    display: flex;
    width: max-content;
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
    animation: marquee 30s linear infinite;
    padding-left: 2.5rem;
}

@keyframes marquee {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause animation on hover */
.partners-slider-container:hover .partners-grid {
    animation-play-state: paused;
}

.partners-slider-container {
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.partner-item {
    flex: 0 0 280px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    height: 180px;
}

.partner-logo {
    position: relative;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(13, 71, 161, 0.05);
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #0d47a1, #f9b233);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-logo img {
    width: 100%;
    max-width: 140px;
    height: 90px;
    object-fit: contain;
    filter: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.partner-item:hover .partner-logo {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.partner-item:hover .partner-logo::before {
    opacity: 1;
}

.partner-item:hover .partner-logo img {
    transform: scale(1.1);
    filter: brightness(1.1) saturate(1.2);
}

.partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.95), rgba(25, 118, 210, 0.95));
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.partner-item:hover .partner-overlay {
    opacity: 1;
}

.partner-info {
    text-align: center;
    padding: 1.5rem;
}

.partner-overlay h4 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    color: white;
}

/* ------------------------------------------------------------------ */
/* Migrated inline styles from index.html / home.html                  */
/* These were originally inline; moved here for maintainability        */
/* ------------------------------------------------------------------ */

/* Branding overrides */
.services-item .fa-check { color: #0d47a1 !important; }

/* Blog improvements (kept minimal to avoid duplication) */
.blog-item { overflow: hidden; border-radius: 12px; box-shadow: 0 6px 24px rgba(13,71,161,0.08); }
.blog-item img { width: 100%; height: 220px; object-fit: cover; display: block; }
.blog-content { padding: 1rem 1.25rem; }
.read-more { font-size: .85rem; padding: .35rem .7rem; border-radius: 999px; }
.blog-btn { gap: .5rem; }

/* Team social icons */
.team-icon .btn { width: 40px; height: 40px; padding: 0; display: inline-flex; align-items: center; justify-content: center; border-radius: 50% !important; background: #0d47a1; color: #fff; border: none; }
.team-icon .btn i { font-size: 0.9rem; }

/* Footer full-width adjustments migrated from inline */
footer.footer, .footer-full-width { background: #07112a !important; color: #e6eef8; padding: 2.25rem 0 1rem; z-index: 2000; box-sizing: border-box; }
.footer-full-width { width: 100vw; left: 50%; transform: translateX(-50%); position: relative; flex-shrink: 0; }
.footer-full-width .footer-container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; box-sizing: border-box; }
.footer-full-width .footer-content { text-align: left; }
@media (max-width: 992px) {
    .footer-full-width .footer-content, .footer-full-width .footer-section { text-align: center; }
    .footer-full-width .footer-container { padding-left: 1.25rem; padding-right: 1.25rem; }
    .footer-full-width .footer-bottom .footer-bottom-container { text-align: center; }
}
body { padding-bottom: 0; min-height: 100vh; }
footer.footer .footer-section a, .footer-full-width .footer-section a { color: #cfe3ff; }
footer.footer .footer-bottom, .footer-full-width .footer-bottom { border-top: 1px solid rgba(255,255,255,0.04); margin-top: 1.5rem; padding-top: 1rem; }

/* Navbar stacking */
.navbar { z-index: 2105; }
:root { --topbar-height: 56px; }

/* Loading screen (migrated from inline) */
#loading-screen { position: fixed; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(7,12,27,0.85); z-index: 99999; }
#loading-screen .loading-content { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; text-align: center; padding: 1rem; }
#loading-screen .loading-logo img.loading-logo-img { width: 96px; height: 96px; object-fit: contain; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.45); }
@media (min-width: 768px) { #loading-screen .loading-logo img.loading-logo-img { width: 120px; height: 120px; } }
#loading-screen .loading-text h2 { margin: 0; color: #fff; font-size: 1.25rem; }
#loading-screen .loading-text p { margin: 0; color: rgba(255,255,255,0.8); font-size: 0.95rem; }
#loading-screen .loading-progress { width: 160px; height: 6px; background: rgba(255,255,255,0.08); border-radius: 6px; overflow: hidden; }
#loading-screen .loading-progress .progress-bar { height: 100%; width: 0; background: linear-gradient(90deg,#f9b233,#ff8f00); animation: loading 1.8s infinite; }

/* AI Chat / Lottie enhancements (migrated) */
.ai-chat-container { position: relative; display: flex; align-items: center; justify-content: center; }
.ai-chat-background { position: absolute; width: 300px; height: 300px; background: radial-gradient(circle, rgba(13, 71, 161, 0.15), rgba(79, 209, 197, 0.15)); border-radius: 50%; filter: blur(30px); animation: pulse 4s ease-in-out infinite; }
.ai-chat-glow { position: absolute; width: 400px; height: 400px; background: conic-gradient(from 0deg, rgba(13, 71, 161, 0.3), rgba(79, 209, 197, 0.3), rgba(249, 178, 51, 0.3), rgba(13, 71, 161, 0.3)); border-radius: 50%; animation: rotate 12s linear infinite; filter: blur(20px); }
.ai-particles { position: absolute; width: 100%; height: 100%; pointer-events: none; }
.ai-particles .particle { position: absolute; border-radius: 50%; box-shadow: 0 0 10px rgba(249, 178, 51, 0.5); }
.ai-particles .particle.small { width:4px; height:4px; }

@keyframes pulse { 0%,100%{ transform: scale(1); opacity:0.6; } 50%{ transform: scale(1.1); opacity:0.8; } }
@keyframes rotate { from{ transform: rotate(0deg); } to{ transform: rotate(360deg); } }
@keyframes float { 0%,100%{ transform: translateY(0px) translateX(0px); opacity:0.7 } 25%{ transform: translateY(-20px) translateX(10px); opacity:1 } 50%{ transform: translateY(-10px) translateX(-15px); opacity:0.8 } 75%{ transform: translateY(-25px) translateX(5px); opacity:0.9 } }

@media (max-width: 768px) {
    .ai-chat-container lottie-player { max-width: 350px; transform: perspective(800px) rotateX(5deg) rotateY(-5deg) translateZ(10px); }
    .ai-chat-background { width: 200px !important; height: 200px !important; }
    .ai-chat-glow { width: 250px !important; height: 250px !important; }
}

@media (max-width: 576px) {
    .ai-chat-container lottie-player { max-width: 280px; transform: perspective(600px) rotateX(3deg) rotateY(-3deg) translateZ(5px); }
}

/* End migrated inline styles */

.partner-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.partner-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.partner-stats .stat {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Partnership Stats - Enhanced */
.partnership-stats {
    margin-top: 5rem;
    padding: 4rem 0;
    background: white;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.partnership-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.02), rgba(249, 178, 51, 0.02));
    pointer-events: none;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 32px rgba(13, 71, 161, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: linear-gradient(135deg, #f9b233, #ff8f00);
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(249, 178, 51, 0.4);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0d47a1;
    display: block;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    color: #495057;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Blog Section - Modern Professional Cards */
.blog-section {
    background: white;
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-item {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.blog-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #0d47a1, #f9b233);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-item:hover::before {
    opacity: 1;
}

.blog-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.blog-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-item:hover img {
    transform: scale(1.08);
}

.blog-content {
    padding: 2.5rem;
    position: relative;
}

.blog-content img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.blog-item:hover .blog-content img {
    transform: scale(1.1);
}

.blog-content h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-item:hover .blog-content h5 {
    color: #f9b233;
}

.blog-content small {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-content small::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #f9b233;
    border-radius: 50%;
}

.blog-content p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.blog-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.read-more {
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(13, 71, 161, 0.2);
}

.read-more::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    background: linear-gradient(135deg, #f9b233, #ff8f00);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 178, 51, 0.4);
    color: white;
}

.read-more:hover::after {
    transform: translateX(5px);
}

.blog-social {
    display: flex;
    gap: 0.75rem;
}

.blog-social .btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e9ecef;
    color: #6c757d;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    padding: 0;
    background: white;
    font-size: 1rem;
}

.blog-social .btn:hover {
    background: #0d47a1;
    border-color: #0d47a1;
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(13, 71, 161, 0.3);
}

.blog-social .btn:nth-child(2):hover {
    background: #e4405f;
    border-color: #e4405f;
}

/* Blog category badge */
.blog-item .position-absolute {
    background: linear-gradient(135deg, #0d47a1, #1976d2) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(13, 71, 161, 0.3) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Enhanced Contact Section */
.contact-form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-info-item {
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(13, 71, 161, 0.1);
}

/* Full-Width Footer */
.footer {
    background: linear-gradient(135deg, #0f1724 0%, #1a1a1a 100%);
    color: #e6eef8;
    padding: 4rem 0 2rem;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 0;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-logo span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social .social-link:hover {
    background: #f9b233;
    transform: translateY(-3px);
    color: white;
}

.footer-title {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-input {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-input input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.newsletter-input input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input button {
    background: linear-gradient(135deg, #f9b233, #ff8f00);
    border: none;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-input button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 178, 51, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partnership-stats .row > div {
        margin-bottom: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
}

/* Enhanced FAQ Section - Fixed Text Color Issues */
.pricing-faq {
    margin-top: 5rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95), rgba(233, 236, 239, 0.95));
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.pricing-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faq-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(13,71,161,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-pattern)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.faq-content {
    position: relative;
    z-index: 2;
}

.pricing-faq h3 {
    color: #0d47a1 !important;
    font-weight: 800 !important;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
}

.pricing-faq h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #f9b233, #ff8f00);
    border-radius: 2px;
}

.accordion-item {
    border: none !important;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: white !important;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.accordion-button {
    background: white !important;
    border: none !important;
    padding: 1.5rem 2rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #0d47a1 !important;
    border-radius: 16px !important;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d47a1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    width: 1.5rem !important;
    height: 1.5rem !important;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #0d47a1, #1976d2) !important;
    color: white !important;
    box-shadow: 0 4px 20px rgba(13, 71, 161, 0.3) !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    transform: rotate(180deg);
}

.accordion-button:not(.collapsed) i {
    color: #f9b233 !important;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.15) !important;
    border: none !important;
}

.accordion-button:hover {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.05), rgba(25, 118, 210, 0.05)) !important;
}

.accordion-body {
    padding: 2rem !important;
    background: white !important;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    color: #495057 !important;
    border-top: 1px solid rgba(13, 71, 161, 0.1);
}

.accordion-collapse {
    border-radius: 0 0 16px 16px;
    background: white !important;
}

/* FAQ Icons - Fixed Colors */
.accordion-button i {
    font-size: 1.2rem !important;
    width: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.accordion-button .fa-question-circle {
    color: #0d47a1 !important;
}

.accordion-button .fa-arrow-up {
    color: #28a745 !important;
}

.accordion-button .fa-cogs {
    color: #ffc107 !important;
}

.accordion-button .fa-clock {
    color: #17a2b8 !important;
}

/* Enhanced Contact Section - Responsive reCAPTCHA */
.recaptcha-container {
    width: 100%;
    max-width: 320px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 10px;
}

.g-recaptcha {
    width: 100% !important;
    transform: scale(0.9);
    transform-origin: center;
}

/* Mobile reCAPTCHA adjustments */
@media (max-width: 576px) {
    .recaptcha-container {
        max-width: 280px;
    }
    
    .g-recaptcha {
        transform: scale(0.8);
    }
}

@media (max-width: 480px) {
    .recaptcha-container {
        max-width: 260px;
    }
    
    .g-recaptcha {
        transform: scale(0.75);
    }
}

/* Footer - Remove bottom spacing */
body {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.footer {
    margin-bottom: 0 !important;
    padding-bottom: 2rem !important;
}

.footer-bottom {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Ensure footer sticks to bottom */
html, body {
    height: 100%;
}

#root, .main-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.footer {
    margin-top: auto;
}

/* Mobile FAQ Responsiveness */
@media (max-width: 768px) {
    .pricing-faq {
        margin: 2rem 1rem 0;
        padding: 2.5rem 1.5rem;
    }
    
    .pricing-faq h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .accordion-button {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .pricing-faq {
        margin: 1rem 0.5rem 0;
        padding: 2rem 1rem;
    }
    
    .pricing-faq h3 {
        font-size: 1.6rem;
    }
    
    .accordion-button {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .accordion-body {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
}
/* Final Footer Spacing Fixes */
html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.footer-full-width,
.footer {
    margin-bottom: 0 !important;
    padding-bottom: 2rem !important;
}

.footer-bottom {
    margin-bottom: 0 !important;
    padding-bottom: 1rem !important;
}

.copyright {
    margin-bottom: 0 !important;
}

/* Remove any extra spacing after footer */
.footer-full-width + *,
.footer + * {
    margin-top: 0 !important;
}

/* Ensure page ends at footer */
#root::after,
body::after {
    content: none !important;
    display: none !important;
}

/* Mobile Navigation - Additional Professional Touches */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        font-family: 'Space Grotesk', sans-serif;
        letter-spacing: 0.5px;
    }
    
    .navbar-nav .nav-link:hover {
        background: linear-gradient(135deg, rgba(249, 178, 51, 0.1), rgba(13, 71, 161, 0.1));
        border-left: 4px solid #f9b233;
        padding-left: 1.75rem !important;
    }
    
    .mobile-nav-footer {
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Enhanced Mobile reCAPTCHA */
@media (max-width: 400px) {
    .recaptcha-container {
        max-width: 240px;
        padding: 5px;
    }
    
    .g-recaptcha {
        transform: scale(0.7);
    }
}

/* Contact Form Mobile Enhancements */
@media (max-width: 576px) {
    .contact-form-card {
        margin: 1rem;
        border-radius: 20px;
    }
    
    .contact-form-card .p-4 {
        padding: 2rem 1.5rem !important;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .input-group-text {
        border-radius: 12px 12px 0 0 !important;
        justify-content: center;
        padding: 0.75rem;
    }
    
    .input-group .form-control {
        border-radius: 0 0 12px 12px !important;
    }
}
/* CRITICAL FAQ TEXT COLOR FIXES */
.accordion-button {
    color: #0d47a1 !important;
    background: white !important;
}

.accordion-button:not(.collapsed) {
    color: white !important;
    background: linear-gradient(135deg, #0d47a1, #1976d2) !important;
}

.accordion-body {
    color: #495057 !important;
    background: white !important;
}

.accordion-button i {
    color: inherit !important;
}

.accordion-button:not(.collapsed) i {
    color: #f9b233 !important;
}

/* PERFORMANCE OPTIMIZATION - Reduce Animation Delays */
[data-aos] {
    transition-duration: 0.4s !important;
}

[data-aos-delay="100"] { animation-delay: 0.05s !important; }
[data-aos-delay="200"] { animation-delay: 0.1s !important; }
[data-aos-delay="300"] { animation-delay: 0.15s !important; }
[data-aos-delay="400"] { animation-delay: 0.2s !important; }
[data-aos-delay="500"] { animation-delay: 0.25s !important; }
[data-aos-delay="600"] { animation-delay: 0.3s !important; }

/* Faster loading animations */
.animate-fadeIn {
    animation-duration: 0.6s !important;
}

.loading-screen .progress-bar {
    animation-duration: 1.5s !important;
}

/* Optimize section transitions */
.section-padding {
    animation: sectionFadeIn 0.6s ease-out;
}

@keyframes sectionFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* CRITICAL FIX: FAQ Text Color Issue */
.accordion-body {
    padding: 2rem !important;
    background: white !important;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    color: #495057 !important;
    border-top: 1px solid rgba(13, 71, 161, 0.1) !important;
}

.accordion-body * {
    color: #495057 !important;
}

.accordion-button {
    color: #0d47a1 !important;
}

.accordion-button:not(.collapsed) {
    color: white !important;
}

.accordion-item {
    background: white !important;
}

.accordion-collapse {
    background: white !important;
}
/* CRITICAL FAQ TEXT COLOR FIXES */
.accordion-button {
    color: #0d47a1 !important;
    background: white !important;
}

.accordion-button:not(.collapsed) {
    color: white !important;
    background: linear-gradient(135deg, #0d47a1, #1976d2) !important;
}

.accordion-body {
    color: #495057 !important;
    background: white !important;
}

.accordion-button i {
    color: inherit !important;
}

.accordion-button:not(.collapsed) i {
    color: #f9b233 !important;
}

/* PERFORMANCE OPTIMIZATION - Reduce Animation Delays */
[data-aos] {
    transition-duration: 0.4s !important;
}

[data-aos-delay="100"] { animation-delay: 0.05s !important; }
[data-aos-delay="200"] { animation-delay: 0.1s !important; }
[data-aos-delay="300"] { animation-delay: 0.15s !important; }
[data-aos-delay="400"] { animation-delay: 0.2s !important; }
[data-aos-delay="500"] { animation-delay: 0.25s !important; }
[data-aos-delay="600"] { animation-delay: 0.3s !important; }

/* Faster loading animations */
.animate-fadeIn {
    animation-duration: 0.6s !important;
}

.loading-screen .progress-bar {
    animation-duration: 1.5s !important;
}

/* Optimize section transitions */
.section-padding {
    animation: sectionFadeIn 0.6s ease-out;
}

@keyframes sectionFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* CRITICAL FAQ TEXT COLOR FIXES */
.accordion-button {
    color: #0d47a1 !important;
    background: white !important;
}

.accordion-button:not(.collapsed) {
    color: white !important;
    background: linear-gradient(135deg, #0d47a1, #1976d2) !important;
}

.accordion-body {
    color: #495057 !important;
    background: white !important;
}

.accordion-button i {
    color: inherit !important;
}

.accordion-button:not(.collapsed) i {
    color: #f9b233 !important;
}

/* PERFORMANCE OPTIMIZATION - Reduce Animation Delays */
[data-aos] {
    transition-duration: 0.4s !important;
}

[data-aos-delay="100"] { animation-delay: 0.05s !important; }
[data-aos-delay="200"] { animation-delay: 0.1s !important; }
[data-aos-delay="300"] { animation-delay: 0.15s !important; }
[data-aos-delay="400"] { animation-delay: 0.2s !important; }
[data-aos-delay="500"] { animation-delay: 0.25s !important; }
[data-aos-delay="600"] { animation-delay: 0.3s !important; }

/* Faster loading animations */
.animate-fadeIn {
    animation-duration: 0.6s !important;
}

.loading-screen .progress-bar {
    animation-duration: 1.5s !important;
}

/* Optimize section transitions */
.section-padding {
    animation: sectionFadeIn 0.6s ease-out;
}

@keyframes sectionFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* CRITICAL FAQ TEXT COLOR FIXES */
.accordion-button {
    color: #0d47a1 !important;
    background: white !important;
}

.accordion-button:not(.collapsed) {
    color: white !important;
    background: linear-gradient(135deg, #0d47a1, #1976d2) !important;
}

.accordion-body {
    color: #495057 !important;
    background: white !important;
}

.accordion-button i {
    color: inherit !important;
}

.accordion-button:not(.collapsed) i {
    color: #f9b233 !important;
}

/* PERFORMANCE OPTIMIZATION - Reduce Animation Delays */
[data-aos] {
    transition-duration: 0.4s !important;
}

[data-aos-delay="100"] { animation-delay: 0.05s !important; }
[data-aos-delay="200"] { animation-delay: 0.1s !important; }
[data-aos-delay="300"] { animation-delay: 0.15s !important; }
[data-aos-delay="400"] { animation-delay: 0.2s !important; }
[data-aos-delay="500"] { animation-delay: 0.25s !important; }
[data-aos-delay="600"] { animation-delay: 0.3s !important; }

/* Faster loading animations */
.animate-fadeIn {
    animation-duration: 0.6s !important;
}

.loading-screen .progress-bar {
    animation-duration: 1.5s !important;
}

/* Optimize section transitions */
.section-padding {
    animation: sectionFadeIn 0.6s ease-out;
}

@keyframes sectionFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* CRITICAL FIX: FAQ Text Color Issue */
.accordion-body {
    padding: 2rem !important;
    background: white !important;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    color: #495057 !important;
    border-top: 1px solid rgba(13, 71, 161, 0.1) !important;
}

.accordion-body * {
    color: #495057 !important;
}

.accordion-button {
    color: #0d47a1 !important;
}

.accordion-button:not(.collapsed) {
    color: white !important;
}

.accordion-item {
    background: white !important;
}

.accordion-collapse {
    background: white !important;
}
/* PERFORMANCE OPTIMIZATION: Faster Animations */
[data-aos] {
    transition-duration: 0.6s !important;
}

[data-aos="fade-up"] {
    transition-duration: 0.5s !important;
}

[data-aos="zoom-in"] {
    transition-duration: 0.4s !important;
}

/* Reduce animation delays for faster loading */
[data-aos-delay="100"] { transition-delay: 0.05s !important; }
[data-aos-delay="200"] { transition-delay: 0.1s !important; }
[data-aos-delay="300"] { transition-delay: 0.15s !important; }
[data-aos-delay="400"] { transition-delay: 0.2s !important; }
[data-aos-delay="500"] { transition-delay: 0.25s !important; }

/* Optimize loading screen */
.loading-screen {
    transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

/* Faster section loading */
.section-padding {
    animation: sectionFadeIn 0.6s ease-out;
}

@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optimize mobile navigation animations */
@media (max-width: 991.98px) {
    .navbar-collapse {
        transition: transform 0.3s cubic-bezier(0.23, 1, 0.320, 1) !important;
    }
    
    .navbar-nav .nav-link {
        transition: all 0.2s cubic-bezier(0.23, 1, 0.320, 1) !important;
    }
}

/* Optimize blog card animations */
.blog-item {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1) !important;
}

.blog-item img {
    transition: transform 0.3s ease !important;
}

/* Optimize partner animations */
.partner-item {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1) !important;
}

.partner-logo {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1) !important;
}

/* Optimize contact form animations */
.contact-form-card {
    animation: contactFormSlideIn 0.6s ease-out;
}

@keyframes contactFormSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Optimize AI chat animation container */
.ai-chat-container {
    animation: aiChatFadeIn 0.8s ease-out;
}

@keyframes aiChatFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Reduce particle animation complexity for better performance */
.particle {
    will-change: transform;
    animation-duration: 4s !important;
}

/* Optimize FAQ animations */
.accordion-item {
    transition: all 0.2s ease !important;
}

.accordion-button {
    transition: all 0.2s ease !important;
}

/* Preload critical animations */
.modern-nav,
.hero-section,
.section-padding {
    will-change: transform, opacity;
}

/* Optimize scroll performance */
html {
    scroll-behavior: smooth;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    
    [data-aos] {
        transition: none !important;
        animation: none !important;
    }
}

/* FAQ Visibility Fix */
.accordion-button:not(.collapsed) {
    color: #0d47a1 !important;
    background-color: rgba(13, 71, 161, 0.05) !important;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
    font-weight: 600;
}

.accordion-button {
    font-weight: 500;
    color: #0A192F;
}

.accordion-body {
    color: #4a5568 !important;
    background-color: #fff !important;
}

/* Contact Form Modernization */
.contact-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form-card .form-control {
    background: #f8faFc;
    border: 1px solid #edf2f7;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.contact-form-card .form-control:focus {
    background: #ffffff;
    border-color: #0d47a1;
    box-shadow: 0 0 0 4px rgba(13, 71, 161, 0.1);
}

.contact-form-card .btn-primary {
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    width: 100%;
    transition: transform 0.2s;
}

.contact-form-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 71, 161, 0.3);
}

/* Lottie Animation Responsiveness */
lottie-player {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .lottie-mobile-optimize {
        transform: scale(0.9);
        margin: 0 auto;
    }
    
    /* Ensure Hero Lottie is visible */
    .ai-chat-container lottie-player {
        height: 300px !important;
        margin-top: 20px;
    }
    
    /* Adjust Hero 3D Canvas opacity for readability */
    #canvas-container {
        opacity: 0.1 !important;
    }
}

/* Footer Improvements */
.footer {
    background: #0A192F; /* Deep Navy */
}

.footer h1 {
    font-size: 1.8rem;
}

.footer .btn-social {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer .btn-social:hover {
    background: #f9b233;
    border-color: #f9b233;
    color: #fff;
    transform: translateY(-3px);
}

/* --- Round 2 Refinements --- */

/* 1. Robot 3D Animation & Visibility */
.ai-chat-container {
    overflow: visible !important; /* Prevent clipping */
    perspective: 1000px;
    z-index: 20; /* Ensure on top of canvas */
}

.ai-chat-container lottie-player {
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
    transform: rotateY(-10deg) translateZ(20px);
    transition: transform 0.3s ease-out;
    width: 100% !important;
    height: auto !important;
    max-width: 600px; /* Limit size on large screens */
}

.ai-chat-container lottie-player:hover {
    transform: rotateY(0deg) translateZ(40px) scale(1.02);
}

@media (max-width: 768px) {
    .ai-chat-container lottie-player {
        height: 350px !important; /* Ensure enough height on mobile */
        margin-top: 2rem;
        transform: none !important; /* Simplify for mobile performance */
        filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
    }
}

/* 2. FAQ Text Visibility Fix (High Specificity) */
.accordion-collapse.show .accordion-body {
    color: #1a202c !important; /* Dark Gray */
    background-color: #ffffff !important;
}

/* Ensure icons remain colored */
.accordion-button:not(.collapsed) i {
    color: #0d47a1 !important; 
}

/* 3. Footer Modernization */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important; /* Deep Navy Gradient */
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.footer h5 {
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer .btn-link {
    text-decoration: none;
    color: #94a3b8 !important; /* Slate 400 */
    transition: all 0.3s ease;
    padding-left: 0;
}

.footer .btn-link:hover {
    color: #38bdf8 !important; /* Sky 400 */
    transform: translateX(5px);
}

.footer .btn-social {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

.footer .btn-social:hover {
    background: #0d47a1;
    border-color: #0d47a1;
    transform: translateY(-3px) rotate(5deg);
}

.footer .copyright {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}