/* ==================== GLOBAL STYLES ==================== */
:root {
    --primary-color: #0066cc;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.2);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.25);
    --transition: all 0.3s ease;
    --gray-900: #111827;
    --blue-800: #1e40af;
    --blue-900: #1e3a8a;
    --indigo-900: #312e81;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    overflow-x: hidden;
}

.loaded {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==================== NAVIGATION ==================== */
#mainNav {
    background: rgba(26, 26, 46, 1) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 1030 !important;
}

#mainNav.navbar-scrolled {
    background: rgba(26, 26, 46, 1) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff !important;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand img {
    transition: var(--transition);
    filter: brightness(1);
    max-height: 40px;
}

.navbar-brand:hover img {
    filter: brightness(1.2);
}

.navbar-brand i {
    font-size: 2rem;
    color: var(--primary-color);
}

.brand-text {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: #ccc;
    font-weight: 400;
    line-height: 1;
    display: block;
}

.nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: #fff !important;
}

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

/* ==================== HERO SECTION ==================== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--blue-900) 50%, var(--indigo-900) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    padding: 150px 0 50px;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(118, 75, 162, 0.2) 0%, transparent 50%);
    animation: pulseOverlay 10s ease-in-out infinite;
}

@keyframes pulseOverlay {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-meta {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(255,255,255,0.2);
}

.innovation-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.innovation-badge i {
    margin-right: 0.5rem;
}

.company-name {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.company-tagline {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.company-info {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.company-info i {
    color: var(--primary-color);
    margin: 0 0.5rem;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.hero-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

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

.pulse-button.pulse {
    animation: pulse 1s;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 2;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Fade in animations */
.animate-fade-in,
.animate-fade-in-delay-1,
.animate-fade-in-delay-2,
.animate-fade-in-delay-3,
.animate-fade-in-delay-4 {
    opacity: 0;
    transition: opacity 0.8s ease-in;
}

/* ==================== SECTIONS ==================== */
.section-padding {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-intro {
    font-size: 1.2rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

/* ==================== STATS CARD ==================== */
.stats-card {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    transition: var(--transition);
}

.stat-item:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

.stat-item.highlight {
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 50%, var(--indigo-900) 100%);
    color: #fff;
}

.stat-item.highlight:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.stat-item.highlight .stat-label {
    color: rgba(255,255,255,0.9);
}

/* ==================== VULNERABILITY GRID ==================== */
.vulnerability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.vulnerability-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.vulnerability-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.vulnerability-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.vulnerability-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #fff;
}

.bg-orange {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.vulnerability-card h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.vulnerability-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ==================== GRADIENTS ==================== */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--blue-900) 50%, var(--indigo-900) 100%);
    transition: background 2s ease;
}

.bg-gradient-primary.gradient-shift {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--blue-900) 50%, var(--indigo-900) 100%);
}

/* ==================== TABLES ==================== */
.table {
    font-size: 0.95rem;
}

.table thead th {
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color);
}

.table tbody tr {
    transition: var(--transition);
}

.table tbody tr:hover,
.table tbody tr.table-hover-active {
    background: rgba(102, 126, 234, 0.1);
    transform: scale(1.02);
}

/* ==================== IMPERATIVE GRID ==================== */
.imperative-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.imperative-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.imperative-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.imperative-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.imperative-card h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.imperative-card p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

/* ==================== FEATURE GRID ==================== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-top-color: #764ba2;
}

.feature-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ==================== ACCORDION ==================== */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.5rem;
    background: #fff;
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.accordion-button:hover {
    background: rgba(102, 126, 234, 0.1);
}

.accordion-button:not(.collapsed):hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.accordion-body {
    padding: 2rem;
    background: #f8f9fa;
}

.sector-benefits {
    list-style: none;
    padding: 0;
}

.sector-benefits li {
    padding: 0.75rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.sector-benefits li i {
    margin-right: 1rem;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.impact-badge {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    font-weight: 600;
}

/* ==================== WHY CARDS ==================== */
.why-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
}

.why-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.why-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.why-card ul {
    list-style: none;
    padding: 0;
}

.why-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    font-size: 0.95rem;
}

