/* Import modern typography */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --secondary: #6c757d;
    --light: #f8f9fa;
    --dark: #111418;
    --success: #198754;
    --accent: #6610f2;
    --navbar-height: 90px;
    --navbar-collapsed-bg: rgba(15, 23, 42, 0.95);
    --glass-bg: rgba(15, 23, 42, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    padding-top: 0;
    overflow-x: hidden;
}

/* Typography and Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Custom Buttons with Premium Shadow and Transitions */
.btn {
    border-radius: 8px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

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

.btn-light {
    background-color: white;
    color: var(--primary);
    border: none;
}

.btn-light:hover {
    background-color: #f1f3f5;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.bg-primary {
    background-color: var(--primary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

/* --- Expanded and Sleek Glassmorphism Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: rgba(15, 23, 42, 0.92) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Scrolling/Sticky Solid State with Glassmorphism */
.navbar.navbar-scrolled {
    position: fixed;
    height: 80px;
    background-color: rgba(15, 23, 42, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Nav Brand Logo scale-up */
.navbar-brand img {
    height: 55px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.navbar-scrolled .navbar-brand img {
    height: 46px;
}

/* Navigation Links - Expanded for Icons and Spacing */
.navbar-nav {
    gap: 10px; /* Space between navbar link list items */
}

.navbar-nav .nav-link {
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 1) !important;
    padding: 0.5rem 1.5rem !important; /* Expanded horizontal padding */
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Gap between icon and text */
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #00f2fe !important; /* Light cyan text highlight on hover/active */
}

/* Custom interactive underline hover effect */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 1.5rem;
    background-color: #00f2fe;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 3rem);
}

/* Scroll Progress Line */
.scroll-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00f2fe 0%, #4facfe 100%);
    transition: width 0.1s ease-out;
}

/* Mobile Navbar Collapsed State */
@media (max-width: 991.98px) {
    .navbar {
        height: auto;
        background-color: rgba(15, 23, 42, 0.65) !important;
        padding: 0.8rem 0;
    }
    
    .navbar.navbar-scrolled,
    .navbar:has(.navbar-collapse.show) {
        height: auto;
        background-color: rgba(15, 23, 42, 0.96) !important;
    }

    .navbar-brand img {
        height: 44px;
    }
    
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.05);
        border-radius: 8px;
        padding: 1rem;
        margin-top: 0.5rem;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem !important;
    }
}

/* --- Hero Section (Page Header) --- */
/* --- Hero Section (Page Header) --- */
.hero-section {
    background:
        linear-gradient(
            90deg,
            rgba(5, 10, 20, 0.94) 0%,
            rgba(5, 10, 20, 0.75) 40%,
            rgba(5, 10, 20, 0.15) 75%,
            transparent 100%
        ),
        url('../images/1619495239807.jpg') no-repeat center center / cover;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-eyebrow {
    font-size: .875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

.hero-section h1 {
    font-size: clamp(3rem, 6.5vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    max-width: 750px;
}

.btn-hero-primary {
    background: #2563eb;
    color: white;
    border: none;
}

.btn-hero-primary:hover {
    background: #1d4ed8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .hero-section {
        background:
            linear-gradient(
                180deg,
                rgba(5, 10, 20, 0.95) 0%,
                rgba(5, 10, 20, 0.8) 100%
            ),
            url('../images/1619495239807.jpg') no-repeat center center / cover;
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 4rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

/* Stats Box Styling */
.stats-box {
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.75rem;
    text-align: center;
    color: white;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stats-box:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.18);
}

/* Service Card Styles */
.service-card {
    position: relative;
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #fff;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.08) rotate(6deg);
}

.service-card-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
}

.service-card-text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.8;
}

.service-features-label {
    font-size: .8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features-label::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background-color: #e2e8f0;
}

.service-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features-list li {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #334155;
    background: #fff;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-features-list li:hover {
    background: #f8fafc;
    transform: translateX(6px);
    border-color: #cbd5e1;
}

.btn-service-cta {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}

.btn-service-cta:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}


/* Career Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, #084ab2 50%, var(--accent) 100%);
    padding: 10rem 0 6rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    position: relative;
    padding-bottom: 1.25rem;
    margin-bottom: 2.25rem;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 65px;
    height: 5px;
    background: var(--primary);
    border-radius: 3px;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Benefit Cards */
.benefit-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.08);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

/* Job Cards Styles */
.job-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #fff;
}

.job-card.expanded {
    transform: scale(1.01);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    z-index: 5;
    position: relative;
}

