/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Variables */
    --primary-color: #0A2463;       /* Deep Navy */
    --secondary-color: #FFFFFF;     /* White */
    --accent-color: #0D9488;        /* Teal */
    --light-bg: #F8FAFC;            /* Light Grey */
    --text-primary: #1E293B;        /* Dark Slate */
    --text-secondary: #64748B;      /* Slate Grey */
    --border-color: #E2E8F0;        /* Light Border */
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--secondary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-sm);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-family: var(--font-secondary);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #0b7c74;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.btn-small {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.875rem;
}

.btn-large {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.125rem;
}

/* ===== HEADER & NAVIGATION ===== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--secondary-color);
    box-shadow: var(--shadow-sm);
    padding: var(--space-sm) 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--primary-color);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.nav-menu {
    display: flex;
    gap: var(--space-xl);
    margin: 0 auto;
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.cta-nav {
    color: var(--accent-color);
    font-weight: 600;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: 0.3s;
}


/* ===== VALUE PROPOSITION ===== */
.value-section {
    padding: var(--space-2xl) 0;
    background-color: var(--secondary-color);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header h2 {
    color: var(--primary-color);
}

.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.value-card {
    padding: var(--space-lg);
    background-color: var(--secondary-color);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    padding: var(--space-2xl) 0;
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.service-card {
    padding: var(--space-lg);
    background-color: var(--secondary-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

.service-link {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 500;
    margin-top: var(--space-md);
}

.text-center {
    text-align: center;
}


/* ===== FOOTER ===== */
.main-footer {
    padding: var(--space-2xl) 0 var(--space-lg);
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}
/* ===== FORCE FOOTER 4-COLUMN GRID (ULTIMATE FIX) ===== */
.main-footer .footer-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.main-footer .footer-col {
    min-width: 0 !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    max-width: 100% !important;
    padding: 0 !important;
}

.main-footer .contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin-bottom: 8px !important;
}

.main-footer .contact-icon {
    flex-shrink: 0 !important;
    width: 20px !important;
    display: inline-block !important;
}

.main-footer .contact-item a {
    word-break: break-all !important;
    line-height: 1.4 !important;
    font-size: 14px !important;
}

/* Tablet: 2 columns */
@media (max-width: 992px) {
    .main-footer .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

/* Mobile: 1 column */
@media (max-width: 576px) {
    .main-footer .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}


.footer-col h4 {
    color: var(--secondary-color);
    margin-bottom: var(--space-md);
    font-size: 1.125rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo .logo-icon {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-md);
}

.footer-disclaimer {
    padding: var(--space-sm);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    margin-top: var(--space-md);
}

.footer-disclaimer small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.contact-info {
    margin-bottom: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
}

.contact-item a:hover {
    color: var(--accent-color);
}

.ican-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.ican-badge span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-xs);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        flex-direction: column;
        padding: var(--space-lg);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .value-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* ===== FORM STYLES ===== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: var(--space-sm);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

/* ===== PAGE SPECIFIC STYLES ===== */
.page-header {
    padding: var(--space-xl) 0;
    background-color: var(--light-bg);
    text-align: center;
}

.page-header h1 {
    color: var(--primary-color);
}

.service-detail {
    padding: var(--space-2xl) 0;
}

.service-category {
    margin-bottom: var(--space-2xl);
}

.service-list {
    list-style: none;
    margin-left: var(--space-md);
}

.service-list li {
    margin-bottom: var(--space-sm);
    padding-left: var(--space-lg);
    position: relative;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* ===== ABOUT PAGE STYLES - PROFESSIONAL ===== */
.founder-section {
    padding: var(--space-2xl) 0;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

/* Founder Profile Column */
.founder-profile {
    position: sticky;
    top: 100px;
}

.founder-image-container {
    background: var(--secondary-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.founder-image-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto var(--space-lg);
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    position: relative;
}

.founder-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-details {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-color);
}

.founder-name {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.founder-title {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.founder-role {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: var(--light-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.credential-icon {
    width: 22px; /* 1/10th of 220px image */
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credential-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.credential-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Founder Content Column */
.founder-content {
    padding-right: var(--space-lg);
}

.content-header {
    margin-bottom: var(--space-xl);
}

.content-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 500;
}

.founder-bio {
    margin-bottom: var(--space-2xl);
}

.founder-bio p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
    font-size: 1.0625rem;
}

.philosophy-intro {
    margin-bottom: var(--space-xl);
}

.philosophy-intro h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.philosophy-intro p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.philosophy-card {
    padding: var(--space-lg);
    background: var(--secondary-color);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.philosophy-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.philosophy-icon {
    font-size: 1.75rem;
    width: 48px;
    height: 48px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-card h4 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin: 0;
}

.philosophy-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Mission Section */
.mission-section {
    padding: var(--space-2xl) 0;
    background: var(--light-bg);
}

.section-intro {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.section-intro p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.mission-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card {
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mission-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
}

.card-dark {
    background: var(--primary-color);
    color: white;
}

.card-dark h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
}

.card-dark p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.0625rem;
}

.card-light {
    background: var(--secondary-color);
    border: 2px solid var(--accent-color);
}

.card-light h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
}

.card-light p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* Values Section */
.values-section {
    padding: var(--space-2xl) 0;
    background: var(--secondary-color);
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    max-width: 1100px;
    margin: 0 auto;
}

.value-item {
    padding: var(--space-lg);
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.value-number {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: var(--space-sm);
}

.value-item h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

.value-item p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA Banner */

.cta-content h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    line-height: 1.6;
}

.cta-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-top: var(--space-md);
    font-style: italic;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .founder-profile {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .founder-content {
        padding-right: 0;
    }
    
    .mission-cards {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .values-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .values-list {
        grid-template-columns: 1fr;
    }
    
    .content-header h2,
    .section-intro h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .founder-image-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .credential-icon {
        width: 20px;
        height: 20px;
    }
    
    .mission-card {
        padding: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .founder-image-wrapper {
        width: 120px;
        height: 120px;
        border-width: 2px;
    }
    
    .credential-icon {
        width: 18px;
        height: 18px;
    }
    
    .founder-name {
        font-size: 1.5rem;
    }
    
    .founder-title {
        font-size: 0.9375rem;
    }
    
    .content-header h2,
    .section-intro h2,
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .mission-icon {
        font-size: 2rem;
    }
}
/* ===== EXPERTISE PAGE STYLES ===== */
.expertise-intro {
    padding: var(--space-xl) 0;
    text-align: center;
}

.expertise-areas {
    padding: var(--space-2xl) 0;
    background: var(--light-bg);
}

/* REMOVED DUPLICATE: .expertise-grid and .expertise-card were defined twice */
/* Keeping only the definitions below (which are the correct ones) */

.expertise-card {
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--accent-color);
    transition: transform 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.expertise-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.expertise-list {
    list-style: none;
    margin-top: var(--space-md);
}

.expertise-list li {
    padding-left: var(--space-md);
    position: relative;
    margin-bottom: var(--space-xs);
}

.expertise-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.process-section {
    padding: var(--space-2xl) 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.process-step {
    text-align: center;
    padding: var(--space-lg);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto var(--space-md);
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-section {
    padding: var(--space-2xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.contact-form-container,
.contact-info-container {
    padding: var(--space-xl);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: var(--space-sm);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: var(--space-xs);
    display: none;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid #c3e6cb;
    margin-top: var(--space-lg);
}

.contact-methods {
    margin-top: var(--space-xl);
}

.contact-method {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-color);
}

.method-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-credentials {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: var(--light-bg);
    border-radius: var(--radius-md);
}

.credentials-badge {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    margin-top: var(--space-md);
}

.response-time {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.response-time ul {
    list-style: none;
    margin-top: var(--space-md);
}

.response-time li {
    margin-bottom: var(--space-sm);
    padding-left: var(--space-lg);
    position: relative;
}

.response-time li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 992px) {
    .founder-grid,
    .mission-cards,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: var(--space-md);
    }
}

/* ADDITIONAL FIXES - Add these to the end */

/* Ensure .expertise-grid is defined only once */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
}

/* Fix for the old duplicate .about-content (keep only if needed) */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

/* Remove conflicting old .process-steps and .step-number */
/* These were the old definitions that should be removed */
/* .process-steps { display: flex; ... } */
/* .step-number { width: 35px; ... } */
.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
/* ===== IRD STYLE HEADER ===== */
.main-header {
    width: 100%;
    font-family: 'Inter', sans-serif;
}

/* --- TOP ROW (Light) --- */
.header-top-row {
    background: #f4f8ff;  /* Light like IRD */
    padding: 15px 0;
    border-bottom: 1px solid #e0e7ef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04); /* subtle 3D lift */
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-top-content .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

.header-top-content .logo img {
    height: 100px;  /* Large, fits the row efficiently */
    width: auto;
    display: block;
}

.header-top-content .logo-text .logo-main {
    font-size: 28px;
    font-weight: 700;
    color: #0a2647;
    display: block;
    line-height: 1.2;
}

.header-top-content .logo-text .logo-tagline {
    font-size: 14px;
    color: #555;
    font-weight: 400;
}

.header-datetime {
    font-size: 16px;
    font-weight: 500;
    color: #0a2647;
    background: #ffffff;
    padding: 10px 24px;
    border-radius: 40px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    white-space: nowrap;
    border: 1px solid #e9edf4;
}

/* --- BOTTOM ROW (Dark) --- */
.header-bottom-row {
    background: #0a2647;  /* Dark navy (like IRD) — or use your theme color */
    box-shadow: 0 6px 16px rgba(0,0,0,0.15); /* strong 3D shadow */
    position: relative;
    z-index: 10;
}

.header-bottom-content .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

.header-bottom-content .nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-bottom-content .nav-link {
    color: #ffffff;
    padding: 18px 22px;
    display: inline-block;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
    border-bottom: 3px solid transparent;
}

.header-bottom-content .nav-link:hover,
.header-bottom-content .nav-link.active {
    background: rgba(255, 255, 255, 0.08);
    border-bottom-color: #ffffff;
}

.header-bottom-content .btn-primary {
    background: #ffffff;
    color: #0a2647;
    border: none;
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.header-bottom-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* --- Mobile Toggle (Hamburger) --- */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 4px;
    transition: 0.3s;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .header-top-content .logo img { height: 70px; }
    .header-top-content .logo-text .logo-main { font-size: 22px; }
    .header-datetime { font-size: 14px; padding: 6px 16px; }
}

@media (max-width: 768px) {
    .header-top-content {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .header-top-content .logo { flex-wrap: wrap; justify-content: center; }
    .header-top-content .logo img { height: 60px; }
    .header-top-content .logo-text .logo-main { font-size: 18px; text-align: center; }
    .header-top-content .logo-text .logo-tagline { font-size: 12px; text-align: center; }
    .header-datetime { font-size: 12px; padding: 4px 14px; }

    .header-bottom-content .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0a2647;
        padding: 10px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }
    .header-bottom-content .nav-menu.active {
        display: flex;
    }
    .header-bottom-content .nav-link {
        padding: 12px 24px;
        width: 100%;
        border-bottom: none;
    }
    .header-bottom-content .btn-primary {
        display: none; /* hide on mobile, keep hamburger */
    }
    .mobile-toggle {
        display: flex;
    }
}
/* ===== FIX DATE/TIME ALIGNMENT (IRD Style) ===== */
.header-datetime {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;  /* Aligns text to the right */
    text-align: right;
    min-height: 60px;       /* Prevents layout shift */
    white-space: nowrap;    /* Prevents unwanted wrapping */
}

.header-datetime #currentDateTime {
    display: block;
    line-height: 1.6;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.2px;
}

.header-datetime .ad-date {
    display: block;
    font-size: 0.75em;      /* Smaller, like a sub‑title */
    font-weight: 400;
    opacity: 0.75;
    letter-spacing: 0.3px;
}

/* Ensure the top row flex layout stays consistent */
.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
}

/* Mobile: make sure it doesn't break */
@media (max-width: 768px) {
    .header-datetime {
        align-items: center;
        text-align: center;
        min-height: auto;
        white-space: normal;
    }
    .header-top-content {
        flex-direction: column;
        align-items: center;
    }
}
/* ===== REDUCE HEADER SIDE MARGINS ===== */
.main-header .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
    max-width: 100%; /* Makes the header span full width (like IRD) */
}

/* If you want to keep a max-width but reduce padding, use this instead: */
@media (min-width: 1200px) {
    .main-header .container {
        max-width: 1400px; /* Adjust this value as needed */
    }
}
/* ===== DROPDOWN NAVIGATION (IRD Style) ===== */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > li {
    position: relative;
}

.nav-menu .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 16px 20px;
    color: #ffffff;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease;
    border-bottom: 3px solid transparent;
    cursor: pointer;
}

.nav-menu .nav-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
    background: rgba(255, 255, 255, 0.08);
    border-bottom-color: #ffffff;
}

/* ===== 3D HOLOGRAPHIC NAVIGATION (Fixed Hover/Active + Dropdown Bridge) ===== */

/* --- Nav Links --- */
.nav-menu .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    color: #ffffff;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.1);
    cursor: pointer;
    letter-spacing: 0.3px;
    transform-style: preserve-3d;
    perspective: 600px;
    position: relative;
}

.nav-menu .nav-link i {
    font-size: 11px;
    margin-left: 4px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* --- Active State (Subtle, no glow) --- */
.nav-menu .nav-link.active {
    background: rgba(0, 212, 255, 0.06);
    border-color: rgba(0, 212, 255, 0.2);
    border-bottom: 2px solid #00d4ff;
    box-shadow: none;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
    transform: none;
}

/* --- Hover State (Full 3D Holographic Glow) --- */
.nav-menu .nav-link:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-3px) scale(1.04) perspective(600px) rotateX(2deg);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 212, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.8), 0 0 60px rgba(0, 212, 255, 0.3);
    border-bottom: 2px solid #00d4ff;
}

/* --- Override active when hovering (so active glow doesn't compete) --- */
.nav-menu .nav-link.active:hover {
    background: rgba(0, 212, 255, 0.12);
    border-color: #00d4ff;
    transform: translateY(-3px) scale(1.04) perspective(600px) rotateX(2deg);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.9);
}

/* --- Dropdown Wrapper (Hover Bridge) --- */
.nav-menu .dropdown {
    position: relative;
}

/* Invisible bridge to prevent gap between button and dropdown */
.nav-menu .dropdown::after {
    content: '';
    position: absolute;
    top: calc(100% - 6px);
    left: 0;
    width: 100%;
    height: 16px;
    background: transparent;
    pointer-events: none;
    z-index: 1000;
}
.nav-menu .dropdown:hover::after {
    pointer-events: auto; /* Make the bridge clickable/hoverable */
}

/* --- Dropdown Menu (Glassmorphism) --- */
.nav-menu .dropdown-menu {
    display: none !important;
    position: absolute;
    top: 100%; /* No gap */
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    background: rgba(10, 38, 71, 0.92);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, #00d4ff, #7b2ffc, #00d4ff) 1;
    border-image-slice: 1;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 50px rgba(0, 212, 255, 0.05);
    padding: 8px 6px;
    margin: 0;
    list-style: none;
    border-radius: 16px;
    z-index: 999;
}

/* --- Dropdown Arrow Pointer --- */
.nav-menu .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(0, 212, 255, 0.25);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.15));
}