.why-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* ==================== URGENCY GRID ==================== */
.urgency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.urgency-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.urgency-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.urgency-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
}

.urgency-card h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.urgency-card h4 i {
    margin-right: 0.5rem;
    color: var(--warning-color);
}

.urgency-card ul {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.urgency-card p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.urgency-question {
    background: rgba(255,193,7,0.2);
    border-left: 4px solid var(--warning-color);
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    font-weight: 600;
    color: #fff;
}

/* ==================== START CARDS ==================== */
.start-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    height: 100%;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.start-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.start-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.3);
}

.start-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.start-card h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.start-duration {
    background: rgba(255,255,255,0.2);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.start-card ul {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    padding-left: 1.5rem;
}

.start-card ul li {
    padding: 0.3rem 0;
}

.start-outcome {
    background: rgba(40,167,69,0.3);
    padding: 1rem;
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    margin-top: 1rem;
}

/* ==================== CONTACT CTA ==================== */
.contact-cta {
    padding: 2rem 0;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark-color);
    border-top: 3px solid var(--primary-color);
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1000;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ==================== CONTENT BLOCKS ==================== */
.content-block {
    margin-bottom: 3rem;
}

.content-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .vulnerability-grid,
    .feature-grid,
    .imperative-grid,
    .urgency-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta .btn {
        display: block;
        margin: 0.5rem 0;
    }

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

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .company-name {
        font-size: 1.5rem;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .brand-text {
        font-size: 1.4rem;
    }
}

/* ==================== ANIMATIONS ==================== */
.pop-in {
    animation: popIn 0.5s ease;
}

@keyframes popIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.section-visible {
    animation: slideInUp 0.8s ease;
}

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

/* ==================== PAGE HEADER ==================== */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--blue-900) 50%, var(--indigo-900) 100%);
    position: relative;
}

.breadcrumb {
    background: rgba(255,255,255,0.1);
    padding: 0.75rem 1rem;
    border-radius: 50px;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #1a1a2e 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(118, 75, 162, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

/* ==================== FOOTER STYLES ==================== */
.footer {
    background: #212529;
    border-top: 3px solid var(--primary-color);
}

/* Bootstrap utility helper classes */
.hover-text-primary {
    transition: color 0.3s ease;
}

.hover-text-primary:hover {
    color: #0dcaf0 !important;
}

.text-light-emphasis {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Scroll to top button */
#scrollTop {
    display: none;
    transition: all 0.3s ease;
}

#scrollTop:hover {
    transform: translateY(-5px);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.8);
}

.footer-contact-list li i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-contact-list a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

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

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    border-radius: 50px 0 0 50px;
    padding: 0.75rem 1.5rem;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 0.75rem 2rem;
}

/* ==================== CONTACT PAGE ==================== */
.contact-info-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.contact-info-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-info-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-form-card {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 15px;
}

.contact-form-card .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    transition: var(--transition);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

/* ==================== PATHWAY CARDS ==================== */
.pathway-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.pathway-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pathway-card-featured {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.pathway-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.pathway-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pathway-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.pathway-duration {
    background: rgba(102, 126, 234, 0.1);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.pathway-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pathway-features li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
}

.pathway-features li i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

.pathway-outcome {
    background: rgba(40,167,69,0.1);
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #666;
    margin-top: 1rem;
}

/* ==================== SECTOR ICON ==================== */
.sector-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 1.5rem;
}

/* ==================== VALUE CARDS ==================== */
.value-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 1.5rem;
}

.value-card h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ==================== ABOUT IMAGE CARD ==================== */
.about-image-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 3rem;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-stats-overlay {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-weight: 600;
}

/* ==================== IMPERATIVE BOX ==================== */
.imperative-box {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.imperative-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.imperative-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.imperative-box h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.imperative-box p {
    color: #666;
    font-size: 0.95rem;
}

/* ==================== GET STARTED BUTTON IN NAV ==================== */
.btn-get-started {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px;
    margin-left: 1rem;
}

.btn-get-started:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: scale(1.05);
}

.btn-get-started::after {
    display: none;
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .navbar,
    .scroll-indicator,
    .scroll-to-top,
    .hero-cta,
    .footer-social,
    .newsletter-form {
        display: none;
    }

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