.job-tag {
    background-color: rgba(13, 110, 253, 0.08);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Testimonial Cards & Section Premium Redesign */
.testimonials-section-container {
    background-color: #ffffff !important;
    padding: 80px 0;
}

.testimonials-max-width {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-section-container .lead {
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-section-container .about-eyebrow {
    color: #2563eb;
}

.testimonials-section-container h2 {
    color: #0f172a !important;
}

.testimonials-section-container hr {
    border-color: #e2e8f0 !important;
    opacity: 0.8;
}

/* Wrapper specifically for the testimonial cards */
.testimonials-cards-wrapper {
    background: linear-gradient(135deg, #e0e7ff 0%, #eef2ff 50%, #f3e8ff 100%) !important;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.05);
}

.testimonial-card {
    position: relative;
    background-color: #FFFFFF !important;
    border-radius: 20px;
    padding: 32px !important;
    height: 100%;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.1) !important;
    border-color: #cbd5e1 !important;
}

.testimonial-quote-icon {
    font-size: 5rem;
    opacity: 0.06;
    position: absolute;
    top: 10px;
    right: 25px;
    font-family: serif;
    color: #111827;
    line-height: 1;
    pointer-events: none;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.testimonial-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
}

.testimonial-role {
    font-size: 0.9rem;
    color: #6B7280;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
}

.testimonial-stars i {
    color: #2563eb;
    font-size: 1rem;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #374151;
    font-weight: 400;
    margin-bottom: 0;
}

/* Partner Logo Effects */
.partner-logo {
    filter: none;
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-logo:hover {
    transform: scale(1.1);
}


/* Form Styles */
form .form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}

form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

/* Social icons and Contact */
.social-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    background-color: rgba(13, 110, 253, 0.08);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    flex-shrink: 0;
    color: var(--primary);
}

footer {
    background-color: var(--dark);
    color: #a0aec0;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff !important;
}

/* Career Page Elements */
.job-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.job-details.expanded {
    max-height: 1000px;
}

.culture-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.process-step {
    position: relative;
    text-align: center;
    padding: 0 1.5rem;
}

.process-step::before {
    content: attr(data-step);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.open-position {
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.open-position:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

.job-description {
    line-height: 1.6;
}

.job-requirements {
    margin-top: 1.5rem;
}

.requirements-list {
    padding-left: 1.5rem;
}

.requirements-list li {
    margin-bottom: 0.5rem;
}

.back-to-jobs {
    display: none;
    margin-bottom: 1rem;
}

.job-card.expanded .back-to-jobs {
    display: block;
}

/* Custom layout expansion overrides to occupy more screen space */
@media (min-width: 1200px) {
    .container {
        max-width: 90% !important;
    }
}
@media (min-width: 1600px) {
    .container {
        max-width: 92% !important;
    }
}
@media (min-width: 2000px) {
    .container {
        max-width: 1800px !important;
    }
}

/* --- About Section Premium Redesign --- */
.about-section-container {
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.06), transparent 45%), #f8fafc !important;
    position: relative;
    overflow: hidden;
}

.about-eyebrow {
    font-size: .85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: #2563eb;
}

.about-heading {
    max-width: 500px;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.15;
    font-weight: 800;
    color: #0f172a;
}

.about-body-text {
    max-width: 600px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #64748b;
}

/* Feature Cards Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 576px) {
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-feature-card {
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

.about-feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.about-feature-card:hover .about-feature-icon {
    transform: scale(1.1);
}

.about-feature-card h4 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.about-feature-card p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Image Container with Floating Cards */
.about-image-wrapper {
    position: relative;
    padding: 20px;
    height: 750px;
    display: flex;
    align-items: stretch;
}

.about-image-wrapper img {
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 4px solid #fff;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

.floating-stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 24px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
    transition: transform 0.3s ease;
}

.floating-stat-card:hover {
    transform: scale(1.05);
}

.floating-stat-card.stat-left {
    top: 15%;
    left: -10px;
}

.floating-stat-card.stat-right {
    bottom: 15%;
    right: -10px;
}

@media (max-width: 991.98px) {
    .floating-stat-card.stat-left {
        left: 10px;
    }
    .floating-stat-card.stat-right {
        right: 10px;
    }
}

/* --- Contact Section Premium Redesign --- */
.contact-section-container {
    background-color: #F8FAFC !important;
    padding: 100px 0;
}

.contact-info-panel {
    padding: 40px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    height: 100%;
}

.contact-info-panel h3 {
    font-weight: 700;
    color: #0f172a;
}

.contact-info-panel .contact-info-item {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
}

.contact-info-panel .contact-icon {
    background-color: rgba(37, 99, 235, 0.08);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    flex-shrink: 0;
    color: #2563eb;
    font-size: 1.25rem;
}

.contact-form-card {
    background: white;
    padding: 48px !important;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,.06);
    border: 1px solid #f1f5f9;
}

.contact-form-card .form-control {
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    padding: 12px 20px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.contact-form-card input.form-control {
    height: 56px;
}

.contact-form-card .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}

.contact-submit-btn {
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #1d4ed8, #2563eb) !important;
}

.contact-trust-signals {
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* --- Premium Footer Redesign --- */
footer {
    background: linear-gradient(180deg, #0f172a, #020617) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    background: #2563eb;
    color: white !important;
    transform: translateY(-3px);
}

.footer-link {
    color: #94a3b8 !important;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #2563eb !important;
    transform: translateX(4px);
}

.footer-newsletter-input {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    height: 48px;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 0.95rem;
}

.footer-newsletter-input:focus {
    border-color: #2563eb !important;
    box-shadow: none !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
}

.footer-newsletter-btn {
    height: 48px;
    border-radius: 12px;
    background: #2563eb !important;
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-newsletter-btn:hover {
    background: #1d4ed8 !important;
}

/* Captcha styling */
.captcha-code-box {
    background-color: #f3f4f6;
    border: 1px solid #d1d5db;
    letter-spacing: 6px;
    font-family: 'Courier New', Courier, monospace;
    min-width: 140px;
    font-size: 1.35rem;
    font-weight: 700;
    color: #374151;
    text-decoration: line-through;
    font-style: italic;
    background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04) 10px, transparent 10px, transparent 20px);
    display: inline-block;
    padding: 6px 16px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}