/* --- Dropdown Items (Crystal Clear Text) --- */
.nav-menu .dropdown-menu li {
    margin: 0;
    padding: 0 4px;
}

.nav-menu .dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    margin: 2px 0;
    color: #e8f0fe !important;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    border-radius: 10px;
    border-left: 3px solid transparent;
    background: rgba(255, 255, 255, 0.01);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.nav-menu .dropdown-menu li a:hover {
    background: rgba(0, 212, 255, 0.15);
    padding-left: 24px;
    border-left-color: #00d4ff;
    color: #ffffff !important;
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.08),
        inset 0 0 20px rgba(0, 212, 255, 0.02);
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
}

/* --- Show dropdown on hover (Desktop) --- */
.nav-menu .dropdown:hover > .dropdown-menu {
    display: block !important;
    animation: holographicDrop 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- Show dropdown on mobile (via .show class) --- */
.nav-menu .dropdown.show > .dropdown-menu {
    display: block !important;
    animation: holographicDrop 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- Rotate Chevron on open --- */
.nav-menu .dropdown:hover > .dropdown-toggle i,
.nav-menu .dropdown.show > .dropdown-toggle i {
    transform: rotate(180deg);
    filter: drop-shadow(0 0 10px #00d4ff);
}

/* --- 3D Holographic Animation --- */
@keyframes holographicDrop {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.94) translateY(-4px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1) translateY(0);
    }
}

/* --- CTA Button (3D Holographic Glass) --- */
.header-bottom-content .btn-primary {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
    letter-spacing: 0.5px;
    cursor: pointer;
    transform-style: preserve-3d;
}

.header-bottom-content .btn-primary:hover {
    background: rgba(0, 212, 255, 0.12);
    border-color: #00d4ff;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.25), 0 0 60px rgba(0, 212, 255, 0.05);
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.8);
}

/* --- MOBILE RESPONSIVE FIXES --- */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        width: 100%;
        background: rgba(10, 38, 71, 0.96);
        backdrop-filter: blur(12px);
        padding: 12px 0;
        display: none;
        border-radius: 16px;
        margin-top: 10px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > li {
        width: 100%;
    }

    .nav-menu .nav-link {
        padding: 14px 24px;
        width: 100%;
        border-radius: 0;
        border: none;
        background: transparent;
        justify-content: space-between;
        transform: none !important;
    }

    .nav-menu .nav-link:hover {
        transform: none !important;
        background: rgba(255, 255, 255, 0.05);
    }

    .nav-menu .nav-link.active {
        background: rgba(0, 212, 255, 0.1);
        border-left: 3px solid #00d4ff;
        border-bottom: none;
        border-radius: 0;
    }

    .nav-menu .nav-link.active:hover {
        background: rgba(0, 212, 255, 0.15);
    }

    .nav-menu .dropdown::after {
        display: none; /* Remove bridge on mobile */
    }

    .nav-menu .dropdown-menu {
        position: static;
        transform: translateX(0) !important;
        left: 0;
        top: 0;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(6px);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-top: 1px solid rgba(0, 212, 255, 0.2);
        margin: 6px 16px;
        padding: 6px 0;
        width: auto;
        animation: none !important;
    }

    .nav-menu .dropdown-menu::before {
        display: none;
    }

    .nav-menu .dropdown-menu li a {
        padding: 12px 28px;
        font-size: 14px;
        border-radius: 6px;
        background: transparent;
    }

    .nav-menu .dropdown-menu li a:hover {
        padding-left: 34px;
        background: rgba(0, 212, 255, 0.08);
    }

    .header-bottom-content .btn-primary {
        display: none;
    }
}
/* ===== FOOTER GAP CONTROL – DIRECT COLUMN MARGINS ===== */

/* 1. Container: keep it wide */
.main-footer .container {
    max-width: 92% !important;
    padding-left: 2% !important;
    padding-right: 2% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* 2. Grid: no gap between columns (we'll use margins instead) */
.main-footer .footer-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0 !important;  /* NO gap between columns */
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 3. Each column: no padding by default */
.main-footer .footer-col {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ===== FOOTER – COMPLETE FLEXBOX SOLUTION ===== */

.main-footer {
    padding: 50px 0 30px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.main-footer .container {
    max-width: 92% !important;
    padding-left: 2% !important;
    padding-right: 2% !important;
    margin: 0 auto !important;
}

/* --- FLEXBOX LAYOUT (NOT GRID) --- */
.main-footer .footer-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

/* --- Each column --- */
.main-footer .footer-col {
    flex: 1 1 0 !important;  /* Equal width */
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
}

/* ===== SPACING CONTROL ===== */

/* Column 1 (Logo): BIG gap to Column 2 */
.main-footer .footer-col:first-child {
    margin-right: 6% !important;  /* WIDE gap */
    flex: 1.2 1 0 !important;     /* Slightly wider for logo */
}

/* Column 2 (Quick Links): TIGHT gap to Column 3 */
.main-footer .footer-col:nth-child(2) {
    margin-right: 1.5% !important;  /* TIGHT gap */
}

/* Column 3 (Services): TIGHT gap to Column 4 */
.main-footer .footer-col:nth-child(3) {
    margin-right: 1.5% !important;  /* TIGHT gap */
}

/* Column 4 (Contact): no margin */

/* --- Headings inside footer --- */
.main-footer .footer-col h4 {
    color: var(--secondary-color) !important;
    margin-bottom: 15px !important;
    font-size: 1.125rem !important;
}

/* --- Logo inside footer --- */
.main-footer .footer-logo {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 15px !important;
}

.main-footer .footer-logo img {
    height: 50px !important;
    width: auto !important;
}

.main-footer .footer-logo-text {
    display: flex !important;
    flex-direction: column !important;
}

.main-footer .footer-logo-text .logo-main {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--secondary-color) !important;
}

.main-footer .footer-logo-text .logo-tagline {
    font-size: 12px !important;
    color: rgba(255,255,255,0.7) !important;
}

.main-footer .footer-description {
    color: rgba(255,255,255,0.8) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
}

/* --- Links --- */
.main-footer .footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.main-footer .footer-links li {
    margin-bottom: 8px !important;
}

.main-footer .footer-links a {
    color: rgba(255,255,255,0.8) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.main-footer .footer-links a:hover {
    color: var(--accent-color) !important;
}

/* --- Contact items --- */
.main-footer .contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin-bottom: 8px !important;
}

.main-footer .contact-icon {
    flex-shrink: 0 !important;
    width: 20px !important;
}

.main-footer .contact-item a {
    color: rgba(255,255,255,0.8) !important;
    text-decoration: none !important;
    font-size: 14px !important;
    word-break: break-all !important;
}

.main-footer .contact-item a:hover {
    color: var(--accent-color) !important;
}

/* --- Footer bottom --- */
.main-footer .footer-bottom {
    padding-top: 20px !important;
    margin-top: 30px !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    text-align: center !important;
    color: rgba(255,255,255,0.6) !important;
    font-size: 14px !important;
}

/* ===== RESPONSIVE ===== */

/* Tablet: 2 columns */
@media (max-width: 992px) {
    .main-footer .container {
        max-width: 95% !important;
        padding-left: 2% !important;
        padding-right: 2% !important;
    }

    .main-footer .footer-col {
        flex: 0 0 48% !important;
        margin: 0 !important;
        margin-bottom: 30px !important;
    }

    .main-footer .footer-col:nth-child(odd) {
        margin-right: 4% !important;
    }

    .main-footer .footer-col:nth-child(even) {
        margin-right: 0 !important;
    }

    .main-footer .footer-col:last-child {
        margin-bottom: 0 !important;
    }
}

/* Mobile: 1 column */
@media (max-width: 576px) {
    .main-footer .container {
        max-width: 98% !important;
        padding-left: 2% !important;
        padding-right: 2% !important;
    }

    .main-footer .footer-col {
        flex: 0 0 100% !important;
        margin: 0 !important;
        margin-bottom: 30px !important;
    }

    .main-footer .footer-col:last-child {
        margin-bottom: 0 !important;
    }

    .main-footer .footer-col:first-child {
        margin-right: 0 !important;
    }
    .main-footer .footer-col:nth-child(2) {
        margin-right: 0 !important;
    }
    .main-footer .footer-col:nth-child(3) {
        margin-right: 0 !important;
    }
}
/* ===== RESTORE LOGO SIZE (OVERRIDE FOOTER CSS) ===== */
.main-footer .footer-logo img {
    height: 100px !important;  /* Restore to original size (same as header) */
    width: auto !important;
    max-height: none !important;
}

/* If you want it slightly smaller than header, use 80px or 70px instead */
/* ===== 3D HOLOGRAPHIC POPUP EFFECT FOR FOOTER LINKS ===== */

/* --- All footer links (general) --- */
.main-footer .footer-links a,
.main-footer .footer-col .footer-links a,
.main-footer .contact-item a {
    display: inline-block !important;
    padding: 2px 4px !important;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1) !important;
    transform-style: preserve-3d !important;
    perspective: 600px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    border: 1px solid transparent !important;
    background: transparent !important;
    position: relative !important;
}

/* --- Hover effect: 3D popup + holographic glow --- */
.main-footer .footer-links a:hover,
.main-footer .footer-col .footer-links a:hover,
.main-footer .contact-item a:hover {
    color: #ffffff !important;
    transform: translateY(-4px) scale(1.05) perspective(600px) rotateX(2deg) !important;
    border-color: rgba(0, 212, 255, 0.5) !important;
    background: rgba(0, 212, 255, 0.08) !important;
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 212, 255, 0.12),
        0 0 80px rgba(0, 212, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8), 0 0 40px rgba(0, 212, 255, 0.4) !important;
    padding: 2px 8px !important;
    border-radius: 8px !important;
}

/* --- Email and phone specifically (slightly different due to long text) --- */
.main-footer .contact-item a[href^="mailto"],
.main-footer .contact-item a[href^="tel"] {
    word-break: break-all !important;
}

.main-footer .contact-item a[href^="mailto"]:hover,
.main-footer .contact-item a[href^="tel"]:hover,
.main-footer .contact-item a[href*="wa.me"]:hover {
    color: #ffffff !important;
    transform: translateY(-4px) scale(1.03) perspective(600px) rotateX(2deg) !important;
    border-color: rgba(0, 212, 255, 0.5) !important;
    background: rgba(0, 212, 255, 0.08) !important;
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 212, 255, 0.12),
        0 0 80px rgba(0, 212, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8), 0 0 40px rgba(0, 212, 255, 0.4) !important;
    padding: 4px 8px !important;
    border-radius: 8px !important;
}

/* --- Holographic glow animation (subtle pulse) --- */
@keyframes holographicPulse {
    0% {
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.3), 0 0 40px rgba(0, 212, 255, 0.1);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 212, 255, 0.8), 0 0 60px rgba(0, 212, 255, 0.3), 0 0 100px rgba(0, 212, 255, 0.1);
    }
    100% {
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.3), 0 0 40px rgba(0, 212, 255, 0.1);
    }
}

/* Optional: Add subtle pulse to all footer links on hover */
.main-footer .footer-links a:hover,
.main-footer .contact-item a:hover {
    animation: holographicPulse 1.5s ease-in-out infinite !important;
}
/* ===== HERO SECTION – COMPLETE WORKING LAYOUT ===== */

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
}

/* --- Slideshow (Background) --- */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.8s ease-in-out, transform 8s ease-in-out;
    z-index: 1;
}

.hero-slideshow .slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}

.hero-slideshow .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: linear-gradient(
        135deg,
        rgba(10, 38, 71, 0.75) 0%,
        rgba(10, 38, 71, 0.35) 40%,
        rgba(10, 38, 71, 0.45) 70%,
        rgba(10, 38, 71, 0.80) 100%
    );
    pointer-events: none;
}

/* --- Container (content above slideshow) --- */
.hero-section .container {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    max-height: 100vh;
    padding: 20px 0 30px;
}

/* --- Welcome Text (Top) --- */
.hero-welcome {
    text-align: center;
    padding-top: 20px;
}

.welcome-text {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 700;
    font-family: var(--font-secondary);
    background: linear-gradient(90deg, #ffffff, #00d4ff, #7b2ffc, #00d4ff, #ffffff);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 5s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.3));
    letter-spacing: 2px;
    margin-bottom: 300px;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Bottom Content (Glass Card) --- */
.hero-content-bottom {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 20px;
    padding: 35px 40px 30px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-content-bottom .hero-title {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
}

.hero-content-bottom .hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.8;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.hero-content-bottom .hero-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* --- Green 3D CTA Button --- */
.btn-green-3d {
    display: inline-block;
    padding: 16px 42px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #00b894, #00a86b);
    border: none;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 
        0 10px 30px rgba(0, 184, 148, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        0 0 40px rgba(0, 184, 148, 0.15);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    perspective: 600px;
    letter-spacing: 1px;
    animation: pulseGlow 2s infinite ease-in-out;
}

.btn-green-3d:hover {
    background: linear-gradient(135deg, #00d2a0, #00b894);
    transform: translateY(-5px) scale(1.05) rotateX(3deg);
    box-shadow: 
        0 20px 50px rgba(0, 184, 148, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        0 0 80px rgba(0, 184, 148, 0.25);
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    color: #fff;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 10px 30px rgba(0, 184, 148, 0.3), 0 0 40px rgba(0, 184, 148, 0.15); }
    50% { box-shadow: 0 15px 40px rgba(0, 184, 148, 0.5), 0 0 80px rgba(0, 184, 148, 0.25); }
    100% { box-shadow: 0 10px 30px rgba(0, 184, 148, 0.3), 0 0 40px rgba(0, 184, 148, 0.15); }
}

/* --- Stats --- */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: #00d4ff;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.25);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero-section {
        min-height: 92vh;
    }

    .hero-welcome {
        padding-top: 10px;
    }

    .welcome-text {
        font-size: clamp(1.5rem, 4vw, 2.2rem);
    }

    .hero-content-bottom {
        padding: 20px 18px;
        border-radius: 16px;
        margin: 0 auto 15px;
    }

    .hero-content-bottom .hero-title {
        font-size: clamp(1.3rem, 3.5vw, 2rem);
    }

    .hero-content-bottom .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .btn-green-3d {
        padding: 12px 28px;
        font-size: 15px;
    }

    .hero-stats {
        gap: 15px;
        padding-top: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 85vh;
    }

    .hero-welcome {
        padding-top: 5px;
    }

    .welcome-text {
        font-size: 1.3rem;
        letter-spacing: 0.5px;
    }

    .hero-content-bottom {
        padding: 15px 12px;
        border-radius: 12px;
        margin: 0 auto 10px;
    }

    .hero-content-bottom .hero-title {
        font-size: 1.1rem;
    }

    .hero-content-bottom .hero-subtitle {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .btn-green-3d {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-stats {
        gap: 10px;
        padding-top: 12px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.3px;
    }
}
/* Add to your CSS */
.hero-content-section {
    padding: 60px 0 40px;
    background: #f4f8ff;
    text-align: center;
}

.hero-content-section .hero-title {
    color: #0a2647;
}

.hero-content-section .hero-subtitle {
    color: #555;
}
.hero-content-bottom {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 20px;
    padding: 35px 40px 30px;
    background: linear-gradient(
        135deg,
        rgba(10, 38, 71, 0.85) 0%,
        rgba(10, 38, 71, 0.65) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-content-bottom .hero-title {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
}

.hero-content-bottom .hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    line-height: 1.8;
}
/* ===== STICKY HEADER – SMOOTH SLIDE ===== */

/* Top row: slide up and fade out */
.header-top-row {
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease,
                padding 0.4s ease,
                margin 0.4s ease,
                border 0.4s ease;
    max-height: 200px;      /* large enough to hold logo + padding */
    overflow: hidden;
    opacity: 1;
    padding: 15px 0;
    margin: 0;
    border-bottom: 1px solid #e0e7ef;
}

/* When scrolled: top row collapses */
.main-header.scrolled .header-top-row {
    max-height: 0 !important;
    opacity: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border-bottom: 0 !important;
}

/* Bottom row: smooth padding transition + deeper shadow */
.header-bottom-row {
    transition: padding 0.4s ease, box-shadow 0.4s ease;
    padding: 0;
}

.main-header.scrolled .header-bottom-row {
    padding: 0;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

/* Mini logo – keep it LARGE (same as main logo) */
.mini-logo {
    display: none;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.mini-logo img {
    height: 100px;           /* ← set to 80px (or 100px if you want exactly same) */
    width: auto;
    display: block;
    transition: height 0.3s ease;
}

/* Show mini logo when scrolled */
.main-header.scrolled .mini-logo {
    display: flex !important;
}

/* Ensure the navbar accommodates the large logo */
.main-header.scrolled .navbar {
    min-height: 100px;       /* match logo height so it doesn't clip */
}

/* Optional: slightly compact the nav links when scrolled */
.main-header.scrolled .nav-menu .nav-link {
    padding: 10px 16px;
}
/* ===== SILVER GLASS BACKGROUND ON SCROLL ===== */

/* Bottom row: dark navy → silver glass transition */
.main-header.scrolled .header-bottom-row {
    background: rgba(230, 240, 250, 0.92) !important;  /* Silver glass base */
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Nav links: dark text on silver background */
.main-header.scrolled .nav-menu .nav-link {
    color: #1a2a3a !important;  /* Dark slate for contrast */
    text-shadow: none !important;
}

.main-header.scrolled .nav-menu .nav-link:hover,
.main-header.scrolled .nav-menu .nav-link.active {
    color: #0a2647 !important;
    background: rgba(10, 38, 71, 0.06);
    border-bottom-color: #0a2647;
}

/* Dropdown toggle chevron color */
.main-header.scrolled .nav-menu .nav-link i {
    color: #1a2a3a;
}

/* CTA button: glass dark style on silver background */
.main-header.scrolled .header-bottom-content .btn-primary {
    background: #0a2647 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(10, 38, 71, 0.2);
}

.main-header.scrolled .header-bottom-content .btn-primary:hover {
    background: #1a3a6a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(10, 38, 71, 0.3);
}

/* Mini logo: keep it visible (no change) */
.main-header.scrolled .mini-logo img {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}

/* Hamburger icon: dark color on silver background */
.main-header.scrolled .mobile-toggle span {
    background-color: #1a2a3a;
}

/* Dropdown menu on silver background */
.main-header.scrolled .dropdown-menu {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(200, 215, 230, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.main-header.scrolled .dropdown-menu li a {
    color: #1a2a3a !important;
}

.main-header.scrolled .dropdown-menu li a:hover {
    background: rgba(10, 38, 71, 0.06);
    color: #0a2647 !important;
}
/* ========================================
   SUPER ADVANCED 3D HOLOGRAPHIC SECTIONS
   ======================================== */

/* --- Section Headers with Holographic Glow --- */
.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0a2647;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #0a2647 0%, #00d4ff 50%, #7b2ffc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: holographicTitle 4s ease-in-out infinite;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.15));
}

@keyframes holographicTitle {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.section-header p::before,
.section-header p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
}

.section-header p::before { left: -50px; }
.section-header p::after { right: -50px; }

@media (max-width: 600px) {
    .section-header p::before,
    .section-header p::after { display: none; }
}

/* --- Value Cards (3D Holographic Glass) --- */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.value-card {
    position: relative;
    padding: 35px 30px 30px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    perspective: 800px;
    overflow: hidden;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
}

/* Holographic border glow */
.value-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(0, 212, 255, 0.3) 0%,
        rgba(123, 47, 252, 0.2) 50%,
        rgba(0, 212, 255, 0.3) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.value-card:hover::before {
    opacity: 1;
}

/* Floating glow effect on hover */
.value-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 212, 255, 0.03) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.value-card:hover::after {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-10px) rotateX(3deg) rotateY(3deg) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 212, 255, 0.08),
        0 0 60px rgba(0, 212, 255, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.15);
}

/* Card icon wrapper */
.value-card .card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(123, 47, 252, 0.06));
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    font-size: 1.8rem;
    color: #00d4ff;
    transition: all 0.4s ease;
}

.value-card:hover .card-icon {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(123, 47, 252, 0.1));
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.08);
    transform: scale(1.05) rotate(-3deg);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0a2647;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.value-card:hover h3 {
    background: linear-gradient(135deg, #0a2647, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.value-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* --- Services Cards (Enhanced 3D Hologram) --- */
.service-card {
    position: relative;
    padding: 30px 25px 25px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    perspective: 800px;
    overflow: hidden;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
}

/* Service card holographic border */
.service-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(123, 47, 252, 0.3) 0%,
        rgba(0, 212, 255, 0.2) 50%,
        rgba(123, 47, 252, 0.3) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

/* Glow pulse on service icon */
.service-card .service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
    padding: 12px;
    background: linear-gradient(135deg, rgba(123, 47, 252, 0.06), rgba(0, 212, 255, 0.04));
    border-radius: 16px;
    border: 1px solid rgba(123, 47, 252, 0.08);
    transition: all 0.4s ease;
    color: #7b2ffc;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(123, 47, 252, 0.15), rgba(0, 212, 255, 0.08));
    border-color: rgba(123, 47, 252, 0.3);
    box-shadow: 0 0 40px rgba(123, 47, 252, 0.08);
    transform: scale(1.05) rotate(-2deg);
}

.service-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(123, 47, 252, 0.06),
        0 0 60px rgba(0, 212, 255, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(123, 47, 252, 0.12);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0a2647;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    background: linear-gradient(135deg, #7b2ffc, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00d4ff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}

.service-card:hover .service-link {
    gap: 14px;
    border-bottom-color: rgba(0, 212, 255, 0.3);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.service-card .service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* --- Dark background for services section --- */
.services-preview {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* --- "View All Services" button --- */
.btn-outline {
    background: transparent;
    color: #00d4ff;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #00d4ff, #7b2ffc);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}

/* --- Responsive tweaks --- */
@media (max-width: 768px) {
    .value-card {
        padding: 25px 20px;
    }
    
    .service-card {
        padding: 20px 18px;
    }
    
    .value-card .card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
}
/* ========================================
   NEURAL NETWORK HOLOGRAM BACKGROUND
   ======================================== */

/* Darken section slightly for hologram to pop */
.value-section {
    position: relative;
    overflow: hidden;
    background: #060d18;  /* Deep holographic dark */
}

/* Canvas behind everything */
#neural-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
    pointer-events: none; /* So users can click cards/buttons */
}

/* Keep content above canvas */
.value-section .container {
    position: relative;
    z-index: 1;
}

/* Update section header to be bright on dark */
.value-section .section-header h2 {
    color: #ffffff;
    background: linear-gradient(135deg, #00d4ff 0%, #7b2ffc 50%, #00d4ff 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holographicTitle 4s ease-in-out infinite;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.15));
}

.value-section .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

/* Make cards glassy on dark background */
.value-card {
    background: rgba(6, 13, 24, 0.55) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(0, 212, 255, 0.12) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.value-card h3 {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important; /* Override gradient from previous */
}

.value-card:hover h3 {
    background: linear-gradient(135deg, #00d4ff, #7b2ffc) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.value-card p {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Card icon glow on dark */
.value-card .card-icon {
    background: rgba(0, 212, 255, 0.06) !important;
    border-color: rgba(0, 212, 255, 0.15) !important;
    color: #00d4ff !important;
}

.value-card:hover .card-icon {
    background: rgba(0, 212, 255, 0.12) !important;
    border-color: rgba(0, 212, 255, 0.3) !important;
}
/* ========================================
   HOLOGRAPHIC SERVICE PORTALS
   ======================================== */

.services-preview {
    position: relative;
    background: #060d18;
    padding: 80px 0 60px;
    overflow: hidden;
}

/* Holographic grid background */
.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(123, 47, 252, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.services-preview .container {
    position: relative;
    z-index: 1;
}

/* Section header on dark */
.services-preview .section-header h2 {
    color: #ffffff;
    background: linear-gradient(135deg, #7b2ffc 0%, #00d4ff 50%, #7b2ffc 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holographicTitle 4s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(123, 47, 252, 0.15));
}

.services-preview .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

/* --- Service Cards --- */
.service-card {
    position: relative;
    padding: 30px 25px 25px;
    background: rgba(6, 13, 24, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(0, 212, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    perspective: 800px;
    overflow: hidden;
    cursor: default;
}

/* Animated border gradient */
.service-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    padding: 2px;
    background: conic-gradient(
        from var(--angle, 0deg),
        rgba(0, 212, 255, 0.3),
        rgba(123, 47, 252, 0.3),
        rgba(0, 212, 255, 0.3),
        rgba(123, 47, 252, 0.3),
        rgba(0, 212, 255, 0.3)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
    transition: opacity 0.5s ease;
    pointer-events: none;
    animation: borderRotate 6s linear infinite;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes borderRotate {
    to { --angle: 360deg; }
}

.service-card:hover::before {
    opacity: 1;
}

/* Hologram container */
.service-hologram {
    position: relative;
    width: 100%;
    height: 140px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-canvas {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    display: block;
}

/* Glow ring around icon */
.service-glow-ring {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: ringPulse 3s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.02);
}

.service-glow-ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: rgba(0, 212, 255, 0.2);
    animation: ringSpin 4s linear infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.8; }
}

@keyframes ringSpin {
    to { transform: rotate(360deg); }
}

/* Service content */
.service-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    background: linear-gradient(135deg, #00d4ff, #7b2ffc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Service link */
.service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00d4ff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}

.service-card:hover .service-link {
    gap: 14px;
    border-bottom-color: rgba(0, 212, 255, 0.3);
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.service-card .service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* Scanline overlay */
.service-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-scanline::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 200%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 212, 255, 0.02) 2px,
        rgba(0, 212, 255, 0.02) 4px
    );
    animation: scanlineMove 4s linear infinite;
}

.service-card:hover .service-scanline {
    opacity: 1;
}

@keyframes scanlineMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

/* Card hover 3D lift */
.service-card:hover {
    transform: translateY(-8px) scale(1.02) rotateX(2deg);
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.06),
                0 0 60px rgba(123, 47, 252, 0.04);
    border-color: rgba(0, 212, 255, 0.15);
}

/* "View All" button */
.services-preview .btn-outline {
    background: transparent;
    color: #00d4ff;
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    padding: 12px 36px;
    font-weight: 600;
    transition: all 0.4s ease;
}

.services-preview .btn-outline:hover {
    background: linear-gradient(135deg, #00d4ff, #7b2ffc);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}
/* ========================================
   SERVICES SECTION – FIXES
   ======================================== */

/* --- Section header: force vertical stacking --- */
.services-preview .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.services-preview .section-header h2 {
    margin-bottom: 8px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #7b2ffc 0%, #00d4ff 50%, #7b2ffc 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holographicTitle 4s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(123, 47, 252, 0.15));
}

.services-preview .section-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin: 0;
}

/* --- Remove emoji from service canvas – use Font Awesome instead --- */
/* We'll draw Font Awesome icons via JavaScript, not emojis */
/* ========================================
   HOLOGRAPHIC SILVER CTA BANNER
   ======================================== */

.cta-holographic {
    position: relative;
    padding: 80px 0;
    background: #060d18;
    overflow: hidden;
}

/* Holographic grid overlay */
.cta-holographic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(123, 47, 252, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Animated silver shimmer lines */
.cta-holographic::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 40%,
        rgba(200, 215, 230, 0.02) 45%,
        rgba(200, 215, 230, 0.04) 50%,
        rgba(200, 215, 230, 0.02) 55%,
        transparent 60%,
        transparent 100%
    );
    animation: shimmerSlide 12s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes shimmerSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.cta-holographic .container {
    position: relative;
    z-index: 1;
}

.cta-holographic-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 60px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Animated border glow */
.cta-holographic-content::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 34px;
    padding: 2px;
    background: conic-gradient(
        from var(--angle, 0deg),
        rgba(200, 215, 230, 0.2),
        rgba(255, 255, 255, 0.4),
        rgba(200, 215, 230, 0.2),
        rgba(255, 255, 255, 0.4),
        rgba(200, 215, 230, 0.2)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    pointer-events: none;
    animation: borderRotate 8s linear infinite;
}

@keyframes borderRotate {
    to { --angle: 360deg; }
}

.cta-holographic-content h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #b8ccdd 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: silverShimmer 4s ease-in-out infinite;
}

@keyframes silverShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-holographic-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* ========================================
   SILVER GLASS CTA BANNER (FULL WIDTH)
   ======================================== */

.cta-holographic {
    position: relative;
    padding: 40px 0;
    background: linear-gradient(
        135deg,
        rgba(220, 230, 245, 0.4) 0%,
        rgba(255, 255, 255, 0.6) 30%,
        rgba(210, 220, 235, 0.5) 60%,
        rgba(240, 245, 250, 0.4) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

/* Silver shimmer overlay */
.cta-holographic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(200, 215, 240, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Animated silver shimmer lines */
.cta-holographic::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 40%,
        rgba(255, 255, 255, 0.05) 45%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 55%,
        transparent 60%,
        transparent 100%
    );
    animation: shimmerSlide 12s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes shimmerSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.cta-holographic .container {
    position: relative;
    z-index: 1;
}

.cta-holographic-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 50px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

/* Glass reflection shine */
.cta-holographic-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        ellipse at 30% 30%,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.cta-holographic-content h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #1a2a3a 0%, #4a6a8a 50%, #1a2a3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: silverShimmer 4s ease-in-out infinite;
}

@keyframes silverShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-holographic-content p {
    font-size: 0.95rem;
    color: #3a4a5a;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* --- Silver Holographic Button --- */
.btn-holographic {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a2a3a;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    letter-spacing: 0.5px;
}

.btn-holographic::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.btn-holographic:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    color: #0a1a2a;
}

.btn-holographic:hover::before {
    opacity: 1;
}

.btn-holographic i {
    transition: transform 0.4s ease;
}

.btn-holographic:hover i {
    transform: translateX(6px);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-holographic {
        padding: 25px 0;
    }
    
    .cta-holographic-content {
        padding: 20px 20px;
        border-radius: 18px;
    }
    
    .cta-holographic-content h2 {
        font-size: 1.2rem;
    }
    
    .cta-holographic-content p {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }
    
    .btn-holographic {
        padding: 10px 24px;
        font-size: 0.85rem;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .cta-holographic {
        padding: 15px 0;
    }
    
    .cta-holographic-content {
        padding: 16px 14px;
        border-radius: 14px;
    }
    
    .cta-holographic-content h2 {
        font-size: 1rem;
    }
    
    .cta-holographic-content p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .btn-holographic {
        padding: 8px 18px;
        font-size: 0.8rem;
        gap: 8px;
    }
}
/* ========================================
   SERVICES NEURAL NETWORK BACKGROUND
   ======================================== */

.services-preview {
    position: relative;
    overflow: hidden;
    background: #060d18;  /* Match the dark theme */
}

/* Canvas behind the cards */
#services-neural-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
    pointer-events: none; /* Cards remain clickable */
}

/* Keep content above canvas */
.services-preview .container {
    position: relative;
    z-index: 1;
}

/* Ensure section header remains bright */
.services-preview .section-header h2 {
    color: #ffffff;
    background: linear-gradient(135deg, #7b2ffc 0%, #00d4ff 50%, #7b2ffc 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holographicTitle 4s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(123, 47, 252, 0.15));
}

.services-preview .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

/* Cards stay glassy on top */
.service-card {
    background: rgba(6, 13, 24, 0.55) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(0, 212, 255, 0.08) !important;
}
/* ========================================
   ULTRA SILVER GLASS CARDS (Why Choose)
   ======================================== */

.value-section .value-card {
    background: rgba(255, 255, 255, 0.65) !important;  /* Much brighter */
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.04),
        inset 0 2px 0 rgba(255, 255, 255, 0.9),
        inset 0 -2px 0 rgba(255, 255, 255, 0.3) !important;
    border-radius: 20px !important;
    padding: 30px 24px !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    position: relative;
    overflow: hidden;
}

/* Glossy metallic shine */
.value-section .value-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        ellipse at 20% 20%,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0.1) 40%,
        transparent 70%
    );
    pointer-events: none;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.value-section .value-card:hover::after {
    opacity: 1;
}

/* Silver holographic border glow */
.value-section .value-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(200, 215, 230, 0.2),
        rgba(255, 255, 255, 0.9),
        rgba(200, 215, 230, 0.2)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.value-section .value-card:hover::before {
    opacity: 1;
}

/* Text – dark and crisp */
.value-section .value-card h3 {
    color: #0a1a2a !important;
    -webkit-text-fill-color: #0a1a2a !important;
    font-weight: 700 !important;
    font-size: 1.25rem !important;
    margin-bottom: 10px !important;
    letter-spacing: -0.2px;
}

.value-section .value-card:hover h3 {
    background: linear-gradient(135deg, #0a2647, #00d4ff) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.value-section .value-card p {
    color: rgba(20, 40, 60, 0.8) !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}

/* Icon – silver glass with metallic border */
.value-section .value-card .card-icon {
    background: rgba(255, 255, 255, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    color: #1a2a3a !important;
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.02) !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 16px !important;
    font-size: 1.8rem !important;
    margin-bottom: 16px !important;
    transition: all 0.3s ease !important;
}

.value-section .value-card:hover .card-icon {
    background: rgba(255, 255, 255, 0.5) !important;
    border-color: rgba(0, 212, 255, 0.2) !important;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.06) !important;
    transform: scale(1.05) rotate(-2deg) !important;
}

/* Hover 3D lift + silver glow */
.value-section .value-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.06),
        0 0 40px rgba(200, 215, 230, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
}
/* ========================================
   ULTRA SILVER GLASS SERVICE CARDS
   ======================================== */

/* --- Service Cards Base (Silver Glass) --- */
.service-card {
    background: rgba(255, 255, 255, 0.65) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.04),
        inset 0 2px 0 rgba(255, 255, 255, 0.9),
        inset 0 -2px 0 rgba(255, 255, 255, 0.3) !important;
    border-radius: 20px !important;
    padding: 28px 24px 24px !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

/* Glossy metallic shine */
.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        ellipse at 20% 20%,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0.1) 40%,
        transparent 70%
    );
    pointer-events: none;
    opacity: 0.8;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card:hover::after {
    opacity: 1;
}

/* Silver holographic border (replaces cyan/purple) */
.service-card::before {
    content: '' !important;
    position: absolute !important;
    inset: -1px !important;
    border-radius: 21px !important;
    padding: 1px !important;
    background: linear-gradient(
        135deg,
        rgba(200, 215, 230, 0.2),
        rgba(255, 255, 255, 0.9),
        rgba(200, 215, 230, 0.2)
    ) !important;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
    -webkit-mask-composite: xor !important;
    mask-composite: exclude !important;
    opacity: 0.5 !important;
    transition: opacity 0.4s ease !important;
    pointer-events: none !important;
    z-index: 0 !important;
    animation: none !important; /* Remove rotating animation */
}

.service-card:hover::before {
    opacity: 1 !important;
}

/* --- Service Text – Dark & Crisp --- */
.service-card h3 {
    color: #0a1a2a !important;
    -webkit-text-fill-color: #0a1a2a !important;
    font-weight: 700 !important;
    font-size: 1.15rem !important;
    margin-bottom: 8px !important;
    letter-spacing: -0.2px;
    position: relative;
    z-index: 2;
}

.service-card.active h3 {
    background: linear-gradient(135deg, #0a2647, #00d4ff) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.service-card p {
    color: rgba(20, 40, 60, 0.8) !important;
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
    position: relative;
    z-index: 2;
}

/* --- Service Icon (Canvas) – Keep it but make it silver-ish --- */
.service-hologram {
    position: relative;
    z-index: 2;
}

/* Glow ring – silver glass */
.service-glow-ring {
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 0 40px rgba(200, 215, 230, 0.05) !important;
}

.service-glow-ring::before {
    border-top-color: rgba(255, 255, 255, 0.4) !important;
}

/* --- Service Link (Explore) --- */
.service-card .service-link {
    color: #1a3a5a !important;
    font-weight: 600 !important;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-link {
    color: #0a2647 !important;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.1) !important;
}

/* --- Toggle Indicator --- */
.service-card .toggle-indicator {
    color: rgba(20, 40, 60, 0.6) !important;
    position: relative;
    z-index: 2;
}

.service-card.active .toggle-indicator {
    color: #0a2647 !important;
}

/* --- Active Card (3D Pop-out) --- */
.service-card.active {
    background: rgba(255, 255, 255, 0.8) !important;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.06),
        0 0 40px rgba(200, 215, 230, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
    transform: perspective(800px) translateZ(30px) scale(1.03) !important;
}

/* --- Hidden Cards --- */
.service-card.hidden {
    opacity: 0.08 !important;
    filter: blur(2px) !important;
}

/* --- Scanline (keep it, but subtle) --- */
.service-scanline::before {
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(200, 215, 230, 0.04) 2px,
        rgba(200, 215, 230, 0.04) 4px
    ) !important;
}

/* --- Responsive tweaks --- */
@media (max-width: 768px) {
    .service-card {
        padding: 20px 18px 18px !important;
    }
}