/* ============================================
   FUTURISTIC WEBSITE STYLES
   Simple Capital Solutions Private Limited
   ============================================ */

:root {
    /* Logo Colors - Dark Blue Theme */
    --primary-color: #ffffff; /* Pure white for dark mode */
    --secondary-color: #1a237e; /* Dark navy blue */
    --accent-color: #ffffff; /* Pure white for dark mode */
    --logo-green: #ffffff; /* Pure white for dark mode */
    --logo-green-light: #ffffff; /* Pure white for dark mode */
    --dark-bg: #1a1f3a;
    --darker-bg: #15192e;
    --light-text: #e8eaf6; /* Soft blue-white instead of pure white */
    --gray-text: #b0b8c4;
    --card-bg: rgba(26, 31, 58, 0.85);
    --border-color: rgba(255, 255, 255, 0.2);
    --glow-color: rgba(255, 255, 255, 0.3);
    --navy-accent: rgba(26, 35, 126, 0.3); /* Dark navy blue accent */
    
    /* Light Mode Colors - Hybrid Blue Theme */
    --light-bg: #e8eaf6; /* Light blue-grey */
    --light-card-bg: rgba(255, 255, 255, 0.95);
    --light-text-dark: #1a237e; /* Dark blue */
    --light-gray-text: #546e7a; /* Blue-grey */
    --light-border: rgba(26, 35, 126, 0.15);
}

[data-theme="light"] {
    --dark-bg: var(--light-bg);
    --darker-bg: #ffffff;
    --light-text: var(--light-text-dark);
    --gray-text: var(--light-gray-text);
    --card-bg: var(--light-card-bg);
    --border-color: var(--light-border);
    --glow-color: rgba(26, 35, 126, 0.2);
    --primary-color: #1a237e; /* Blue for light mode */
    --accent-color: #1a237e; /* Blue for light mode */
    --logo-green: #1a237e; /* Blue for light mode */
    --logo-green-light: #1a237e; /* Blue for light mode */
}

[data-theme="light"] body {
    background: var(--light-bg);
    color: var(--light-text-dark);
}

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(26, 35, 126, 0.1);
    box-shadow: 0 4px 20px rgba(26, 35, 126, 0.1);
}

[data-theme="light"] .navbar-nav .nav-link {
    color: var(--light-gray-text);
}

[data-theme="light"] .navbar-nav .nav-link:hover,
[data-theme="light"] .navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

[data-theme="light"] .service-card,
[data-theme="light"] .blog-card,
[data-theme="light"] .stat-card,
[data-theme="light"] .accordion-item {
    background: var(--light-card-bg);
    border-color: rgba(26, 35, 126, 0.2);
    box-shadow: 0 4px 20px rgba(26, 35, 126, 0.1);
}

[data-theme="light"] .contact-form {
    background: var(--light-card-bg);
    border-color: rgba(26, 35, 126, 0.2);
}

[data-theme="light"] .form-control,
[data-theme="light"] .form-select {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(26, 35, 126, 0.2);
    color: var(--light-text-dark);
}

[data-theme="light"] .form-control:focus,
[data-theme="light"] .form-select:focus {
    background: rgba(255, 255, 255, 0.95);
    border-color: #1a237e;
}

[data-theme="light"] .floating-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95),
        rgba(232, 234, 246, 0.9),
        rgba(255, 255, 255, 0.95));
    border-color: rgba(26, 35, 126, 0.3);
    box-shadow: 
        0 8px 32px rgba(26, 35, 126, 0.15),
        0 0 20px rgba(255, 255, 255, 0.05),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .floating-card::before {
    background: linear-gradient(135deg, 
        rgba(26, 35, 126, 0.5),
        rgba(26, 35, 126, 0.4),
        rgba(26, 35, 126, 0.5),
        rgba(26, 35, 126, 0.5));
}

[data-theme="light"] .floating-card:hover {
    box-shadow: 
        0 20px 60px rgba(26, 35, 126, 0.3),
        0 0 40px rgba(26, 35, 126, 0.2),
        0 0 60px rgba(26, 35, 126, 0.15),
        inset 0 0 30px rgba(26, 35, 126, 0.1);
    border-color: rgba(26, 35, 126, 0.6);
}

[data-theme="light"] .card-glow {
    background: radial-gradient(circle, 
        rgba(26, 35, 126, 0.25) 0%,
        rgba(26, 35, 126, 0.15) 40%,
        transparent 70%);
}

[data-theme="light"] .card-icon {
    color: rgba(26, 35, 126, 0.8);
    filter: drop-shadow(0 0 10px rgba(26, 35, 126, 0.4));
}

[data-theme="light"] .floating-card:hover .card-icon {
    color: rgba(21, 101, 192, 0.9);
    filter: drop-shadow(0 0 20px rgba(21, 101, 192, 0.6));
}

[data-theme="light"] .card-title {
    color: rgba(26, 35, 126, 0.9);
    text-shadow: 
        0 0 8px rgba(26, 35, 126, 0.3),
        0 0 15px rgba(26, 35, 126, 0.2);
}

[data-theme="light"] .floating-card:hover .card-title {
    color: rgba(26, 35, 126, 0.95);
    text-shadow: 
        0 0 12px rgba(26, 35, 126, 0.5),
        0 0 25px rgba(26, 35, 126, 0.3);
}

[data-theme="light"] .card-title::after {
    background: linear-gradient(90deg, 
        rgba(26, 35, 126, 0.6),
        rgba(21, 101, 192, 0.6),
        rgba(26, 35, 126, 0.6));
    box-shadow: 0 0 8px rgba(21, 101, 192, 0.4);
}

/* Contact Modal Styles */
.contact-modal-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    color: var(--light-text);
}

.contact-modal-content .modal-header {
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(26, 35, 126, 0.1));
}

.contact-modal-content .modal-title {
    color: var(--light-text);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-modal-content .modal-title i {
    color: #ffffff;
}

[data-theme="light"] .contact-modal-content .modal-title i {
    color: #1a237e;
}

.modal-subtitle {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-modal-content .btn-close {
    filter: invert(1);
}

.contact-modal-content .form-label {
    color: var(--light-text);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-modal-content .form-control,
.contact-modal-content .form-select {
    background: rgba(10, 14, 39, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--light-text);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-modal-content .form-control:focus,
.contact-modal-content .form-select:focus {
    background: rgba(10, 14, 39, 0.7);
    border-color: #ffffff;
    color: var(--light-text);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    outline: none;
}

[data-theme="light"] .contact-modal-content .form-control:focus,
[data-theme="light"] .contact-modal-content .form-select:focus {
    border-color: #1a237e;
    box-shadow: 0 0 0 0.2rem rgba(26, 35, 126, 0.25);
}

[data-theme="light"] .contact-modal-content {
    background: var(--light-card-bg);
    border-color: var(--light-border);
}

[data-theme="light"] .contact-modal-content .modal-header {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.05), rgba(255, 255, 255, 0.05));
}

[data-theme="light"] .contact-modal-content .modal-title {
    color: var(--light-text-dark);
}

[data-theme="light"] .modal-subtitle {
    color: var(--light-gray-text);
}

[data-theme="light"] .contact-modal-content .form-label {
    color: var(--light-text-dark);
}

[data-theme="light"] .contact-modal-content .form-control,
[data-theme="light"] .contact-modal-content .form-select {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--light-border);
    color: var(--light-text-dark);
}

[data-theme="light"] .contact-modal-content .form-control:focus,
[data-theme="light"] .contact-modal-content .form-select:focus {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--secondary-color);
}

/* Light Mode Hero Section Adjustments */
[data-theme="light"] .hero-section {
    background: var(--light-bg);
}

[data-theme="light"] .hero-video {
    opacity: 0.15;
    filter: brightness(0.5);
}

[data-theme="light"] .gradient-overlay {
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.4), transparent 70%);
}

[data-theme="light"] .hero-content {
    background: transparent;
    padding: 2rem 0;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
}

[data-theme="light"] .hero-title .typing-text {
    color: #1a237e !important;
    text-shadow: none;
}

[data-theme="light"] .typing-text::after {
    color: #1a237e !important;
}

[data-theme="light"] .hero-description {
    color: #1a237e !important;
    font-weight: 500;
    text-shadow: none;
}

[data-theme="light"] .btn-primary {
    background: #1a237e !important;
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

[data-theme="light"] .btn-primary:hover {
    background: #1a237e !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.4);
    transform: translateY(-3px);
}

[data-theme="light"] .btn-outline-primary {
    background: transparent !important;
    color: #1a237e !important;
    border: 2px solid #1a237e;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.2);
}

[data-theme="light"] .btn-outline-primary:hover {
    background: #1a237e !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.4);
    transform: translateY(-3px);
}

[data-theme="light"] .contact-modal-content .btn-close {
    filter: none;
}

/* Modal fade-in animation */
.fade-in-modal {
    animation: modalFadeIn 0.5s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-backdrop.show {
    animation: backdropFadeIn 0.3s ease-out;
}

@keyframes backdropFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Modal fade-in animation */
.fade-in-modal {
    animation: modalFadeIn 0.5s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-backdrop.show {
    animation: backdropFadeIn 0.3s ease-out;
}

@keyframes backdropFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--darker-bg);
    color: var(--light-text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.2);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--light-text);
    font-weight: 600;
}

[data-theme="light"] .navbar-brand {
    color: #1a237e !important;
}

.logo-container {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    background: transparent;
}

[data-theme="light"] .logo-img {
    filter: drop-shadow(0 0 8px rgba(26, 35, 126, 0.3));
}

/* Ensure logo displays properly */
.logo-container {
    background: transparent;
}

.logo-img[src*=".png"],
.logo-img[src*=".jpg"],
.logo-img[src*=".jpeg"] {
    background: transparent;
    mix-blend-mode: normal;
}

.logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--glow-color), transparent);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.company-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light-text);
}

[data-theme="light"] .company-name {
    color: #1a237e !important;
}

/* CIN Display in Header */
.cin-info {
    margin-left: 1rem;
    padding: 0.5rem 1rem;
}

.cin-text {
    font-size: 0.85rem;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

[data-theme="light"] .cin-text {
    color: #546e7a !important;
}

.cin-text i {
    color: #ffffff;
    font-size: 0.9rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    animation: icon-glow 2s ease-in-out infinite;
}

[data-theme="light"] .cin-text i {
    color: #1a237e !important;
    text-shadow: 0 0 8px rgba(26, 35, 126, 0.3);
}

@keyframes icon-glow {
    0%, 100% {
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    }
}

.cin-text:hover {
    color: #ffffff;
}

[data-theme="light"] .cin-text:hover {
    color: #1a237e;
}

@media (max-width: 991px) {
    .cin-info {
        margin-left: 0;
        padding: 0.5rem 1rem;
        border-top: 1px solid var(--border-color);
        margin-top: 0.5rem;
        width: 100%;
    }
    
    .cin-text {
        font-size: 0.8rem;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cin-text {
        font-size: 0.75rem;
        flex-wrap: wrap;
        text-align: center;
    }
    
    .company-details {
        padding: 1rem;
    }
    
    .detail-item {
        font-size: 0.9rem;
        flex-wrap: wrap;
    }
}

.navbar-nav .nav-link {
    color: #ffffff;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

[data-theme="light"] .navbar-nav .nav-link {
    color: #1a237e;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

[data-theme="light"] .navbar-nav .nav-link::after {
    background: #1a237e;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffffff;
}

.navbar-nav .nav-link.active::after {
    background: #ffffff;
}

[data-theme="light"] .navbar-nav .nav-link:hover,
[data-theme="light"] .navbar-nav .nav-link.active {
    color: #1a237e !important;
}

[data-theme="light"] .navbar-nav .nav-link.active::after {
    background: #1a237e !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

[data-theme="light"] .navbar-nav .nav-link:hover::after {
    background: #1a237e !important;
}

.btn-get-started {
    background: #ffffff !important;
    color: #000000 !important;
    border-radius: 25px;
    padding: 0.6rem 1.8rem !important;
    margin-left: 1rem;
    border: none !important;
    transition: all 0.3s ease;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 10;
}

.btn-get-started::after {
    display: none !important;
}

.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
    background: #ffffff !important;
    color: #000000 !important;
}

.btn-get-started:active {
    transform: translateY(0);
}

/* Light mode Get Started button */
[data-theme="light"] .btn-get-started {
    background: #1a237e !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

[data-theme="light"] .btn-get-started:hover {
    background: #1a237e !important;
    box-shadow: 0 6px 25px rgba(21, 101, 192, 0.6);
    color: #ffffff !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    opacity: 0.25;
    filter: brightness(0.4);
}

/* Removed floating currency symbols */

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, var(--primary-color), transparent),
        radial-gradient(2px 2px at 60% 70%, var(--secondary-color), transparent),
        radial-gradient(1px 1px at 50% 50%, var(--accent-color), transparent),
        radial-gradient(1px 1px at 80% 10%, var(--primary-color), transparent),
        radial-gradient(2px 2px at 90% 40%, var(--secondary-color), transparent);
    background-size: 200% 200%;
    animation: particle-move 20s ease infinite;
    opacity: 0.3;
}

@keyframes particle-move {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1), transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 100%;
    width: 100%;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    min-height: 120px;
    display: flex;
    align-items: center;
}

.typing-text {
    color: #1a237e;
    position: relative;
}

[data-theme="dark"] .typing-text {
    color: #ffffff !important;
}

[data-theme="light"] .typing-text {
    color: #1a237e !important;
}

.typing-text::after {
    content: '|';
    color: #1a237e;
    animation: blink 1s infinite;
    margin-left: 2px;
}

[data-theme="dark"] .typing-text::after {
    color: #ffffff !important;
}

[data-theme="light"] .typing-text::after {
    color: #1a237e !important;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}


.title-line {
    display: block;
}

.hero-description {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.8;
}

[data-theme="dark"] .hero-description {
    color: #ffffff !important;
}

[data-theme="light"] .hero-description {
    color: #1a237e !important;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.btn-primary {
    background: #ffffff;
    color: #000000 !important;
    border: none;
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

[data-theme="light"] .btn-primary {
    background: #1a237e !important;
    color: #ffffff !important;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline-primary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    position: relative;
    overflow: hidden;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #ffffff;
    transition: width 0.3s ease;
    z-index: 0;
}

.btn-outline-primary:hover::before {
    width: 100%;
}

.btn-outline-primary span,
.btn-outline-primary {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
    color: #000000 !important;
    background: #ffffff;
}

[data-theme="light"] .btn-primary:hover {
    background: #1a237e !important;
    color: #ffffff !important;
}

.btn-outline-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    color: #000000 !important;
    font-weight: 600;
}

[data-theme="light"] .btn-outline-primary:hover {
    color: #ffffff !important;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-glow:hover::before {
    width: 300px;
    height: 300px;
}

.hero-visual {
    position: relative;
    height: 500px;
    z-index: 1;
}

.floating-card {
    position: absolute;
    width: 220px;
    height: 280px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.9), rgba(13, 71, 161, 0.8));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 32px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(255, 255, 255, 0.15),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    overflow: visible;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.4));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: border-glow 3s ease-in-out infinite;
}

@keyframes border-glow {
    0%, 100% {
        opacity: 0.3;
        filter: blur(8px);
    }
    50% {
        opacity: 0.6;
        filter: blur(12px);
    }
}

.floating-card:hover {
    transform: translateY(-15px) scale(1.08) rotate(2deg);
    box-shadow: 
        0 20px 60px rgba(255, 255, 255, 0.3),
        0 0 60px rgba(255, 255, 255, 0.25),
        0 0 80px rgba(255, 255, 255, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    z-index: 100;
}

.floating-card:hover::before {
    opacity: 1;
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.15) 40%,
        transparent 70%);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse-glow 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.7;
    }
}

.floating-card:hover .card-glow {
    animation: pulse-glow-intense 1.5s ease-in-out infinite;
}

@keyframes pulse-glow-intense {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0.9;
    }
}

.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    width: 100%;
    height: 100%;
}

.card-icon {
    width: 100px;
    height: 100px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
    }
}

.floating-card:hover .card-icon {
    transform: translateY(-10px) scale(1.15) rotate(5deg);
    color: rgba(255, 255, 255, 0.95);
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.6));
    animation: icon-bounce 0.6s ease;
}

@keyframes icon-bounce {
    0%, 100% {
        transform: translateY(-10px) scale(1.15) rotate(5deg);
    }
    50% {
        transform: translateY(-15px) scale(1.2) rotate(8deg);
    }
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    margin: 0;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.4),
        0 0 20px rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    transition: all 0.4s ease;
    position: relative;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.5),
        rgba(255, 255, 255, 0.5),
        rgba(255, 255, 255, 0.5));
    transition: width 0.4s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.floating-card:hover .card-title {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}

.floating-card:hover .card-title::after {
    width: 80%;
}

/* Individual card color variations */
.card-1 {
    background: linear-gradient(135deg, 
        rgba(26, 35, 126, 0.95),
        rgba(13, 71, 161, 0.85),
        rgba(26, 35, 126, 0.9));
}

.card-2 {
    background: linear-gradient(135deg, 
        rgba(13, 71, 161, 0.95),
        rgba(26, 35, 126, 0.85),
        rgba(13, 71, 161, 0.9));
}

.card-3 {
    background: linear-gradient(135deg, 
        rgba(26, 35, 126, 0.95),
        rgba(5, 8, 16, 0.85),
        rgba(26, 35, 126, 0.9));
}

.card-1 .card-icon {
    animation-delay: 0s;
}

.card-2 .card-icon {
    animation-delay: 0.3s;
}

.card-3 .card-icon {
    animation-delay: 0.6s;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    top: 40%;
    right: 10%;
    animation: float 8s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 10%;
    left: 30%;
    animation: float 7s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scroll-down 1.5s ease infinite;
}

@keyframes scroll-down {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* Animations */
.animate-fade-in {
    animation: fadeInUp 1s ease;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1s ease 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a237e;
    position: relative;
}

[data-theme="dark"] .section-title {
    color: #ffffff !important;
}

[data-theme="light"] .section-title {
    color: #1a237e !important;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #ffffff;
    border-radius: 2px;
}

[data-theme="light"] .section-title::after {
    background: #1a237e;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
}

[data-theme="dark"] .section-subtitle {
    color: #ffffff !important;
}

[data-theme="light"] .section-subtitle {
    color: #1a237e !important;
}

/* Services Section */
.services-section {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.services-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
    filter: blur(2px);
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #ffffff;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15), 0 0 20px rgba(255, 255, 255, 0.1);
}

.service-card:hover .service-icon {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
    color: #000000 !important;
}

[data-theme="light"] .service-card:hover .service-icon {
    background: #1a237e;
    color: #ffffff !important;
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.7);
}

.service-card:hover .service-image {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.service-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000000;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.2);
    animation: icon-pulse 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

[data-theme="light"] .service-icon {
    background: #1a237e !important;
    color: #ffffff !important;
    box-shadow: 0 5px 20px rgba(26, 35, 126, 0.3), 0 0 15px rgba(26, 35, 126, 0.2);
    border: 2px solid rgba(26, 35, 126, 0.2);
}

@keyframes icon-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.service-card:hover .service-icon {
    animation: icon-bounce 0.6s ease;
}

@keyframes icon-bounce {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2) rotate(5deg);
    }
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

[data-theme="dark"] .service-card h3 {
    color: #ffffff !important;
}

[data-theme="light"] .service-card h3 {
    color: #1a237e !important;
}

.service-card p {
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

[data-theme="dark"] .service-card p {
    color: #ffffff !important;
}

[data-theme="light"] .service-card p {
    color: #1a237e !important;
}

.service-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

[data-theme="light"] .service-link {
    color: #1a237e;
}

[data-theme="light"] .service-link {
    color: #1a237e !important;
}

.service-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

[data-theme="light"] .service-link::before {
    background: #1a237e !important;
}

.service-link:hover {
    gap: 1rem;
    color: #ffffff;
}

[data-theme="light"] .service-link:hover {
    color: #1a237e !important;
}

.service-link:hover::before {
    width: 100%;
}

.service-link i {
    color: #ffffff;
    transition: transform 0.3s ease;
}

[data-theme="light"] .service-link i {
    color: #1a237e !important;
}

.service-link:hover i {
    transform: translateX(5px);
}

[data-theme="light"] .service-link:hover i {
    color: #1a237e !important;
}

/* About Section */
.about-section {
    background: var(--darker-bg);
}

.about-text {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

[data-theme="dark"] .about-text {
    color: #ffffff !important;
}

[data-theme="light"] .about-text {
    color: #1a237e !important;
}

.company-details {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

[data-theme="light"] .company-details {
    background: #ffffff !important;
    border-color: rgba(26, 35, 126, 0.2) !important;
}

.about-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--gray-text);
    font-size: 1rem;
}

[data-theme="dark"] .detail-item {
    color: var(--gray-text) !important;
}

[data-theme="light"] .detail-item {
    color: #1a237e !important;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item i {
    color: #ffffff;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .detail-item i {
    color: #ffffff !important;
}

[data-theme="light"] .detail-item i {
    color: #1a237e !important;
    text-shadow: none;
}

.detail-item strong {
    color: #ffffff;
    margin-right: 0.5rem;
}

[data-theme="dark"] .detail-item strong {
    color: #ffffff !important;
}

[data-theme="light"] .detail-item strong {
    color: #1a237e !important;
}

[data-theme="dark"] .detail-item span {
    color: #ffffff !important;
}

[data-theme="light"] .detail-item span {
    color: #1a237e !important;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-icon-wrapper {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-icon {
    font-size: 2.5rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .stat-icon {
    color: #1a237e !important;
    text-shadow: none;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ffffff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1), 0 0 15px rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .stat-number {
    color: #ffffff !important;
}

[data-theme="light"] .stat-number {
    color: #1a237e !important;
}

.stat-label {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .stat-label {
    color: #ffffff !important;
}

[data-theme="light"] .stat-label {
    color: #1a237e !important;
}

.stat-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress-bar {
    height: 100%;
    background: #ffffff;
    border-radius: 2px;
    width: 0;
    transition: width 2s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    animation: progress-glow 2s ease-in-out infinite;
    position: relative;
}

[data-theme="light"] .progress-bar {
    background: #1a237e;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes progress-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    }
}

/* About Section Image */
.about-image-container {
    position: relative;
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.15);
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-container:hover .about-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.3), rgba(255, 255, 255, 0.1));
    pointer-events: none;
}

.chart-animation {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 150px;
    height: 100px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 10px;
    backdrop-filter: blur(10px);
}

.animated-chart {
    width: 100%;
    height: 100%;
}

.chart-line {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: draw-chart 2s ease-in-out forwards;
}

@keyframes draw-chart {
    to {
        stroke-dashoffset: 0;
    }
}

/* FAQ Section */
.faq-section {
    background: var(--dark-bg);
}

.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.accordion-button {
    background: transparent;
    color: var(--light-text);
    font-weight: 600;
    border: none;
    padding: 1.5rem;
    box-shadow: none;
}

[data-theme="light"] .accordion-button {
    color: #1a237e !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(26, 35, 126, 0.2));
    color: #ffffff;
    border-left: 3px solid #ffffff;
}

[data-theme="light"] .accordion-button:not(.collapsed) {
    background: #f5f5f5 !important;
    color: #1a237e !important;
    border-left: 3px solid #1a237e !important;
}

[data-theme="light"] .accordion-button:not(.collapsed):focus {
    background: #f5f5f5 !important;
    color: #1a237e !important;
    box-shadow: none !important;
}

[data-theme="light"] .accordion-button:not(.collapsed):focus-visible {
    background: #f5f5f5 !important;
    color: #1a237e !important;
    box-shadow: none !important;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

[data-theme="light"] .accordion-button::after {
    filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7151%) hue-rotate(230deg) brightness(90%) contrast(101%);
}

.accordion-body {
    background: transparent;
    color: #ffffff;
    padding: 1.5rem;
    line-height: 1.8;
}

[data-theme="dark"] .accordion-body {
    color: #ffffff !important;
}

[data-theme="light"] .accordion-body {
    color: #1a237e !important;
}

[data-theme="light"] .accordion-body {
    color: #546e7a;
}

/* Blog Section */
.blog-section {
    background: var(--darker-bg);
}

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
}

.blog-image {
    height: 200px;
    background: #ffffff;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

.blog-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--logo-green), var(--logo-green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color) !important;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3), 0 0 10px rgba(255, 255, 255, 0.2);
    animation: badge-rotate 3s linear infinite;
    border: 2px solid rgba(26, 35, 126, 0.3);
    font-weight: 600;
}

@keyframes badge-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.blog-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.15), rgba(26, 35, 126, 0.2));
    opacity: 0.8;
}

.blog-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.blog-content p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.8;
}

.blog-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

[data-theme="light"] .blog-link {
    color: #1a237e;
}

.blog-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.blog-link:hover {
    gap: 1rem;
    color: #ffffff;
}

.blog-link:hover::before {
    width: 100%;
}

.blog-link i {
    color: #ffffff;
    transition: transform 0.3s ease;
}

[data-theme="light"] .blog-link i {
    color: #1a237e;
}

.blog-link:hover i {
    transform: translateX(5px);
}

[data-theme="light"] .blog-link:hover {
    color: #1a237e;
}

[data-theme="light"] .blog-link:hover i {
    color: #1a237e;
}

[data-theme="light"] .blog-link::before {
    background: #1a237e;
}

/* Blog Search Form */
.blog-search-form {
    margin-bottom: 2rem;
}

.blog-search-form .input-group {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    overflow: hidden;
}

.blog-search-form .form-control {
    border: none;
    padding: 0.75rem 1.5rem;
    background: var(--card-bg);
    color: var(--light-text);
}

[data-theme="light"] .blog-search-form .form-control {
    background: var(--light-card-bg);
    color: var(--light-text-dark);
}

.blog-search-form .btn {
    border-radius: 0;
    padding: 0.75rem 1.5rem;
}

/* Blog Meta Info */
.blog-date, .blog-author, .blog-views {
    color: var(--gray-text);
    font-size: 0.9rem;
    display: inline-block;
}

.blog-author {
    margin-left: 1rem;
}

.blog-meta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.blog-views {
    color: var(--gray-text);
    font-size: 0.85rem;
}

[data-theme="light"] .blog-date,
[data-theme="light"] .blog-author,
[data-theme="light"] .blog-views {
    color: var(--light-gray-text);
}

/* Blog Detail Page */
.blog-detail-section {
    padding: 4rem 0;
}

.blog-detail-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-video {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-embed {
    border-radius: 15px;
    overflow: hidden;
}

.blog-excerpt {
    font-style: italic;
    color: var(--gray-text);
}

[data-theme="light"] .blog-excerpt {
    color: var(--light-gray-text);
}

.blog-main-content {
    line-height: 1.8;
    color: var(--light-text);
}

[data-theme="light"] .blog-main-content {
    color: var(--light-text-dark);
}

.blog-main-content h2,
.blog-main-content h3,
.blog-main-content h4 {
    color: var(--light-text);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

[data-theme="light"] .blog-main-content h2,
[data-theme="light"] .blog-main-content h3,
[data-theme="light"] .blog-main-content h4 {
    color: var(--light-text-dark);
}

.blog-main-content ul,
.blog-main-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.blog-main-content li {
    margin-bottom: 0.5rem;
    color: var(--gray-text);
}

[data-theme="light"] .blog-main-content li {
    color: var(--light-gray-text);
}

.blog-reference {
    border-left: 4px solid var(--primary-color);
}

.blog-meta-info {
    font-size: 0.9rem;
    color: var(--gray-text);
}

[data-theme="light"] .blog-meta-info {
    color: var(--light-gray-text);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

[data-theme="light"] .sidebar-widget {
    background: var(--light-card-bg);
    border-color: var(--light-border);
}

.sidebar-widget h4 {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

[data-theme="light"] .sidebar-widget h4 {
    color: var(--light-text-dark);
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-article {
    display: block;
    padding: 1rem;
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

[data-theme="light"] .related-article {
    background: rgba(255, 255, 255, 0.5);
    border-color: var(--light-border);
}

.related-article:hover {
    transform: translateX(5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .related-article:hover {
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.2);
}

.related-article h5 {
    color: var(--light-text);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

[data-theme="light"] .related-article h5 {
    color: var(--light-text-dark);
}

.related-article span {
    color: var(--gray-text);
    font-size: 0.85rem;
}

[data-theme="light"] .related-article span {
    color: var(--light-gray-text);
}

/* Social Share */
.social-share {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.social-share .btn {
    flex: 1;
    min-width: 120px;
}

/* Pagination */
.pagination {
    margin-top: 3rem;
}

.pagination .page-link {
    background: var(--card-bg);
    border-color: var(--border-color);
    color: var(--light-text);
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
}

[data-theme="light"] .pagination .page-link {
    background: var(--light-card-bg);
    border-color: var(--light-border);
    color: var(--light-text-dark);
}

.pagination .page-link:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

[data-theme="light"] .pagination .page-link:hover {
    background: var(--secondary-color);
    color: #ffffff;
    border-color: var(--secondary-color);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

[data-theme="light"] .pagination .page-item.active .page-link {
    background: var(--secondary-color);
    color: #ffffff;
    border-color: var(--secondary-color);
}

.pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Blog Styles */
@media (max-width: 991px) {
    .blog-sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .blog-detail-image {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-search-form .input-group {
        flex-direction: column;
    }
    
    .blog-search-form .btn {
        border-radius: 0 0 25px 25px;
    }
    
    .social-share .btn {
        min-width: 100%;
    }
}

/* Contact Section */
.contact-section {
    background: var(--dark-bg);
}

.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.form-label {
    color: var(--light-text);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    background: rgba(10, 14, 39, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--light-text);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    background: rgba(10, 14, 39, 0.7);
    border-color: #ffffff;
    color: var(--light-text);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    outline: none;
}

[data-theme="light"] .form-control:focus,
[data-theme="light"] .form-select:focus {
    border-color: #1a237e;
    box-shadow: 0 0 0 0.2rem rgba(26, 35, 126, 0.25);
}

.form-control::placeholder {
    color: var(--gray-text);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-brand h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
    color: #ffffff;
}

[data-theme="dark"] .footer-brand h4 {
    color: #ffffff !important;
}

[data-theme="light"] .footer-brand h4 {
    color: #1a237e !important;
}

/* Theme Toggle Button */
.theme-toggle {
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: var(--darker-bg);
    transform: rotate(180deg);
}

[data-theme="light"] .theme-toggle {
    border-color: #1a237e !important;
    color: #1a237e !important;
}

[data-theme="light"] .theme-toggle i {
    color: #1a237e !important;
}

[data-theme="light"] .theme-toggle:hover {
    background: #1a237e !important;
    color: #ffffff !important;
}

[data-theme="light"] .theme-toggle:hover i {
    color: #ffffff !important;
}

.footer-brand p {
    color: var(--gray-text);
}

[data-theme="dark"] .footer-brand p {
    color: var(--gray-text) !important;
}

[data-theme="light"] .footer-brand p {
    color: #546e7a !important;
}

.footer h5 {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

[data-theme="dark"] .footer h5 {
    color: #ffffff !important;
}

[data-theme="light"] .footer h5 {
    color: #1a237e !important;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

[data-theme="dark"] .footer-links a {
    color: var(--gray-text) !important;
}

[data-theme="light"] .footer-links a {
    color: #546e7a !important;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

[data-theme="light"] .footer-links a:hover {
    color: #1a237e !important;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: var(--gray-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

[data-theme="dark"] .footer-contact li {
    color: var(--gray-text) !important;
}

[data-theme="light"] .footer-contact li {
    color: #546e7a !important;
}

.footer-contact i {
    color: #ffffff;
    margin-top: 0.25rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .footer-contact i {
    color: #1a237e !important;
    text-shadow: none;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .social-links a {
    color: #1a237e !important;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #ffffff;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

[data-theme="light"] .social-links a::before {
    background: #1a237e;
}

.social-links a:hover::before {
    width: 100%;
    height: 100%;
}

.social-links a:hover {
    background: #ffffff;
    color: #000000 !important;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    border-color: #ffffff;
    font-weight: 600;
}

[data-theme="light"] .social-links a:hover {
    background: #1a237e;
    color: #ffffff !important;
    border-color: #1a237e;
}

.social-links a i {
    position: relative;
    z-index: 1;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--gray-text);
}

[data-theme="dark"] .footer-bottom {
    color: var(--gray-text) !important;
}

[data-theme="light"] .footer-bottom {
    color: #546e7a !important;
}

/* WhatsApp Chatbot */
.whatsapp-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 2px solid var(--darker-bg);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.whatsapp-chatbot {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    max-height: 600px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    display: none;
    flex-direction: column;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.whatsapp-chatbot.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-header {
    background: linear-gradient(135deg, #25d366, #128c7e);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.chatbot-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.chatbot-info {
    flex-grow: 1;
}

.chatbot-info h6 {
    margin: 0;
    font-weight: 600;
}

.status {
    font-size: 0.85rem;
    opacity: 0.9;
}

.chatbot-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.chatbot-close:hover {
    transform: rotate(90deg);
}

.chatbot-messages {
    padding: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
    flex-grow: 1;
}

.message {
    margin-bottom: 1rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bot-message p {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 15px;
    color: var(--light-text);
    margin: 0;
    line-height: 1.6;
}

.chatbot-form {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.form-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-step label {
    color: var(--light-text);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-step input,
.form-step select {
    background: rgba(10, 14, 39, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem;
    color: var(--light-text);
    font-size: 0.9rem;
}

.form-step input:focus,
.form-step select:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

[data-theme="light"] .form-step input:focus,
[data-theme="light"] .form-step select:focus {
    border-color: #1a237e;
    box-shadow: 0 0 0 0.2rem rgba(26, 35, 126, 0.25);
}

.btn-next {
    background: linear-gradient(135deg, var(--logo-green), var(--logo-green-light));
    border: none;
    border-radius: 10px;
    padding: 0.75rem;
    color: var(--secondary-color) !important;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    color: var(--secondary-color) !important;
}

/* Additional Finance Animations */
@keyframes money-flow {
    0% {
        transform: translateX(-100px) translateY(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(-50px) rotate(360deg);
        opacity: 0;
    }
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Number Counter Animation */
.stat-number {
    position: relative;
}

.stat-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: number-glow 2s ease-in-out infinite;
}

@keyframes number-glow {
    0%, 100% {
        opacity: 0;
        filter: blur(0px);
    }
    50% {
        opacity: 0.3;
        filter: blur(5px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .whatsapp-chatbot {
        width: 320px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: 2rem;
    }
    
    .floating-card {
        width: 160px;
        height: 220px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-content {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .hero-video {
        opacity: 0.2;
    }
    
    .about-image {
        height: 300px;
    }
    
    .chart-animation {
        width: 120px;
        height: 80px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .whatsapp-chatbot {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
        max-height: 500px;
    }
    
    .whatsapp-toggle {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .navbar-brand .company-name {
        display: none;
    }
    
    .service-card,
    .blog-card {
        margin-bottom: 1.5rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Modal fade-in animation */
.fade-in-modal {
    animation: modalFadeIn 0.5s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-backdrop.show {
    animation: backdropFadeIn 0.3s ease-out;
}

@keyframes backdropFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* ============================================
   MODERN PAGE STYLES - About, Contact, Team, Service Detail
   ============================================ */

/* Page Header - Modern Design */
.page-header {
    position: relative;
    padding: 150px 0 100px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 14, 39, 0.95) 100%);
    overflow: hidden;
    margin-top: 70px;
}

[data-theme="light"] .page-header {
    background: linear-gradient(135deg, rgba(240, 247, 255, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
}

.page-header::before {
 content: \\;
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: 
 radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
 radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
 animation: pulse 8s ease-in-out infinite;
}

[data-theme="light"] .page-header::before {
 background: 
 radial-gradient(circle at 20% 50%, rgba(26, 35, 126, 0.1) 0%, transparent 50%),
 radial-gradient(circle at 80% 80%, rgba(26, 35, 126, 0.08) 0%, transparent 50%);
}

@keyframes pulse {
 0%, 100% { opacity: 0.5; }
 50% { opacity: 1; }
}

.page-header .container {
 position: relative;
 z-index: 2;
}

.page-title {
 font-family: "Orbitron", sans-serif;
 font-size: 3.5rem;
 font-weight: 800;
 color: #ffffff;
 margin-bottom: 1rem;
 text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
 animation: fadeInUp 0.8s ease;
}

[data-theme="light"] .page-title {
 color: #1a237e;
 text-shadow: 0 2px 10px rgba(26, 35, 126, 0.2);
}

.page-subtitle {
 font-size: 1.3rem;
 color: rgba(255, 255, 255, 0.8);
 font-weight: 300;
 animation: fadeInUp 0.8s ease 0.2s both;
}

[data-theme="light"] .page-subtitle {
 color: #546e7a;
}

.service-header-icon {
 width: 100px;
 height: 100px;
 margin: 0 auto 2rem;
 background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
 border: 2px solid rgba(255, 255, 255, 0.2);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 backdrop-filter: blur(10px);
 animation: fadeInScale 0.8s ease;
}

[data-theme="light"] .service-header-icon {
 background: linear-gradient(135deg, rgba(26, 35, 126, 0.1) 0%, rgba(26, 35, 126, 0.05) 100%);
 border-color: rgba(26, 35, 126, 0.2);
}

.service-header-icon i {
 font-size: 2.5rem;
 color: #ffffff;
}

[data-theme="light"] .service-header-icon i {
 color: #1a237e;
}

@keyframes fadeInScale {
 from {
 opacity: 0;
 transform: scale(0.5);
 }
 to {
 opacity: 1;
 transform: scale(1);
 }
}

/* About Page Styles */
.about-detail-section {
 padding: 80px 0;
 background: var(--dark-bg);
 position: relative;
}

[data-theme="light"] .about-detail-section {
 background: #f8f9fa;
}

/* Hero Stats - Responsive Grid with White Borders */
.stat-card-responsive {
    background: var(--card-bg);
    border: 3px solid #ffffff;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease backwards;
}

.stat-card-responsive::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.stat-card-responsive:hover::before {
    left: 100%;
}

.stat-card-responsive:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #00ff88;
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.4), 0 0 40px rgba(0, 255, 136, 0.2);
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
    animation: iconFloat 3s ease-in-out infinite;
}

.stat-card-responsive:hover .stat-icon-wrapper {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.6), 0 0 80px rgba(0, 255, 136, 0.3);
    animation: iconSpin 0.8s ease;
}

.stat-icon-responsive {
    font-size: 2.25rem;
    color: #ffffff;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
    position: relative;
    z-index: 1;
}

.stat-card-responsive:hover .stat-icon-responsive {
    filter: drop-shadow(0 0 25px rgba(0, 255, 136, 0.9));
    transform: scale(1.1);
}

.stat-title-responsive {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.stat-card-responsive:hover .stat-title-responsive {
    color: #00ff88;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}

.stat-card-responsive .stat-value-animated {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-family: "Orbitron", sans-serif;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    animation: numberGlow 2s ease-in-out infinite;
    transition: all 0.5s ease;
    display: block;
    position: relative;
    z-index: 1;
}

.stat-card-responsive:hover .stat-value-animated {
    color: #00ff88;
    text-shadow: 0 0 40px rgba(0, 255, 136, 0.9), 0 0 60px rgba(0, 255, 136, 0.5);
    transform: scale(1.1);
}

.stat-description-responsive {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.stat-card-responsive:hover .stat-description-responsive {
    color: #ffffff;
    letter-spacing: 2px;
}

/* Light Theme Styles */
[data-theme="light"] .stat-card-responsive {
    background: rgba(255, 255, 255, 0.95);
    border-color: #1a237e;
}

[data-theme="light"] .stat-card-responsive:hover {
    border-color: #1a237e;
    box-shadow: 0 20px 50px rgba(26, 35, 126, 0.2);
}

[data-theme="light"] .stat-icon-wrapper {
    background: rgba(26, 35, 126, 0.1);
    border-color: #1a237e;
    box-shadow: 0 5px 20px rgba(26, 35, 126, 0.2);
}

[data-theme="light"] .stat-card-responsive:hover .stat-icon-wrapper {
    background: rgba(26, 35, 126, 0.2);
    border-color: #1a237e;
    box-shadow: 0 0 40px rgba(26, 35, 126, 0.4);
}

[data-theme="light"] .stat-icon-responsive {
    color: #1a237e;
    filter: drop-shadow(0 0 8px rgba(26, 35, 126, 0.4));
}

[data-theme="light"] .stat-card-responsive:hover .stat-icon-responsive {
    filter: drop-shadow(0 0 20px rgba(26, 35, 126, 0.6));
}

[data-theme="light"] .stat-title-responsive {
    color: #1a237e;
}

[data-theme="light"] .stat-card-responsive:hover .stat-title-responsive {
    color: #1a237e;
    text-shadow: 0 2px 10px rgba(26, 35, 126, 0.4);
}

[data-theme="light"] .stat-card-responsive .stat-value-animated {
    color: #1a237e;
    text-shadow: 0 2px 15px rgba(26, 35, 126, 0.4);
}

[data-theme="light"] .stat-card-responsive:hover .stat-value-animated {
    color: #1a237e;
    text-shadow: 0 4px 25px rgba(26, 35, 126, 0.6);
}

[data-theme="light"] .stat-description-responsive {
    color: #546e7a;
}

[data-theme="light"] .stat-card-responsive:hover .stat-description-responsive {
    color: #1a237e;
}

/* Animation Delays for Staggered Effect */
.stat-card-responsive:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card-responsive:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card-responsive:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card-responsive:nth-child(4) {
    animation-delay: 0.4s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stat-card-responsive {
        margin-bottom: 1rem;
        padding: 2rem 1rem;
    }
    
    .stat-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .stat-icon-responsive {
        font-size: 2rem;
    }
    
    .stat-card-responsive .stat-value-animated {
        font-size: 2rem;
    }
    
    .stat-title-responsive {
        font-size: 0.9rem;
    }
    
    .stat-description-responsive {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .stat-card-responsive {
        padding: 1.5rem 1rem;
    }
    
    .stat-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon-responsive {
        font-size: 1.75rem;
    }
    
    .stat-card-responsive .stat-value-animated {
        font-size: 1.75rem;
    }
}

/* Hero Stats - Tabular Form with Borders (Fallback) */
.stats-table-container {
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 3px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    animation: fadeInUp 0.8s ease;
}

.stats-table-container:hover {
    border-color: #00ff88;
    box-shadow: 0 25px 70px rgba(0, 255, 136, 0.3), 0 0 40px rgba(0, 255, 136, 0.2);
    transform: translateY(-5px);
}

.stats-table-wrapper {
    overflow-x: auto;
}

.stats-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
}

.stats-table thead {
    background: rgba(0, 212, 255, 0.1);
}

.stats-table th.stat-header {
    padding: 1.5rem 1rem;
    border: 3px solid var(--border-color);
    border-right: none;
    border-bottom: none;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(0, 212, 255, 0.05);
}

.stats-table th.stat-header:last-child {
    border-right: 3px solid var(--border-color);
}

.stats-table th.stat-header:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00ff88;
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0, 255, 136, 0.4), inset 0 0 20px rgba(0, 255, 136, 0.2);
}

.stat-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.stat-header-icon {
    font-size: 2.5rem;
    color: #ffffff;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
    animation: iconPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

.stats-table th.stat-header:hover .stat-header-icon {
    color: #00ff88;
    transform: scale(1.3) rotate(360deg);
    animation: iconBounce 0.6s ease;
    filter: drop-shadow(0 0 25px rgba(0, 255, 136, 0.8));
}

.stat-header-content span {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.stats-table th.stat-header:hover .stat-header-content span {
    color: #00ff88;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}

[data-theme="light"] .stat-header-icon {
    color: #1a237e;
    filter: drop-shadow(0 0 8px rgba(26, 35, 126, 0.4));
}

[data-theme="light"] .stat-header-content span {
    color: #1a237e;
}

[data-theme="light"] .stats-table th.stat-header:hover .stat-header-icon {
    color: #1a237e;
    filter: drop-shadow(0 0 20px rgba(26, 35, 126, 0.6));
}

[data-theme="light"] .stats-table th.stat-header:hover .stat-header-content span {
    color: #1a237e;
    text-shadow: 0 2px 10px rgba(26, 35, 126, 0.4);
}

.stats-table td.stat-cell {
    padding: 2.5rem 1rem;
    border: 3px solid var(--border-color);
    border-top: none;
    border-right: none;
    text-align: center;
    vertical-align: middle;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(10, 14, 39, 0.5);
}

.stats-table td.stat-cell:last-child {
    border-right: 3px solid var(--border-color);
}

.stats-table td.stat-cell:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: #00ff88;
    transform: scale(1.05);
    box-shadow: inset 0 0 40px rgba(0, 255, 136, 0.3), 0 5px 20px rgba(0, 255, 136, 0.2);
    z-index: 1;
}

.stat-value-animated {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-family: "Orbitron", sans-serif;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    animation: numberGlow 2s ease-in-out infinite;
    transition: all 0.5s ease;
    display: block;
}

.stats-table td.stat-cell:hover .stat-value-animated {
    color: #00ff88;
    text-shadow: 0 0 40px rgba(0, 255, 136, 0.9), 0 0 60px rgba(0, 255, 136, 0.5);
    transform: scale(1.15);
}

.stat-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-table td.stat-cell:hover .stat-description {
    color: #ffffff;
    letter-spacing: 2px;
}

[data-theme="light"] .stat-value-animated {
    color: #1a237e;
    text-shadow: 0 2px 15px rgba(26, 35, 126, 0.4);
}

[data-theme="light"] .stats-table td.stat-cell:hover .stat-value-animated {
    color: #1a237e;
    text-shadow: 0 4px 25px rgba(26, 35, 126, 0.6);
}

[data-theme="light"] .stat-description {
    color: #546e7a;
}

[data-theme="light"] .stats-table td.stat-cell {
    background: rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .stats-table th.stat-header {
    background: rgba(26, 35, 126, 0.1);
}

[data-theme="light"] .stats-table-container {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(26, 35, 126, 0.3);
}

[data-theme="light"] .stats-table-container:hover {
    border-color: #1a237e;
    box-shadow: 0 25px 70px rgba(26, 35, 126, 0.2);
}

/* Responsive Table Styles */
@media (max-width: 768px) {
    .stats-table {
        display: block;
    }
    
    .stats-table thead {
        display: none;
    }
    
    .stats-table tbody {
        display: block;
    }
    
    .stats-table tr {
        display: block;
        margin-bottom: 1rem;
        border: 3px solid var(--border-color);
        border-radius: 15px;
        overflow: hidden;
        background: var(--card-bg);
    }
    
    .stats-table td.stat-cell {
        display: block;
        border: none;
        border-bottom: 2px solid var(--border-color);
        padding: 1.5rem;
        text-align: left;
    }
    
    .stats-table td.stat-cell:last-child {
        border-bottom: none;
    }
    
    .stats-table td.stat-cell::before {
        content: attr(data-label);
        font-weight: 700;
        color: #ffffff;
        display: block;
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }
    
    [data-theme="light"] .stats-table td.stat-cell::before {
        color: #1a237e;
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.9;
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1.3) rotate(360deg);
    }
    50% {
        transform: scale(1.4) rotate(370deg);
    }
}

@keyframes numberGlow {
    0%, 100% {
        text-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    }
    50% {
        text-shadow: 0 0 50px rgba(255, 255, 255, 0.9), 0 0 70px rgba(0, 255, 136, 0.5);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Stats - Premium Animated Cards (Fallback) */
.about-hero-stats {
    margin-bottom: 4rem;
}

.hero-stat-item {
    background: linear-gradient(135deg, 
        rgba(10, 14, 39, 0.95) 0%, 
        rgba(26, 35, 126, 0.8) 50%,
        rgba(10, 14, 39, 0.95) 100%) !important;
    border: 3px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 25px !important;
    padding: 3rem 2rem !important;
    text-align: center;
    position: relative;
    overflow: visible !important;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.2) inset,
        0 0 50px rgba(255, 255, 255, 0.15) !important;
    animation: bounceIn 1s ease backwards !important;
    transform-style: preserve-3d;
    animation-fill-mode: both !important;
}

/* Hero stat items animation delays */
.about-hero-stats .col-md-3:nth-child(1) .hero-stat-item,
.about-hero-stats .col-sm-6:nth-child(1) .hero-stat-item { 
    animation: bounceIn 1s ease 0.1s both !important;
}
.about-hero-stats .col-md-3:nth-child(2) .hero-stat-item,
.about-hero-stats .col-sm-6:nth-child(2) .hero-stat-item { 
    animation: bounceIn 1s ease 0.3s both !important;
}
.about-hero-stats .col-md-3:nth-child(3) .hero-stat-item,
.about-hero-stats .col-sm-6:nth-child(3) .hero-stat-item { 
    animation: bounceIn 1s ease 0.5s both !important;
}
.about-hero-stats .col-md-3:nth-child(4) .hero-stat-item,
.about-hero-stats .col-sm-6:nth-child(4) .hero-stat-item { 
    animation: bounceIn 1s ease 0.7s both !important;
}

.hero-stat-item::before {
    content: '' !important;
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: floatCard 6s ease-in-out infinite;
}

.hero-stat-item::after {
    content: '' !important;
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.hero-stat-item:hover::before {
    opacity: 1 !important;
}

.hero-stat-item:hover::after {
    left: 100% !important;
}

.hero-stat-item:hover {
    transform: translateY(-20px) scale(1.1) rotateX(10deg) rotateY(5deg) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
    box-shadow: 
        0 30px 60px rgba(255, 255, 255, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.5) inset,
        0 0 60px rgba(255, 255, 255, 0.3),
        0 0 100px rgba(255, 255, 255, 0.2) !important;
    animation: glowPulse 1.5s ease-in-out infinite !important;
    z-index: 10 !important;
}

[data-theme="light"] .hero-stat-item {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(240, 247, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.95) 100%) !important;
    border-color: rgba(26, 35, 126, 0.2) !important;
    box-shadow: 
        0 10px 30px rgba(26, 35, 126, 0.1),
        0 0 0 1px rgba(26, 35, 126, 0.1) inset !important;
}

[data-theme="light"] .hero-stat-item:hover {
    border-color: rgba(26, 35, 126, 0.5) !important;
    box-shadow: 
        0 25px 50px rgba(26, 35, 126, 0.2),
        0 0 0 2px rgba(26, 35, 126, 0.3) inset,
        0 0 40px rgba(26, 35, 126, 0.15) !important;
}

.hero-stat-icon {
    width: 90px !important;
    height: 90px !important;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.15) 100%) !important;
    border: 4px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    position: relative;
    box-shadow: 
        0 8px 25px rgba(255, 255, 255, 0.3),
        0 0 0 0 rgba(255, 255, 255, 0.5),
        0 0 40px rgba(255, 255, 255, 0.2) !important;
    animation: floatCard 3s ease-in-out infinite, zoomIn 0.6s ease 0.5s backwards !important;
    animation-fill-mode: both !important;
}

[data-theme="light"] .hero-stat-icon {
    background: linear-gradient(135deg, 
        rgba(26, 35, 126, 0.2) 0%, 
        rgba(26, 35, 126, 0.1) 100%) !important;
    border-color: rgba(26, 35, 126, 0.3) !important;
    box-shadow: 
        0 5px 15px rgba(26, 35, 126, 0.2),
        0 0 0 0 rgba(26, 35, 126, 0.4) !important;
}

.hero-stat-item:hover .hero-stat-icon {
    transform: rotate(720deg) scale(1.3) !important;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(255, 255, 255, 0.3) 100%) !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 
        0 15px 40px rgba(255, 255, 255, 0.6),
        0 0 0 8px rgba(255, 255, 255, 0.3),
        0 0 60px rgba(255, 255, 255, 0.5),
        0 0 100px rgba(255, 255, 255, 0.3) !important;
    animation: iconSpin 1.5s ease, glowPulse 1.5s ease-in-out infinite !important;
}

[data-theme="light"] .hero-stat-item:hover .hero-stat-icon {
    background: linear-gradient(135deg, 
        rgba(26, 35, 126, 0.3) 0%, 
        rgba(26, 35, 126, 0.2) 100%) !important;
    border-color: rgba(26, 35, 126, 0.6) !important;
    box-shadow: 
        0 10px 30px rgba(26, 35, 126, 0.4),
        0 0 0 5px rgba(26, 35, 126, 0.2) !important;
}

.hero-stat-icon i {
    font-size: 2.5rem !important;
    color: #ffffff;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5)) !important;
}

[data-theme="light"] .hero-stat-icon i {
    color: #1a237e !important;
    filter: drop-shadow(0 0 5px rgba(26, 35, 126, 0.3)) !important;
}

.hero-stat-item:hover .hero-stat-icon i {
    transform: scale(1.1) !important;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)) !important;
}

[data-theme="light"] .hero-stat-item:hover .hero-stat-icon i {
    color: #1a237e !important;
    filter: drop-shadow(0 0 10px rgba(26, 35, 126, 0.5)) !important;
}

.hero-stat-value {
    font-family: 'Orbitron', sans-serif !important;
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.5),
        0 0 40px rgba(255, 255, 255, 0.3) !important;
    animation: numberCount 0.8s ease backwards !important;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-stat-item:hover .hero-stat-value {
    transform: scale(1.1) !important;
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.7),
        0 0 60px rgba(255, 255, 255, 0.5) !important;
}

[data-theme="light"] .hero-stat-value {
    color: #1a237e !important;
    text-shadow: 0 2px 10px rgba(26, 35, 126, 0.3) !important;
}

[data-theme="light"] .hero-stat-item:hover .hero-stat-value {
    text-shadow: 0 4px 20px rgba(26, 35, 126, 0.5) !important;
}

.hero-stat-label {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 2px !important;
    transition: all 0.3s ease;
}

.hero-stat-item:hover .hero-stat-label {
    color: rgba(255, 255, 255, 1) !important;
    letter-spacing: 3px !important;
}

[data-theme="light"] .hero-stat-label {
    color: #546e7a !important;
}

[data-theme="light"] .hero-stat-item:hover .hero-stat-label {
    color: #1a237e !important;
}

/* About Content Card - ENHANCED */
.about-content-card {
    background: linear-gradient(135deg, 
        rgba(10, 14, 39, 0.95) 0%, 
        rgba(26, 35, 126, 0.8) 100%) !important;
    border: 3px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 30px !important;
    padding: 4rem !important;
    backdrop-filter: blur(20px) !important;
    position: relative;
    overflow: visible !important;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 0 40px rgba(255, 255, 255, 0.1) !important;
    animation: slideInLeft 1.2s ease 0.3s both !important;
    transition: all 0.5s ease !important;
}

.about-content-card::before {
    content: '' !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 6px !important;
    height: 100%;
    background: linear-gradient(180deg, 
        #ffffff 0%, 
        rgba(255, 255, 255, 0.8) 50%,
        transparent 100%) !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5) !important;
    animation: glowPulse 3s ease-in-out infinite !important;
}

.about-content-card::after {
    content: '' !important;
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-content-card:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    box-shadow: 
        0 30px 80px rgba(255, 255, 255, 0.2),
        0 0 0 2px rgba(255, 255, 255, 0.3) inset !important;
}

.about-content-card:hover::after {
    opacity: 1 !important;
}

[data-theme="light"] .about-content-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(240, 247, 255, 0.95) 100%) !important;
    border-color: rgba(26, 35, 126, 0.2) !important;
    box-shadow: 
        0 20px 60px rgba(26, 35, 126, 0.1),
        0 0 0 1px rgba(26, 35, 126, 0.1) inset !important;
}

[data-theme="light"] .about-content-card::before {
    background: linear-gradient(180deg, 
        #1a237e 0%, 
        rgba(26, 35, 126, 0.8) 50%,
        transparent 100%) !important;
    box-shadow: 0 0 20px rgba(26, 35, 126, 0.5) !important;
}

[data-theme="light"] .about-content-card:hover {
    border-color: rgba(26, 35, 126, 0.4) !important;
    box-shadow: 
        0 30px 80px rgba(26, 35, 126, 0.2),
        0 0 0 2px rgba(26, 35, 126, 0.3) inset !important;
}

.section-header-modern {
 margin-bottom: 2.5rem;
 position: relative;
}

.section-number {
 font-family: "Orbitron", sans-serif;
 font-size: 1rem;
 font-weight: 700;
 color: rgba(255, 255, 255, 0.5);
 letter-spacing: 3px;
 text-transform: uppercase;
 display: block;
 margin-bottom: 0.5rem;
}

[data-theme="light"] .section-number {
 color: rgba(26, 35, 126, 0.5);
}

.section-title-modern {
 font-family: "Orbitron", sans-serif;
 font-size: 2.5rem;
 font-weight: 700;
 color: #ffffff;
 margin-bottom: 1rem;
}

[data-theme="light"] .section-title-modern {
 color: #1a237e;
}

.title-underline {
 width: 80px;
 height: 4px;
 background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
 border-radius: 2px;
}

[data-theme="light"] .title-underline {
 background: linear-gradient(90deg, #1a237e 0%, transparent 100%);
}

.title-underline-center {
 width: 80px;
 height: 4px;
 background: linear-gradient(90deg, transparent 0%, #ffffff 50%, transparent 100%);
 border-radius: 2px;
 margin: 0 auto;
}

[data-theme="light"] .title-underline-center {
 background: linear-gradient(90deg, transparent 0%, #1a237e 50%, transparent 100%);
}

.about-content-text {
 color: rgba(255, 255, 255, 0.8);
 font-size: 1.1rem;
 line-height: 1.9;
}

[data-theme="light"] .about-content-text {
 color: #546e7a;
}

.about-content-text p {
 margin-bottom: 1.5rem;
}

.about-content-text strong {
 color: #ffffff;
 font-weight: 600;
}

[data-theme="light"] .about-content-text strong {
 color: #1a237e;
}

.highlight-text {
 background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
 border-left: 4px solid #ffffff;
 padding: 1.5rem;
 border-radius: 10px;
 font-size: 1.15rem;
 font-weight: 500;
 color: #ffffff;
 margin-top: 2rem;
}

[data-theme="light"] .highlight-text {
 background: linear-gradient(135deg, rgba(26, 35, 126, 0.1) 0%, rgba(26, 35, 126, 0.05) 100%);
 border-left-color: #1a237e;
 color: #1a237e;
}

/* Mission & Vision Cards - ENHANCED */
.mission-vision-card {
    background: linear-gradient(135deg, 
        rgba(10, 14, 39, 0.95) 0%, 
        rgba(26, 35, 126, 0.85) 100%) !important;
    border: 3px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 30px !important;
    padding: 3.5rem !important;
    height: 100%;
    position: relative;
    overflow: visible !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 0 40px rgba(255, 255, 255, 0.1) !important;
    animation: zoomIn 1s ease backwards !important;
    animation-fill-mode: both !important;
    transform-style: preserve-3d;
}

.mission-vision-card:nth-child(1) { 
    animation: slideInLeft 1s ease 0.2s both !important;
}
.mission-vision-card:nth-child(2) { 
    animation: slideInRight 1s ease 0.4s both !important;
}

.mission-vision-card::before {
    content: '' !important;
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: floatCard 8s ease-in-out infinite !important;
}

.mission-vision-card::after {
    content: '' !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mission-vision-card:hover::before {
    opacity: 1 !important;
}

.mission-vision-card:hover::after {
    opacity: 1 !important;
}

.mission-vision-card:hover {
    transform: translateY(-15px) scale(1.03) rotateX(5deg) !important;
    border-color: #00ff88 !important;
    box-shadow: 
        0 30px 70px rgba(0, 255, 136, 0.4),
        0 0 0 3px rgba(0, 255, 136, 0.5) inset,
        0 0 60px rgba(0, 255, 136, 0.3),
        0 0 100px rgba(0, 255, 136, 0.2) !important;
    animation: glowPulse 2s ease-in-out infinite !important;
}

[data-theme="light"] .mission-vision-card:hover {
 border-color: #1a237e;
 box-shadow: 0 15px 35px rgba(26, 35, 126, 0.1);
}

.mv-icon-wrapper {
 margin-bottom: 2rem;
}

.mv-icon {
 width: 90px;
 height: 90px;
 background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
 border: 3px solid rgba(255, 255, 255, 0.4);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 box-shadow: 0 5px 25px rgba(255, 255, 255, 0.3);
 animation: iconFloat 3s ease-in-out infinite;
}

[data-theme="light"] .mv-icon {
 background: linear-gradient(135deg, rgba(26, 35, 126, 0.15) 0%, rgba(26, 35, 126, 0.05) 100%);
 border-color: rgba(26, 35, 126, 0.2);
}

.mission-vision-card:hover .mv-icon {
 transform: scale(1.2) rotate(360deg);
 background: linear-gradient(135deg, rgba(0, 255, 136, 0.3) 0%, rgba(0, 212, 255, 0.2) 100%);
 border-color: #00ff88;
 box-shadow: 0 0 40px rgba(0, 255, 136, 0.6), 0 0 80px rgba(0, 255, 136, 0.3);
 animation: iconSpin 0.8s ease;
}

[data-theme="light"] .mission-vision-card:hover .mv-icon {
 background: linear-gradient(135deg, rgba(26, 35, 126, 0.25) 0%, rgba(26, 35, 126, 0.15) 100%);
}

.mv-icon i {
    font-size: 2.75rem !important;
    color: #ffffff;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)) !important;
    z-index: 1;
    position: relative;
}

.mission-vision-card:hover .mv-icon i {
    filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.9)) !important;
    transform: scale(1.1);
}

[data-theme="light"] .mv-icon i {
    color: #1a237e;
    filter: drop-shadow(0 0 8px rgba(26, 35, 126, 0.4)) !important;
}

.mission-vision-card:hover .mv-icon i {
    transform: scale(1.15) !important;
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.9)) !important;
}

.mission-vision-card h3 {
    font-family: 'Orbitron', sans-serif !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.4),
        0 0 30px rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease 0.4s backwards !important;
}

.mission-vision-card:hover h3 {
    text-shadow: 
        0 0 25px rgba(255, 255, 255, 0.6),
        0 0 50px rgba(255, 255, 255, 0.3) !important;
    transform: translateX(5px) !important;
}

[data-theme="light"] .mission-vision-card h3 {
    color: #1a237e;
    text-shadow: 0 2px 10px rgba(26, 35, 126, 0.2) !important;
}

[data-theme="light"] .mission-vision-card:hover h3 {
    text-shadow: 0 4px 20px rgba(26, 35, 126, 0.3) !important;
}

.mission-vision-card p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem !important;
    line-height: 1.9;
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease 0.5s backwards !important;
}

.mission-vision-card:hover p {
    color: rgba(255, 255, 255, 1) !important;
    transform: translateX(3px) !important;
}

[data-theme="light"] .mission-vision-card p {
    color: #546e7a;
}

[data-theme="light"] .mission-vision-card:hover p {
    color: #1a237e !important;
}

/* Benefit Cards - ENHANCED */
.benefit-card {
    background: linear-gradient(135deg, 
        rgba(10, 14, 39, 0.95) 0%, 
        rgba(26, 35, 126, 0.85) 100%) !important;
    border: 3px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 25px !important;
    padding: 3rem !important;
    height: 100%;
    position: relative;
    overflow: visible !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 0 40px rgba(255, 255, 255, 0.1) !important;
    animation: bounceIn 1s ease backwards !important;
    animation-fill-mode: both !important;
    transform-style: preserve-3d;
}

.benefit-card:nth-child(1) { 
    animation: bounceIn 1s ease 0.1s both !important;
}
.benefit-card:nth-child(2) { 
    animation: bounceIn 1s ease 0.3s both !important;
}
.benefit-card:nth-child(3) { 
    animation: bounceIn 1s ease 0.5s both !important;
}

.benefit-card::before {
    content: '' !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px !important;
    background: linear-gradient(90deg, 
        transparent 0%,
        #ffffff 20%,
        #ffffff 80%,
        transparent 100%) !important;
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6) !important;
}

.benefit-card::after {
    content: '' !important;
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: floatCard 7s ease-in-out infinite !important;
}

[data-theme="light"] .benefit-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(240, 247, 255, 0.95) 100%) !important;
    border-color: rgba(26, 35, 126, 0.2) !important;
    box-shadow: 
        0 15px 40px rgba(26, 35, 126, 0.1),
        0 0 0 1px rgba(26, 35, 126, 0.1) inset !important;
}

[data-theme="light"] .benefit-card::before {
    background: linear-gradient(90deg, 
        transparent 0%,
        #1a237e 20%,
        #1a237e 80%,
        transparent 100%) !important;
    box-shadow: 0 0 20px rgba(26, 35, 126, 0.6) !important;
}

.benefit-card:hover::before {
    transform: scaleX(1) !important;
}

.benefit-card:hover::after {
    opacity: 1 !important;
}

.benefit-card:hover {
    transform: translateY(-20px) scale(1.08) rotateX(10deg) rotateY(5deg) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
    box-shadow: 
        0 35px 80px rgba(255, 255, 255, 0.4),
        0 0 0 4px rgba(255, 255, 255, 0.5) inset,
        0 0 80px rgba(255, 255, 255, 0.3),
        0 0 120px rgba(255, 255, 255, 0.2) !important;
    animation: glowPulse 1.5s ease-in-out infinite !important;
    z-index: 10 !important;
}

[data-theme="light"] .benefit-card:hover {
    border-color: rgba(26, 35, 126, 0.5) !important;
    box-shadow: 
        0 30px 70px rgba(26, 35, 126, 0.25),
        0 0 0 3px rgba(26, 35, 126, 0.3) inset,
        0 0 60px rgba(26, 35, 126, 0.2) !important;
}

.benefit-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 4rem !important;
    font-weight: 900 !important;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 0;
}

.benefit-card:hover .benefit-number {
    color: rgba(255, 255, 255, 0.15) !important;
    transform: scale(1.1) !important;
}

[data-theme="light"] .benefit-number {
    color: rgba(26, 35, 126, 0.08);
}

[data-theme="light"] .benefit-card:hover .benefit-number {
    color: rgba(26, 35, 126, 0.15) !important;
}

.benefit-icon {
    width: 85px !important;
    height: 85px !important;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.1) 100%) !important;
    border: 3px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(255, 255, 255, 0.2),
        0 0 0 0 rgba(255, 255, 255, 0.4) !important;
    animation: floatCard 5s ease-in-out infinite !important;
    z-index: 1;
}

.benefit-icon::before {
    content: '' !important;
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.4));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    animation: iconSpin 4s linear infinite !important;
}

[data-theme="light"] .benefit-icon {
    background: linear-gradient(135deg, 
        rgba(26, 35, 126, 0.25) 0%, 
        rgba(26, 35, 126, 0.1) 100%) !important;
    border-color: rgba(26, 35, 126, 0.3) !important;
    box-shadow: 
        0 10px 30px rgba(26, 35, 126, 0.2),
        0 0 0 0 rgba(26, 35, 126, 0.4) !important;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.25) rotate(360deg) !important;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.35) 0%, 
        rgba(255, 255, 255, 0.2) 100%) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    box-shadow: 
        0 15px 40px rgba(255, 255, 255, 0.4),
        0 0 0 10px rgba(255, 255, 255, 0.2) !important;
    animation: iconSpin 1s ease, glowPulse 2s ease-in-out infinite !important;
}

.benefit-card:hover .benefit-icon::before {
    opacity: 1 !important;
}

[data-theme="light"] .benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, 
        rgba(26, 35, 126, 0.35) 0%, 
        rgba(26, 35, 126, 0.2) 100%) !important;
    border-color: rgba(26, 35, 126, 0.6) !important;
    box-shadow: 
        0 15px 40px rgba(26, 35, 126, 0.4),
        0 0 0 10px rgba(26, 35, 126, 0.2) !important;
}

.benefit-icon i {
    font-size: 2.2rem !important;
    color: #ffffff;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6)) !important;
    z-index: 1;
    position: relative;
}

[data-theme="light"] .benefit-icon i {
    color: #1a237e;
    filter: drop-shadow(0 0 8px rgba(26, 35, 126, 0.4)) !important;
}

.benefit-card:hover .benefit-icon i {
    transform: scale(1.15) !important;
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.9)) !important;
}

.benefit-card h4 {
    font-family: 'Orbitron', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #ffffff;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease 0.3s backwards !important;
    position: relative;
    z-index: 1;
}

.benefit-card:hover h4 {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5) !important;
    transform: translateX(5px) !important;
}

[data-theme="light"] .benefit-card h4 {
    color: #1a237e;
    text-shadow: none !important;
}

[data-theme="light"] .benefit-card:hover h4 {
    text-shadow: 0 2px 10px rgba(26, 35, 126, 0.3) !important;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.05rem !important;
    line-height: 1.8;
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease 0.4s backwards !important;
    position: relative;
    z-index: 1;
}

.benefit-card:hover p {
    color: rgba(255, 255, 255, 1) !important;
    transform: translateX(3px) !important;
}

[data-theme="light"] .benefit-card p {
    color: #546e7a;
}

[data-theme="light"] .benefit-card:hover p {
    color: #1a237e !important;
}

/* About Page Image Styles */
.about-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover {
    transform: translateY(-5px);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 255, 136, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image-wrapper:hover .image-overlay-modern {
    opacity: 1;
}

/* Mission Vision Image Wrapper */
.mv-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    height: 200px;
}

.mv-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mission-vision-card:hover .mv-image-wrapper img {
    transform: scale(1.1);
}

.mission-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.mission-list li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    padding-left: 0;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.mission-list li i {
    color: #00ff88;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

[data-theme="light"] .mission-list li {
    color: #546e7a;
}

[data-theme="light"] .mission-list li i {
    color: #1a237e;
}

/* Benefit Card Modern with Images - Enhanced */
.benefit-card-modern {
    background: var(--card-bg);
    border: 3px solid var(--border-color);
    border-radius: 20px;
    padding: 0;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: cardFadeIn 0.6s ease backwards;
}

.benefit-card-modern:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-card-modern:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-card-modern:nth-child(3) {
    animation-delay: 0.3s;
}

.benefit-card-modern:nth-child(4) {
    animation-delay: 0.4s;
}

.benefit-card-modern:nth-child(5) {
    animation-delay: 0.5s;
}

.benefit-card-modern:nth-child(6) {
    animation-delay: 0.6s;
}

.benefit-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.benefit-card-modern:hover::before {
    left: 100%;
}

.benefit-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #00ff88;
    box-shadow: 0 25px 60px rgba(0, 255, 136, 0.4), 0 0 40px rgba(0, 255, 136, 0.2);
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-icon-wrapper {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 2;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
    animation: iconFloat 3s ease-in-out infinite;
}

.benefit-card-modern:hover .benefit-icon {
    background: rgba(0, 255, 136, 0.3);
    border-color: #00ff88;
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6), 0 0 60px rgba(0, 255, 136, 0.3);
    animation: iconSpin 0.6s ease;
}

.benefit-icon i {
    font-size: 1.75rem;
    color: #ffffff;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.benefit-card-modern:hover .benefit-icon i {
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.8));
    transform: scale(1.1);
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes iconSpin {
    from {
        transform: scale(1) rotate(0deg);
    }
    to {
        transform: scale(1.2) rotate(360deg);
    }
}

[data-theme="light"] .benefit-icon {
    background: rgba(26, 35, 126, 0.15);
    border-color: rgba(26, 35, 126, 0.3);
}

[data-theme="light"] .benefit-icon i {
    color: #1a237e;
}

[data-theme="light"] .benefit-card-modern:hover .benefit-icon {
    background: rgba(26, 35, 126, 0.25);
    border-color: #1a237e;
}

.benefit-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.benefit-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.7);
}

.benefit-card-modern:hover .benefit-image-wrapper img {
    transform: scale(1.15);
    filter: brightness(0.9);
}

.benefit-card-modern h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 1.5rem 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

[data-theme="light"] .benefit-card-modern h4 {
    color: #1a237e;
}

.benefit-card-modern p {
    color: rgba(255, 255, 255, 0.8);
    padding: 0 1.5rem 1.5rem;
    line-height: 1.7;
    margin: 0;
}

[data-theme="light"] .benefit-card-modern p {
    color: #546e7a;
}

/* Core Value Cards - Enhanced with Borders */
.core-value-card {
    background: var(--card-bg);
    border: 3px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: cardSlideIn 0.6s ease backwards;
}

.core-value-card:nth-child(1) {
    animation-delay: 0.1s;
}

.core-value-card:nth-child(2) {
    animation-delay: 0.2s;
}

.core-value-card:nth-child(3) {
    animation-delay: 0.3s;
}

.core-value-card:nth-child(4) {
    animation-delay: 0.4s;
}

.core-value-card:nth-child(5) {
    animation-delay: 0.5s;
}

.core-value-card:nth-child(6) {
    animation-delay: 0.6s;
}

.core-value-card:nth-child(7) {
    animation-delay: 0.7s;
}

.core-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.core-value-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.core-value-card:hover::before {
    left: 100%;
}

.core-value-card:hover::after {
    opacity: 1;
}

.core-value-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: #00ff88;
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.4), 0 0 40px rgba(0, 255, 136, 0.2), inset 0 0 30px rgba(0, 255, 136, 0.1);
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.core-value-icon-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.core-value-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 25px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    animation: iconPulseGlow 2s ease-in-out infinite;
}

.core-value-card:hover .core-value-icon {
    background: rgba(0, 255, 136, 0.3);
    border-color: #00ff88;
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.6), 0 0 80px rgba(0, 255, 136, 0.3);
    animation: iconRotateGlow 0.8s ease;
}

.core-value-icon i {
    font-size: 2.25rem;
    color: #ffffff;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
}

.core-value-card:hover .core-value-icon i {
    filter: drop-shadow(0 0 25px rgba(0, 255, 136, 0.9));
    transform: scale(1.1);
}

@keyframes iconPulseGlow {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 5px 35px rgba(255, 255, 255, 0.4), 0 0 20px rgba(0, 255, 136, 0.3);
    }
}

@keyframes iconRotateGlow {
    from {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 5px 25px rgba(255, 255, 255, 0.2);
    }
    to {
        transform: scale(1.15) rotate(360deg);
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.6), 0 0 80px rgba(0, 255, 136, 0.3);
    }
}

[data-theme="light"] .core-value-icon {
    background: rgba(26, 35, 126, 0.1);
    border-color: rgba(26, 35, 126, 0.2);
}

[data-theme="light"] .core-value-icon i {
    color: #1a237e;
}

[data-theme="light"] .core-value-card:hover .core-value-icon {
    background: rgba(26, 35, 126, 0.2);
    border-color: #1a237e;
    box-shadow: 0 0 30px rgba(26, 35, 126, 0.3);
}

.core-value-card h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.core-value-card:hover h4 {
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    transform: translateY(-3px);
}

[data-theme="light"] .core-value-card h4 {
    color: #1a237e;
    text-shadow: 0 2px 10px rgba(26, 35, 126, 0.2);
}

[data-theme="light"] .core-value-card:hover h4 {
    color: #1a237e;
    text-shadow: 0 4px 20px rgba(26, 35, 126, 0.4);
}

.core-value-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.core-value-card:hover p {
    color: #ffffff;
}

[data-theme="light"] .core-value-card p {
    color: #546e7a;
}

[data-theme="light"] .core-value-card:hover p {
    color: #1a237e;
}

.about-cta-modern {
 margin-top: 3rem;
}

/* Contact Page Styles */
.contact-page-section {
 padding: 80px 0;
 background: var(--dark-bg);
 position: relative;
}

[data-theme="light"] .contact-page-section {
 background: #f8f9fa;
}

.contact-info-card,
.contact-form-card {
    background: linear-gradient(135deg, 
        rgba(10, 14, 39, 0.95) 0%, 
        rgba(26, 35, 126, 0.85) 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 30px !important;
    padding: 3.5rem !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset !important;
    height: 100%;
    position: relative;
    overflow: hidden;
    animation: cardEntrance 0.8s ease backwards !important;
    transition: all 0.5s ease !important;
}

.contact-info-card:nth-child(1) { animation-delay: 0.1s !important; }
.contact-form-card { animation-delay: 0.2s !important; }

.contact-info-card::before,
.contact-form-card::before {
    content: '' !important;
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: floatCard 8s ease-in-out infinite !important;
}

.contact-info-card:hover::before,
.contact-form-card:hover::before {
    opacity: 1 !important;
}

.contact-info-card:hover,
.contact-form-card:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    box-shadow: 
        0 30px 80px rgba(255, 255, 255, 0.2),
        0 0 0 2px rgba(255, 255, 255, 0.3) inset !important;
}

[data-theme="light"] .contact-info-card,
[data-theme="light"] .contact-form-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(240, 247, 255, 0.95) 100%) !important;
    border-color: rgba(26, 35, 126, 0.2) !important;
    box-shadow: 
        0 20px 60px rgba(26, 35, 126, 0.1),
        0 0 0 1px rgba(26, 35, 126, 0.1) inset !important;
}

[data-theme="light"] .contact-info-card:hover,
[data-theme="light"] .contact-form-card:hover {
    border-color: rgba(26, 35, 126, 0.4) !important;
    box-shadow: 
        0 30px 80px rgba(26, 35, 126, 0.2),
        0 0 0 2px rgba(26, 35, 126, 0.3) inset !important;
}

.contact-info-card h3,
.contact-form-card h3 {
 font-family: "Orbitron", sans-serif;
 font-size: 2rem;
 font-weight: 700;
 color: #ffffff;
 margin-bottom: 2rem;
 padding-bottom: 1rem;
 border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .contact-info-card h3,
[data-theme="light"] .contact-form-card h3 {
 color: #1a237e;
 border-bottom-color: rgba(26, 35, 126, 0.1);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem !important;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s ease backwards !important;
}

.contact-item::before {
    content: '' !important;
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

[data-theme="light"] .contact-item {
    background: linear-gradient(135deg, 
        rgba(26, 35, 126, 0.05) 0%, 
        rgba(26, 35, 126, 0.02) 100%) !important;
    border-color: rgba(26, 35, 126, 0.1) !important;
}

.contact-item:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 100%) !important;
    transform: translateX(10px) scale(1.02) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15) !important;
}

.contact-item:hover::before {
    left: 100% !important;
}

[data-theme="light"] .contact-item:hover {
    background: linear-gradient(135deg, 
        rgba(26, 35, 126, 0.12) 0%, 
        rgba(26, 35, 126, 0.06) 100%) !important;
    border-color: rgba(26, 35, 126, 0.3) !important;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.15) !important;
}

.contact-icon {
    width: 70px !important;
    height: 70px !important;
    min-width: 70px !important;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.1) 100%) !important;
    border: 3px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    position: relative;
    box-shadow: 
        0 5px 15px rgba(255, 255, 255, 0.2),
        0 0 0 0 rgba(255, 255, 255, 0.4) !important;
    animation: floatCard 4s ease-in-out infinite !important;
}

.contact-icon::before {
    content: '' !important;
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.4));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    animation: iconSpin 3s linear infinite !important;
}

[data-theme="light"] .contact-icon {
    background: linear-gradient(135deg, 
        rgba(26, 35, 126, 0.2) 0%, 
        rgba(26, 35, 126, 0.1) 100%) !important;
    border-color: rgba(26, 35, 126, 0.3) !important;
    box-shadow: 
        0 5px 15px rgba(26, 35, 126, 0.2),
        0 0 0 0 rgba(26, 35, 126, 0.4) !important;
}

.contact-item:hover .contact-icon {
    transform: scale(1.2) rotate(360deg) !important;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.2) 100%) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    box-shadow: 
        0 10px 30px rgba(255, 255, 255, 0.4),
        0 0 0 5px rgba(255, 255, 255, 0.2) !important;
    animation: iconSpin 1s ease, glowPulse 2s ease-in-out infinite !important;
}

.contact-item:hover .contact-icon::before {
    opacity: 1 !important;
}

[data-theme="light"] .contact-item:hover .contact-icon {
    background: linear-gradient(135deg, 
        rgba(26, 35, 126, 0.3) 0%, 
        rgba(26, 35, 126, 0.2) 100%) !important;
    border-color: rgba(26, 35, 126, 0.6) !important;
    box-shadow: 
        0 10px 30px rgba(26, 35, 126, 0.4),
        0 0 0 5px rgba(26, 35, 126, 0.2) !important;
}

.contact-icon i {
 font-size: 1.5rem;
 color: #ffffff;
}

[data-theme="light"] .contact-icon i {
 color: #1a237e;
}

.contact-details h5 {
 font-family: "Orbitron", sans-serif;
 font-size: 1.1rem;
 font-weight: 600;
 color: #ffffff;
 margin-bottom: 0.5rem;
}

[data-theme="light"] .contact-details h5 {
 color: #1a237e;
}

.contact-details p {
 color: rgba(255, 255, 255, 0.7);
 font-size: 1rem;
 line-height: 1.6;
 margin: 0;
}

[data-theme="light"] .contact-details p {
 color: #546e7a;
}

.contact-details a {
 color: rgba(255, 255, 255, 0.8);
 text-decoration: none;
 transition: all 0.3s ease;
}

[data-theme="light"] .contact-details a {
 color: #1a237e;
}

.contact-details a:hover {
 color: #ffffff;
 text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .contact-details a:hover {
 color: #1a237e;
 text-shadow: none;
}

.contact-social {
 margin-top: 2rem;
 padding-top: 2rem;
 border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .contact-social {
 border-top-color: rgba(26, 35, 126, 0.1);
}

.contact-social h5 {
 font-family: "Orbitron", sans-serif;
 font-size: 1.1rem;
 font-weight: 600;
 color: #ffffff;
 margin-bottom: 1rem;
}

[data-theme="light"] .contact-social h5 {
 color: #1a237e;
}

/* Team Page Styles */
.team-section {
 padding: 80px 0;
 background: var(--dark-bg);
 position: relative;
}

[data-theme="light"] .team-section {
 background: #f8f9fa;
}

.team-intro {
 font-size: 1.2rem;
 color: rgba(255, 255, 255, 0.8);
 line-height: 1.8;
 max-width: 800px;
 margin: 0 auto;
}

[data-theme="light"] .team-intro {
 color: #546e7a;
}

.team-card {
    background: linear-gradient(135deg, 
        rgba(10, 14, 39, 0.95) 0%, 
        rgba(26, 35, 126, 0.85) 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 30px !important;
    padding: 0;
    overflow: hidden;
    backdrop-filter: blur(20px) !important;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    height: 100%;
    position: relative;
    animation: cardEntrance 0.8s ease backwards !important;
    transform-style: preserve-3d;
}

.team-card:nth-child(1) { animation-delay: 0.1s !important; }
.team-card:nth-child(2) { animation-delay: 0.3s !important; }

.team-card::before {
    content: '' !important;
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: floatCard 8s ease-in-out infinite !important;
}

.team-card:hover::before {
    opacity: 1 !important;
}

.team-card:hover {
    transform: translateY(-10px) scale(1.02) rotateX(5deg) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 
        0 30px 80px rgba(255, 255, 255, 0.25),
        0 0 0 2px rgba(255, 255, 255, 0.3) inset,
        0 0 50px rgba(255, 255, 255, 0.15) !important;
    animation: glowPulse 2s ease-in-out infinite !important;
}

[data-theme="light"] .team-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(240, 247, 255, 0.95) 100%) !important;
    border-color: rgba(26, 35, 126, 0.2) !important;
    box-shadow: 
        0 20px 60px rgba(26, 35, 126, 0.1),
        0 0 0 1px rgba(26, 35, 126, 0.1) inset !important;
}

[data-theme="light"] .team-card:hover {
    border-color: rgba(26, 35, 126, 0.5) !important;
    box-shadow: 
        0 30px 80px rgba(26, 35, 126, 0.25),
        0 0 0 2px rgba(26, 35, 126, 0.3) inset,
        0 0 50px rgba(26, 35, 126, 0.15) !important;
}

.team-header {
 background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
 padding: 2.5rem;
 text-align: center;
 border-bottom: 1px solid var(--border-color);
}

[data-theme="light"] .team-header {
 background: linear-gradient(135deg, rgba(26, 35, 126, 0.1) 0%, rgba(26, 35, 126, 0.05) 100%);
}

.team-image {
 margin-bottom: 1.5rem;
}

.team-placeholder {
    width: 140px !important;
    height: 140px !important;
    margin: 0 auto;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.1) 100%) !important;
    border: 4px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(255, 255, 255, 0.2),
        0 0 0 0 rgba(255, 255, 255, 0.4) !important;
    animation: floatCard 5s ease-in-out infinite !important;
}

.team-placeholder::before {
    content: '' !important;
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.4));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    animation: iconSpin 4s linear infinite !important;
}

[data-theme="light"] .team-placeholder {
    background: linear-gradient(135deg, 
        rgba(26, 35, 126, 0.25) 0%, 
        rgba(26, 35, 126, 0.1) 100%) !important;
    border-color: rgba(26, 35, 126, 0.3) !important;
    box-shadow: 
        0 10px 30px rgba(26, 35, 126, 0.2),
        0 0 0 0 rgba(26, 35, 126, 0.4) !important;
}

.team-card:hover .team-placeholder {
    transform: scale(1.15) rotate(10deg) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    box-shadow: 
        0 15px 40px rgba(255, 255, 255, 0.4),
        0 0 0 8px rgba(255, 255, 255, 0.2) !important;
    animation: iconSpin 1s ease, glowPulse 2s ease-in-out infinite !important;
}

.team-card:hover .team-placeholder::before {
    opacity: 1 !important;
}

[data-theme="light"] .team-card:hover .team-placeholder {
    border-color: rgba(26, 35, 126, 0.6) !important;
    box-shadow: 
        0 15px 40px rgba(26, 35, 126, 0.4),
        0 0 0 8px rgba(26, 35, 126, 0.2) !important;
}

.team-placeholder i {
 font-size: 3rem;
 color: rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .team-placeholder i {
 color: rgba(26, 35, 126, 0.6);
}

.team-title-section h3 {
 font-family: "Orbitron", sans-serif;
 font-size: 1.8rem;
 font-weight: 700;
 color: #ffffff;
 margin-bottom: 0.5rem;
}

[data-theme="light"] .team-title-section h3 {
 color: #1a237e;
}

.team-role {
 color: rgba(255, 255, 255, 0.7);
 font-size: 1rem;
 font-weight: 500;
}

[data-theme="light"] .team-role {
 color: #546e7a;
}

.team-content {
 padding: 2.5rem;
}

.team-bio {
 color: rgba(255, 255, 255, 0.8);
 font-size: 1.05rem;
 line-height: 1.8;
 margin-bottom: 2rem;
}

[data-theme="light"] .team-bio {
 color: #546e7a;
}

.team-nav-tabs {
 border-bottom: 2px solid rgba(255, 255, 255, 0.1);
 margin-bottom: 1.5rem;
}

[data-theme="light"] .team-nav-tabs {
 border-bottom-color: rgba(26, 35, 126, 0.1);
}

.team-nav-tabs .nav-link {
 color: rgba(255, 255, 255, 0.7);
 border: none;
 border-radius: 10px 10px 0 0;
 padding: 0.75rem 1.5rem;
 font-weight: 500;
 transition: all 0.3s ease;
 background: transparent;
}

[data-theme="light"] .team-nav-tabs .nav-link {
 color: #546e7a;
}

.team-nav-tabs .nav-link:hover {
 color: #ffffff;
 background: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .team-nav-tabs .nav-link:hover {
 color: #1a237e;
 background: rgba(26, 35, 126, 0.05);
}

.team-nav-tabs .nav-link.active {
 color: #ffffff;
 background: rgba(255, 255, 255, 0.1);
 border-bottom: 2px solid #ffffff;
}

[data-theme="light"] .team-nav-tabs .nav-link.active {
 color: #1a237e;
 background: rgba(26, 35, 126, 0.1);
 border-bottom-color: #1a237e;
}

.team-nav-tabs .nav-link i {
 margin-right: 0.5rem;
}

.team-tab-content {
 padding: 1rem 0;
}

.team-list {
 list-style: none;
 padding: 0;
 margin: 0;
}

.team-list li {
 color: rgba(255, 255, 255, 0.8);
 font-size: 1rem;
 line-height: 2;
 padding: 0.5rem 0;
 display: flex;
 align-items: center;
 gap: 1rem;
}

[data-theme="light"] .team-list li {
 color: #546e7a;
}

.team-list li i {
 color: #ffffff;
 font-size: 0.9rem;
}

[data-theme="light"] .team-list li i {
 color: #1a237e;
}

.sectors-text {
 color: rgba(255, 255, 255, 0.8);
 font-size: 1rem;
 line-height: 1.8;
}

[data-theme="light"] .sectors-text {
 color: #546e7a;
}

.team-backend-section {
 margin-top: 4rem;
 padding-top: 4rem;
 border-top: 1px solid var(--border-color);
}

.section-divider {
 width: 100px;
 height: 4px;
 background: linear-gradient(90deg, transparent 0%, #ffffff 50%, transparent 100%);
 margin: 0 auto 2rem;
 border-radius: 2px;
}

[data-theme="light"] .section-divider {
 background: linear-gradient(90deg, transparent 0%, #1a237e 50%, transparent 100%);
}

.capability-box {
 background: var(--card-bg);
 border: 1px solid var(--border-color);
 border-radius: 20px;
 padding: 2.5rem;
 text-align: center;
 height: 100%;
 transition: all 0.4s ease;
 backdrop-filter: blur(10px);
}

.capability-box:hover {
 transform: translateY(-8px);
 border-color: #ffffff;
 box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .capability-box:hover {
 border-color: #1a237e;
 box-shadow: 0 15px 35px rgba(26, 35, 126, 0.1);
}

.capability-icon {
 width: 80px;
 height: 80px;
 margin: 0 auto 1.5rem;
 background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
 border: 2px solid rgba(255, 255, 255, 0.2);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: all 0.4s ease;
}

[data-theme="light"] .capability-icon {
 background: linear-gradient(135deg, rgba(26, 35, 126, 0.15) 0%, rgba(26, 35, 126, 0.05) 100%);
 border-color: rgba(26, 35, 126, 0.2);
}

.capability-box:hover .capability-icon {
 transform: scale(1.1) rotate(10deg);
 background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
 border-color: #ffffff;
}

[data-theme="light"] .capability-box:hover .capability-icon {
 background: linear-gradient(135deg, rgba(26, 35, 126, 0.25) 0%, rgba(26, 35, 126, 0.15) 100%);
 border-color: #1a237e;
}

.capability-icon i {
 font-size: 2rem;
 color: #ffffff;
}

[data-theme="light"] .capability-icon i {
 color: #1a237e;
}

.capability-box h4 {
 font-family: "Orbitron", sans-serif;
 font-size: 1.3rem;
 font-weight: 600;
 color: #ffffff;
 margin-bottom: 1rem;
}

[data-theme="light"] .capability-box h4 {
 color: #1a237e;
}

.capability-box p {
 color: rgba(255, 255, 255, 0.7);
 font-size: 1rem;
 line-height: 1.7;
}

[data-theme="light"] .capability-box p {
 color: #546e7a;
}

/* Service Detail Page Styles */
.service-detail-section {
 padding: 80px 0;
 background: var(--dark-bg);
 position: relative;
}

[data-theme="light"] .service-detail-section {
 background: #f8f9fa;
}

.service-detail-image {
 border-radius: 20px;
 overflow: hidden;
 box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
 transition: all 0.4s ease;
}

.service-detail-image:hover {
 transform: scale(1.02);
 box-shadow: 0 20px 45px rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .service-detail-image:hover {
 box-shadow: 0 20px 45px rgba(26, 35, 126, 0.2);
}

.service-detail-image img {
 width: 100%;
 height: auto;
 display: block;
 transition: all 0.4s ease;
}

.service-detail-image:hover img {
 transform: scale(1.05);
}

.service-description {
 color: rgba(255, 255, 255, 0.8);
 font-size: 1.1rem;
 line-height: 1.9;
 margin-bottom: 2rem;
}

[data-theme="light"] .service-description {
 color: #546e7a;
}

.service-highlights {
 background: var(--card-bg);
 border: 1px solid var(--border-color);
 border-radius: 20px;
 padding: 2rem;
 backdrop-filter: blur(10px);
}

.service-highlights h3 {
 font-family: "Orbitron", sans-serif;
 font-size: 1.5rem;
 font-weight: 600;
 color: #ffffff;
 margin-bottom: 1.5rem;
}

[data-theme="light"] .service-highlights h3 {
 color: #1a237e;
}

.highlight-list {
 list-style: none;
 padding: 0;
 margin: 0;
}

.highlight-list li {
 color: rgba(255, 255, 255, 0.8);
 font-size: 1rem;
 line-height: 2;
 padding: 0.75rem 0;
 display: flex;
 align-items: flex-start;
 gap: 1rem;
 border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .highlight-list li {
 color: #546e7a;
 border-bottom-color: rgba(26, 35, 126, 0.05);
}

.highlight-list li:last-child {
 border-bottom: none;
}

.highlight-list li i {
 color: #ffffff;
 font-size: 1rem;
 margin-top: 0.25rem;
 flex-shrink: 0;
}

[data-theme="light"] .highlight-list li i {
 color: #1a237e;
}

.features-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 1.5rem;
 margin-top: 2rem;
}

.feature-item {
 background: var(--card-bg);
 border: 1px solid var(--border-color);
 border-radius: 15px;
 padding: 1.5rem;
 display: flex;
 align-items: center;
 gap: 1rem;
 transition: all 0.3s ease;
 backdrop-filter: blur(10px);
}

.feature-item:hover {
 transform: translateX(5px);
 border-color: #ffffff;
 box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .feature-item:hover {
 border-color: #1a237e;
 box-shadow: 0 5px 15px rgba(26, 35, 126, 0.1);
}

.feature-item i {
 color: #ffffff;
 font-size: 1.2rem;
 flex-shrink: 0;
}

[data-theme="light"] .feature-item i {
 color: #1a237e;
}

.feature-item span {
 color: rgba(255, 255, 255, 0.8);
 font-size: 1rem;
 line-height: 1.6;
}

[data-theme="light"] .feature-item span {
 color: #546e7a;
}

.service-cta-card {
 background: var(--card-bg);
 border: 1px solid var(--border-color);
 border-radius: 25px;
 padding: 2.5rem;
 backdrop-filter: blur(10px);
 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 position: sticky;
 top: 100px;
}

.service-cta-card h3 {
 font-family: "Orbitron", sans-serif;
 font-size: 1.8rem;
 font-weight: 700;
 color: #ffffff;
 margin-bottom: 1rem;
}

[data-theme="light"] .service-cta-card h3 {
 color: #1a237e;
}

.service-cta-card > p {
 color: rgba(255, 255, 255, 0.7);
 font-size: 1rem;
 margin-bottom: 2rem;
}

[data-theme="light"] .service-cta-card > p {
 color: #546e7a;
}

.cta-info {
 padding-top: 1.5rem;
 border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .cta-info {
 border-top-color: rgba(26, 35, 126, 0.1);
}

.cta-info p {
 color: rgba(255, 255, 255, 0.7);
 font-size: 0.95rem;
 margin-bottom: 0.75rem;
 display: flex;
 align-items: center;
 gap: 0.75rem;
}

[data-theme="light"] .cta-info p {
 color: #546e7a;
}

.cta-info p i {
 color: #ffffff;
 font-size: 1rem;
}

[data-theme="light"] .cta-info p i {
 color: #1a237e;
}

/* Responsive Design */
@media (max-width: 768px) {
 .page-title {
 font-size: 2.5rem;
 }
 
 .page-subtitle {
 font-size: 1.1rem;
 }
 
 .section-title-modern {
 font-size: 2rem;
 }
 
 .about-content-card,
 .contact-info-card,
 .contact-form-card {
 padding: 2rem;
 }
 
 .hero-stat-item {
 padding: 2rem 1.5rem;
 }
 
 .features-grid {
 grid-template-columns: 1fr;
 }
 
 .service-cta-card {
 position: relative;
 top: 0;
 margin-top: 2rem;
 }
}
/* ============================================
   MODERN PAGE STYLES - About, Contact, Team, Service Detail
   ============================================ */

/* Page Header - Modern Design */
.page-header {
    position: relative;
    padding: 150px 0 100px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 14, 39, 0.95) 100%);
    overflow: hidden;
    margin-top: 70px;
}

[data-theme="light"] .page-header {
    background: linear-gradient(135deg, rgba(240, 247, 255, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

[data-theme="light"] .page-header::before {
    background: 
        radial-gradient(circle at 20% 50%, rgba(26, 35, 126, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(26, 35, 126, 0.08) 0%, transparent 50%);
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-family: 'Orbitron', sans-serif !important;
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 1rem !important;
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.4),
        0 0 60px rgba(255, 255, 255, 0.2),
        0 0 90px rgba(255, 255, 255, 0.1) !important;
    animation: slideInUp 0.8s ease, glowPulse 3s ease-in-out infinite 1s !important;
    letter-spacing: 2px !important;
}

[data-theme="light"] .page-title {
    color: #1a237e;
    text-shadow: 0 2px 10px rgba(26, 35, 126, 0.2);
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.2s both;
}

[data-theme="light"] .page-subtitle {
    color: #546e7a;
}

.service-header-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: fadeInScale 0.8s ease;
}

[data-theme="light"] .service-header-icon {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.1) 0%, rgba(26, 35, 126, 0.05) 100%);
    border-color: rgba(26, 35, 126, 0.2);
}

.service-header-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

[data-theme="light"] .service-header-icon i {
    color: #1a237e;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* About Page Styles */
.about-detail-section {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
}

[data-theme="light"] .about-detail-section {
    background: #f8f9fa;
}

/* Hero Stats - Modern Cards */
.about-hero-stats {
    margin-bottom: 4rem;
}

.hero-stat-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.hero-stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-stat-item:hover::before {
    opacity: 1;
}

.hero-stat-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #ffffff;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15);
}

[data-theme="light"] .hero-stat-item:hover {
    border-color: #1a237e;
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.15);
}

.hero-stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

[data-theme="light"] .hero-stat-icon {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.1) 0%, rgba(26, 35, 126, 0.05) 100%);
    border-color: rgba(26, 35, 126, 0.2);
}

.hero-stat-item:hover .hero-stat-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: #ffffff;
}

[data-theme="light"] .hero-stat-item:hover .hero-stat-icon {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.2) 0%, rgba(26, 35, 126, 0.1) 100%);
    border-color: #1a237e;
}

.hero-stat-icon i {
    font-size: 2rem;
    color: #ffffff;
}

[data-theme="light"] .hero-stat-icon i {
    color: #1a237e;
}

.hero-stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .hero-stat-value {
    color: #1a237e;
    text-shadow: none;
}

.hero-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

[data-theme="light"] .hero-stat-label {
    color: #546e7a;
}

/* About Content Card */
.about-content-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 3.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, transparent 100%);
}

[data-theme="light"] .about-content-card::before {
    background: linear-gradient(180deg, #1a237e 0%, transparent 100%);
}

.section-header-modern {
    margin-bottom: 2.5rem;
    position: relative;
}

.section-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

[data-theme="light"] .section-number {
    color: rgba(26, 35, 126, 0.5);
}

.section-title-modern {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

[data-theme="light"] .section-title-modern {
    color: #1a237e;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
    border-radius: 2px;
}

[data-theme="light"] .title-underline {
    background: linear-gradient(90deg, #1a237e 0%, transparent 100%);
}

.title-underline-center {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #ffffff 50%, transparent 100%);
    border-radius: 2px;
    margin: 0 auto;
}

[data-theme="light"] .title-underline-center {
    background: linear-gradient(90deg, transparent 0%, #1a237e 50%, transparent 100%);
}

.about-content-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.9;
}

[data-theme="light"] .about-content-text {
    color: #546e7a;
}

.about-content-text p {
    margin-bottom: 1.5rem;
}

.about-content-text strong {
    color: #ffffff;
    font-weight: 600;
}

[data-theme="light"] .about-content-text strong {
    color: #1a237e;
}

.highlight-text {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-left: 4px solid #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 500;
    color: #ffffff;
    margin-top: 2rem;
}

[data-theme="light"] .highlight-text {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.1) 0%, rgba(26, 35, 126, 0.05) 100%);
    border-left-color: #1a237e;
    color: #1a237e;
}

/* Mission & Vision Cards */
.mission-vision-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 3rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mission-vision-card:hover::before {
    opacity: 1;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    border-color: #ffffff;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .mission-vision-card:hover {
    border-color: #1a237e;
    box-shadow: 0 15px 35px rgba(26, 35, 126, 0.1);
}

.mv-icon-wrapper {
    margin-bottom: 2rem;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

[data-theme="light"] .mv-icon {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.15) 0%, rgba(26, 35, 126, 0.05) 100%);
    border-color: rgba(26, 35, 126, 0.2);
}

.mission-vision-card:hover .mv-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
}

[data-theme="light"] .mission-vision-card:hover .mv-icon {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.25) 0%, rgba(26, 35, 126, 0.15) 100%);
}

.mv-icon i {
    font-size: 2rem;
    color: #ffffff;
}

[data-theme="light"] .mv-icon i {
    color: #1a237e;
}

.mission-vision-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

[data-theme="light"] .mission-vision-card h3 {
    color: #1a237e;
}

.mission-vision-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
}

[data-theme="light"] .mission-vision-card p {
    color: #546e7a;
}

/* Benefit Cards */
.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

[data-theme="light"] .benefit-card::before {
    background: linear-gradient(90deg, #1a237e 0%, transparent 100%);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #ffffff;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15);
}

[data-theme="light"] .benefit-card:hover {
    border-color: #1a237e;
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.15);
}

.benefit-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

[data-theme="light"] .benefit-number {
    color: rgba(26, 35, 126, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

[data-theme="light"] .benefit-icon {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.15) 0%, rgba(26, 35, 126, 0.05) 100%);
    border-color: rgba(26, 35, 126, 0.2);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    border-color: #ffffff;
}

[data-theme="light"] .benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.25) 0%, rgba(26, 35, 126, 0.15) 100%);
    border-color: #1a237e;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

[data-theme="light"] .benefit-icon i {
    color: #1a237e;
}

.benefit-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

[data-theme="light"] .benefit-card h4 {
    color: #1a237e;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
}

[data-theme="light"] .benefit-card p {
    color: #546e7a;
}

.about-cta-modern {
    margin-top: 3rem;
}

/* Contact Page Styles */
.contact-page-section {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
}

[data-theme="light"] .contact-page-section {
    background: #f8f9fa;
}

.contact-info-card,
.contact-form-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.contact-info-card h3,
.contact-form-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .contact-info-card h3,
[data-theme="light"] .contact-form-card h3 {
    color: #1a237e;
    border-bottom-color: rgba(26, 35, 126, 0.1);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
}

[data-theme="light"] .contact-item {
    background: rgba(26, 35, 126, 0.03);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

[data-theme="light"] .contact-item:hover {
    background: rgba(26, 35, 126, 0.08);
}

.contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

[data-theme="light"] .contact-icon {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.15) 0%, rgba(26, 35, 126, 0.05) 100%);
    border-color: rgba(26, 35, 126, 0.2);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    border-color: #ffffff;
}

[data-theme="light"] .contact-item:hover .contact-icon {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.25) 0%, rgba(26, 35, 126, 0.15) 100%);
    border-color: #1a237e;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

[data-theme="light"] .contact-icon i {
    color: #1a237e;
}

.contact-details h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

[data-theme="light"] .contact-details h5 {
    color: #1a237e;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

[data-theme="light"] .contact-details p {
    color: #546e7a;
}

.contact-details a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

[data-theme="light"] .contact-details a {
    color: #1a237e;
}

.contact-details a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .contact-details a:hover {
    color: #1a237e;
    text-shadow: none;
}

.contact-social {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .contact-social {
    border-top-color: rgba(26, 35, 126, 0.1);
}

.contact-social h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

[data-theme="light"] .contact-social h5 {
    color: #1a237e;
}

/* Team Page Styles */
.team-section {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
}

[data-theme="light"] .team-section {
    background: #f8f9fa;
}

.team-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

[data-theme="light"] .team-intro {
    color: #546e7a;
}

.team-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 0;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: #ffffff;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15);
}

[data-theme="light"] .team-card:hover {
    border-color: #1a237e;
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.15);
}

.team-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 2.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

[data-theme="light"] .team-header {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.1) 0%, rgba(26, 35, 126, 0.05) 100%);
}

.team-image {
    margin-bottom: 1.5rem;
}

.team-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

[data-theme="light"] .team-placeholder {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.15) 0%, rgba(26, 35, 126, 0.05) 100%);
    border-color: rgba(26, 35, 126, 0.2);
}

.team-card:hover .team-placeholder {
    transform: scale(1.05);
    border-color: #ffffff;
}

[data-theme="light"] .team-card:hover .team-placeholder {
    border-color: #1a237e;
}

.team-placeholder i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .team-placeholder i {
    color: rgba(26, 35, 126, 0.6);
}

.team-title-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

[data-theme="light"] .team-title-section h3 {
    color: #1a237e;
}

.team-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
}

[data-theme="light"] .team-role {
    color: #546e7a;
}

.team-content {
    padding: 2.5rem;
}

.team-bio {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

[data-theme="light"] .team-bio {
    color: #546e7a;
}

.team-nav-tabs {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

[data-theme="light"] .team-nav-tabs {
    border-bottom-color: rgba(26, 35, 126, 0.1);
}

.team-nav-tabs .nav-link {
    color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 10px 10px 0 0;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
}

[data-theme="light"] .team-nav-tabs .nav-link {
    color: #546e7a;
}

.team-nav-tabs .nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .team-nav-tabs .nav-link:hover {
    color: #1a237e;
    background: rgba(26, 35, 126, 0.05);
}

.team-nav-tabs .nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid #ffffff;
}

[data-theme="light"] .team-nav-tabs .nav-link.active {
    color: #1a237e;
    background: rgba(26, 35, 126, 0.1);
    border-bottom-color: #1a237e;
}

.team-nav-tabs .nav-link i {
    margin-right: 0.5rem;
}

.team-tab-content {
    padding: 1rem 0;
}

.team-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-list li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 2;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

[data-theme="light"] .team-list li {
    color: #546e7a;
}

.team-list li i {
    color: #ffffff;
    font-size: 0.9rem;
}

[data-theme="light"] .team-list li i {
    color: #1a237e;
}

.sectors-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
}

[data-theme="light"] .sectors-text {
    color: #546e7a;
}

.team-backend-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #ffffff 50%, transparent 100%);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

[data-theme="light"] .section-divider {
    background: linear-gradient(90deg, transparent 0%, #1a237e 50%, transparent 100%);
}

.capability-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.capability-box:hover {
    transform: translateY(-8px);
    border-color: #ffffff;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .capability-box:hover {
    border-color: #1a237e;
    box-shadow: 0 15px 35px rgba(26, 35, 126, 0.1);
}

.capability-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

[data-theme="light"] .capability-icon {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.15) 0%, rgba(26, 35, 126, 0.05) 100%);
    border-color: rgba(26, 35, 126, 0.2);
}

.capability-box:hover .capability-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    border-color: #ffffff;
}

[data-theme="light"] .capability-box:hover .capability-icon {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.25) 0%, rgba(26, 35, 126, 0.15) 100%);
    border-color: #1a237e;
}

.capability-icon i {
    font-size: 2rem;
    color: #ffffff;
}

[data-theme="light"] .capability-icon i {
    color: #1a237e;
}

.capability-box h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

[data-theme="light"] .capability-box h4 {
    color: #1a237e;
}

.capability-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
}

[data-theme="light"] .capability-box p {
    color: #546e7a;
}

/* Service Detail Page Styles */
.service-detail-section {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
}

[data-theme="light"] .service-detail-section {
    background: #f8f9fa;
}

.service-detail-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.service-detail-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 45px rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .service-detail-image:hover {
    box-shadow: 0 20px 45px rgba(26, 35, 126, 0.2);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

[data-theme="light"] .service-description {
    color: #546e7a;
}

.service-highlights {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.service-highlights h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

[data-theme="light"] .service-highlights h3 {
    color: #1a237e;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-list li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 2;
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .highlight-list li {
    color: #546e7a;
    border-bottom-color: rgba(26, 35, 126, 0.05);
}

.highlight-list li:last-child {
    border-bottom: none;
}

.highlight-list li i {
    color: #ffffff;
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

[data-theme="light"] .highlight-list li i {
    color: #1a237e;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateX(5px);
    border-color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .feature-item:hover {
    border-color: #1a237e;
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.1);
}

.feature-item i {
    color: #ffffff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

[data-theme="light"] .feature-item i {
    color: #1a237e;
}

.feature-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

[data-theme="light"] .feature-item span {
    color: #546e7a;
}

.service-cta-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 100px;
}

.service-cta-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

[data-theme="light"] .service-cta-card h3 {
    color: #1a237e;
}

.service-cta-card > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 2rem;
}

[data-theme="light"] .service-cta-card > p {
    color: #546e7a;
}

.cta-info {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .cta-info {
    border-top-color: rgba(26, 35, 126, 0.1);
}

.cta-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

[data-theme="light"] .cta-info p {
    color: #546e7a;
}

.cta-info p i {
    color: #ffffff;
    font-size: 1rem;
}

[data-theme="light"] .cta-info p i {
    color: #1a237e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .about-content-card,
    .contact-info-card,
    .contact-form-card {
        padding: 2rem;
    }
    
    .hero-stat-item {
        padding: 2rem 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .service-cta-card {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }
}
/* ============================================
   PREMIUM ANIMATED PAGE STYLES - Enhanced Version
   ============================================ */

/* Enhanced Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2),
                    0 0 40px rgba(255, 255, 255, 0.1),
                    0 0 60px rgba(255, 255, 255, 0.05);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.4),
                    0 0 60px rgba(255, 255, 255, 0.2),
                    0 0 90px rgba(255, 255, 255, 0.1);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        border-color: rgba(255, 255, 255, 0.6);
        box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.3);
    }
}

@keyframes iconSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes numberCount {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8) rotateX(15deg);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-10px) scale(1.05) rotateX(-5deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-100px);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) translateY(10px);
    }
    70% {
        transform: scale(0.95) translateY(-5px);
    }
    100% {
        transform: scale(1) translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Page Header - Enhanced with Animations */
.page-header {
    position: relative;
    padding: 150px 0 100px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 14, 39, 0.98) 100%);
    overflow: hidden;
    margin-top: 70px;
    animation: fadeIn 0.8s ease;
}

[data-theme="light"] .page-header {
    background: linear-gradient(135deg, rgba(240, 247, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 1;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    animation: shimmer 20s linear infinite;
    z-index: 1;
}

[data-theme="light"] .page-header::before {
    background: 
        radial-gradient(circle at 20% 50%, rgba(26, 35, 126, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(26, 35, 126, 0.12) 0%, transparent 50%);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.4),
        0 0 60px rgba(255, 255, 255, 0.2),
        0 0 90px rgba(255, 255, 255, 0.1);
    animation: slideInUp 0.8s ease, glowPulse 3s ease-in-out infinite 1s;
    letter-spacing: 2px;
}

[data-theme="light"] .page-title {
    color: #1a237e;
    text-shadow: 0 2px 10px rgba(26, 35, 126, 0.3);
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    animation: slideInUp 0.8s ease 0.3s both;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .page-subtitle {
    color: #546e7a;
    text-shadow: none;
}

/* Hero Stats - Premium Animated Cards */
.about-hero-stats {
    margin-bottom: 4rem;
}

.hero-stat-item {
    background: linear-gradient(135deg, 
        rgba(10, 14, 39, 0.9) 0%, 
        rgba(26, 35, 126, 0.7) 50%,
        rgba(10, 14, 39, 0.9) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation: cardEntrance 0.6s ease backwards;
    transform-style: preserve-3d;
}

.hero-stat-item:nth-child(1) { animation-delay: 0.1s; }
.hero-stat-item:nth-child(2) { animation-delay: 0.2s; }
.hero-stat-item:nth-child(3) { animation-delay: 0.3s; }
.hero-stat-item:nth-child(4) { animation-delay: 0.4s; }

.hero-stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: floatCard 6s ease-in-out infinite;
}

.hero-stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.hero-stat-item:hover::before {
    opacity: 1;
}

.hero-stat-item:hover::after {
    left: 100%;
}

.hero-stat-item:hover {
    transform: translateY(-15px) scale(1.05) rotateX(5deg);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 25px 50px rgba(255, 255, 255, 0.2),
        0 0 0 2px rgba(255, 255, 255, 0.3) inset,
        0 0 40px rgba(255, 255, 255, 0.15);
    animation: glowPulse 2s ease-in-out infinite;
}

[data-theme="light"] .hero-stat-item {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(240, 247, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.95) 100%);
    border-color: rgba(26, 35, 126, 0.2);
    box-shadow: 
        0 10px 30px rgba(26, 35, 126, 0.1),
        0 0 0 1px rgba(26, 35, 126, 0.1) inset;
}

[data-theme="light"] .hero-stat-item:hover {
    border-color: rgba(26, 35, 126, 0.5);
    box-shadow: 
        0 25px 50px rgba(26, 35, 126, 0.2),
        0 0 0 2px rgba(26, 35, 126, 0.3) inset,
        0 0 40px rgba(26, 35, 126, 0.15);
}

.hero-stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    box-shadow: 
        0 5px 15px rgba(255, 255, 255, 0.2),
        0 0 0 0 rgba(255, 255, 255, 0.4);
    animation: floatCard 4s ease-in-out infinite;
}

.hero-stat-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.3));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

[data-theme="light"] .hero-stat-icon {
    background: linear-gradient(135deg, 
        rgba(26, 35, 126, 0.2) 0%, 
        rgba(26, 35, 126, 0.1) 100%);
    border-color: rgba(26, 35, 126, 0.3);
    box-shadow: 
        0 5px 15px rgba(26, 35, 126, 0.2),
        0 0 0 0 rgba(26, 35, 126, 0.4);
}

.hero-stat-item:hover .hero-stat-icon {
    transform: rotate(360deg) scale(1.2);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.2) 100%);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 10px 30px rgba(255, 255, 255, 0.4),
        0 0 0 5px rgba(255, 255, 255, 0.2);
    animation: iconSpin 1s ease, glowPulse 2s ease-in-out infinite;
}

.hero-stat-item:hover .hero-stat-icon::before {
    opacity: 1;
    animation: borderGlow 2s ease-in-out infinite;
}

[data-theme="light"] .hero-stat-item:hover .hero-stat-icon {
    background: linear-gradient(135deg, 
        rgba(26, 35, 126, 0.3) 0%, 
        rgba(26, 35, 126, 0.2) 100%);
    border-color: rgba(26, 35, 126, 0.6);
    box-shadow: 
        0 10px 30px rgba(26, 35, 126, 0.4),
        0 0 0 5px rgba(26, 35, 126, 0.2);
}

.hero-stat-icon i {
    font-size: 2.5rem;
    color: #ffffff;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

[data-theme="light"] .hero-stat-icon i {
    color: #1a237e;
    filter: drop-shadow(0 0 5px rgba(26, 35, 126, 0.3));
}

.hero-stat-item:hover .hero-stat-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

.hero-stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.5),
        0 0 40px rgba(255, 255, 255, 0.3);
    animation: numberCount 0.8s ease backwards;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-stat-item:hover .hero-stat-value {
    transform: scale(1.1);
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.7),
        0 0 60px rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .hero-stat-value {
    color: #1a237e;
    text-shadow: 0 2px 10px rgba(26, 35, 126, 0.3);
}

[data-theme="light"] .hero-stat-item:hover .hero-stat-value {
    text-shadow: 0 4px 20px rgba(26, 35, 126, 0.5);
}

.hero-stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.hero-stat-item:hover .hero-stat-label {
    color: rgba(255, 255, 255, 1);
    letter-spacing: 3px;
}

[data-theme="light"] .hero-stat-label {
    color: #546e7a;
}

[data-theme="light"] .hero-stat-item:hover .hero-stat-label {
    color: #1a237e;
}

/* About Content Card - Enhanced */
.about-content-card {
    background: linear-gradient(135deg, 
        rgba(10, 14, 39, 0.95) 0%, 
        rgba(26, 35, 126, 0.8) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 4rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation: cardEntrance 0.8s ease 0.2s backwards;
    transition: all 0.5s ease;
}

.about-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, 
        #ffffff 0%, 
        rgba(255, 255, 255, 0.8) 50%,
        transparent 100%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: glowPulse 3s ease-in-out infinite;
}

.about-content-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-content-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 30px 80px rgba(255, 255, 255, 0.2),
        0 0 0 2px rgba(255, 255, 255, 0.3) inset;
}

.about-content-card:hover::after {
    opacity: 1;
}

[data-theme="light"] .about-content-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(240, 247, 255, 0.95) 100%);
    border-color: rgba(26, 35, 126, 0.2);
    box-shadow: 
        0 20px 60px rgba(26, 35, 126, 0.1),
        0 0 0 1px rgba(26, 35, 126, 0.1) inset;
}

[data-theme="light"] .about-content-card::before {
    background: linear-gradient(180deg, 
        #1a237e 0%, 
        rgba(26, 35, 126, 0.8) 50%,
        transparent 100%);
    box-shadow: 0 0 20px rgba(26, 35, 126, 0.5);
}

[data-theme="light"] .about-content-card:hover {
    border-color: rgba(26, 35, 126, 0.4);
    box-shadow: 
        0 30px 80px rgba(26, 35, 126, 0.2),
        0 0 0 2px rgba(26, 35, 126, 0.3) inset;
}

.section-header-modern {
    margin-bottom: 3rem;
    position: relative;
    animation: slideInUp 0.6s ease 0.3s backwards;
}

.section-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.section-header-modern:hover .section-number {
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 7px;
}

[data-theme="light"] .section-number {
    color: rgba(26, 35, 126, 0.6);
    text-shadow: none;
}

[data-theme="light"] .section-header-modern:hover .section-number {
    color: rgba(26, 35, 126, 0.9);
}

.section-title-modern {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease 0.4s backwards;
}

.section-header-modern:hover .section-title-modern {
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.5),
        0 0 60px rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

[data-theme="light"] .section-title-modern {
    color: #1a237e;
    text-shadow: 0 2px 10px rgba(26, 35, 126, 0.2);
}

[data-theme="light"] .section-header-modern:hover .section-title-modern {
    text-shadow: 0 4px 20px rgba(26, 35, 126, 0.3);
}

.title-underline {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, 
        transparent 0%,
        #ffffff 20%,
        #ffffff 80%,
        transparent 100%);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    animation: slideInUp 0.6s ease 0.5s backwards, glowPulse 3s ease-in-out infinite 1s;
    transition: all 0.3s ease;
}

.section-header-modern:hover .title-underline {
    width: 150px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .title-underline {
    background: linear-gradient(90deg, 
        transparent 0%,
        #1a237e 20%,
        #1a237e 80%,
        transparent 100%);
    box-shadow: 0 0 15px rgba(26, 35, 126, 0.5);
}

[data-theme="light"] .section-header-modern:hover .title-underline {
    box-shadow: 0 0 25px rgba(26, 35, 126, 0.7);
}

.title-underline-center {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, 
        transparent 0%,
        #ffffff 20%,
        #ffffff 50%,
        #ffffff 80%,
        transparent 100%);
    border-radius: 3px;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    animation: slideInUp 0.6s ease 0.5s backwards, glowPulse 3s ease-in-out infinite 1s;
    transition: all 0.3s ease;
}

.section-header-modern:hover .title-underline-center {
    width: 180px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .title-underline-center {
    background: linear-gradient(90deg, 
        transparent 0%,
        #1a237e 20%,
        #1a237e 50%,
        #1a237e 80%,
        transparent 100%);
    box-shadow: 0 0 15px rgba(26, 35, 126, 0.5);
}

[data-theme="light"] .section-header-modern:hover .title-underline-center {
    box-shadow: 0 0 25px rgba(26, 35, 126, 0.7);
}

.about-content-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 2;
    animation: slideInUp 0.6s ease 0.6s backwards;
}

[data-theme="light"] .about-content-text {
    color: #546e7a;
}

.about-content-text p {
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.about-content-text p:hover {
    transform: translateX(5px);
    color: rgba(255, 255, 255, 1);
}

[data-theme="light"] .about-content-text p:hover {
    color: #1a237e;
}

.about-content-text strong {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.about-content-text strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, transparent);
    transition: width 0.3s ease;
}

.about-content-text strong:hover::after {
    width: 100%;
}

[data-theme="light"] .about-content-text strong {
    color: #1a237e;
    text-shadow: none;
}

[data-theme="light"] .about-content-text strong::after {
    background: linear-gradient(90deg, #1a237e, transparent);
}

.highlight-text {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.15) 100%);
    border-left: 5px solid #ffffff;
    padding: 2rem;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    animation: slideInUp 0.6s ease 0.7s backwards;
    transition: all 0.4s ease;
}

.highlight-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.highlight-text:hover {
    transform: translateX(10px);
    border-left-width: 8px;
    box-shadow: 
        0 15px 40px rgba(255, 255, 255, 0.2),
        0 0 0 2px rgba(255, 255, 255, 0.3) inset;
}

.highlight-text:hover::before {
    left: 100%;
}

[data-theme="light"] .highlight-text {
    background: linear-gradient(135deg, 
        rgba(26, 35, 126, 0.15) 0%, 
        rgba(26, 35, 126, 0.08) 50%,
        rgba(26, 35, 126, 0.15) 100%);
    border-left-color: #1a237e;
    color: #1a237e;
    box-shadow: 
        0 10px 30px rgba(26, 35, 126, 0.1),
        0 0 0 1px rgba(26, 35, 126, 0.2) inset;
}

[data-theme="light"] .highlight-text:hover {
    box-shadow: 
        0 15px 40px rgba(26, 35, 126, 0.2),
        0 0 0 2px rgba(26, 35, 126, 0.3) inset;
}

/* Mission & Vision Cards - Enhanced */
.mission-vision-card {
    background: linear-gradient(135deg, 
        rgba(10, 14, 39, 0.95) 0%, 
        rgba(26, 35, 126, 0.85) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 3.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation: cardEntrance 0.6s ease backwards;
    transform-style: preserve-3d;
}

.mission-vision-card:nth-child(1) { animation-delay: 0.2s; }
.mission-vision-card:nth-child(2) { animation-delay: 0.4s; }

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: floatCard 8s ease-in-out infinite;
}

.mission-vision-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mission-vision-card:hover::before {
    opacity: 1;
}

.mission-vision-card:hover::after {
    opacity: 1;
}

.mission-vision-card:hover {
    transform: translateY(-10px) scale(1.02) rotateX(5deg);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 25px 60px rgba(255, 255, 255, 0.2),
        0 0 0 2px rgba(255, 255, 255, 0.3) inset,
        0 0 50px rgba(255, 255, 255, 0.15);
    animation: glowPulse 2s ease-in-out infinite;
}

[data-theme="light"] .mission-vision-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(240, 247, 255, 0.95) 100%);
    border-color: rgba(26, 35, 126, 0.2);
    box-shadow: 
        0 15px 40px rgba(26, 35, 126, 0.1),
        0 0 0 1px rgba(26, 35, 126, 0.1) inset;
}

[data-theme="light"] .mission-vision-card:hover {
    border-color: rgba(26, 35, 126, 0.5);
    box-shadow: 
        0 25px 60px rgba(26, 35, 126, 0.2),
        0 0 0 2px rgba(26, 35, 126, 0.3) inset,
        0 0 50px rgba(26, 35, 126, 0.15);
}

.mv-icon-wrapper {
    margin-bottom: 2.5rem;
    animation: scaleIn 0.6s ease 0.3s backwards;
}

.mv-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    box-shadow: 
        0 10px 30px rgba(255, 255, 255, 0.2),
        0 0 0 0 rgba(255, 255, 255, 0.4);
    animation: floatCard 5s ease-in-out infinite;
}

.mv-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.4));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    animation: iconSpin 3s linear infinite;
}

[data-theme="light"] .mv-icon {
    background: linear-gradient(135deg, 
        rgba(26, 35, 126, 0.25) 0%, 
        rgba(26, 35, 126, 0.1) 100%);
    border-color: rgba(26, 35, 126, 0.3);
    box-shadow: 
        0 10px 30px rgba(26, 35, 126, 0.2),
        0 0 0 0 rgba(26, 35, 126, 0.4);
}

.mission-vision-card:hover .mv-icon {
    transform: scale(1.2) rotate(360deg);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.35) 0%, 
        rgba(255, 255, 255, 0.2) 100%);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 15px 40px rgba(255, 255, 255, 0.4),
        0 0 0 8px rgba(255, 255, 255, 0.2);
    animation: iconSpin 1s ease, glowPulse 2s ease-in-out infinite;
}

.mission-vision-card:hover .mv-icon::before {
    opacity: 1;
}

[data-theme="light"] .mission-vision-card:hover .mv-icon {
    background: linear-gradient(135deg, 
        rgba(26, 35, 126, 0.35) 0%, 
        rgba(26, 35, 126, 0.2) 100%);
    border-color: rgba(26, 35, 126, 0.6);
    box-shadow: 
        0 15px 40px rgba(26, 35, 126, 0.4),
        0 0 0 8px rgba(26, 35, 126, 0.2);
}

.mv-icon i {
    font-size: 2.5rem;
    color: #ffffff;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
    z-index: 1;
    position: relative;
}

[data-theme="light"] .mv-icon i {
    color: #1a237e;
    filter: drop-shadow(0 0 8px rgba(26, 35, 126, 0.4));
}

.mission-vision-card:hover .mv-icon i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.9));
}

.mission-vision-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.4),
        0 0 30px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease 0.4s backwards;
}

.mission-vision-card:hover h3 {
    text-shadow: 
        0 0 25px rgba(255, 255, 255, 0.6),
        0 0 50px rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

[data-theme="light"] .mission-vision-card h3 {
    color: #1a237e;
    text-shadow: 0 2px 10px rgba(26, 35, 126, 0.2);
}

[data-theme="light"] .mission-vision-card:hover h3 {
    text-shadow: 0 4px 20px rgba(26, 35, 126, 0.3);
}

.mission-vision-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.9;
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease 0.5s backwards;
}

.mission-vision-card:hover p {
    color: rgba(255, 255, 255, 1);
    transform: translateX(3px);
}

[data-theme="light"] .mission-vision-card p {
    color: #546e7a;
}

[data-theme="light"] .mission-vision-card:hover p {
    color: #1a237e;
}

/* Benefit Cards - Enhanced */
.benefit-card {
    background: linear-gradient(135deg, 
        rgba(10, 14, 39, 0.95) 0%, 
        rgba(26, 35, 126, 0.85) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation: cardEntrance 0.6s ease backwards;
    transform-style: preserve-3d;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, 
        transparent 0%,
        #ffffff 20%,
        #ffffff 80%,
        transparent 100%);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: floatCard 7s ease-in-out infinite;
}

[data-theme="light"] .benefit-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(240, 247, 255, 0.95) 100%);
    border-color: rgba(26, 35, 126, 0.2);
    box-shadow: 
        0 15px 40px rgba(26, 35, 126, 0.1),
        0 0 0 1px rgba(26, 35, 126, 0.1) inset;
}

[data-theme="light"] .benefit-card::before {
    background: linear-gradient(90deg, 
        transparent 0%,
        #1a237e 20%,
        #1a237e 80%,
        transparent 100%);
    box-shadow: 0 0 20px rgba(26, 35, 126, 0.6);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.03) rotateX(5deg);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 30px 70px rgba(255, 255, 255, 0.25),
        0 0 0 3px rgba(255, 255, 255, 0.3) inset,
        0 0 60px rgba(255, 255, 255, 0.2);
    animation: glowPulse 2s ease-in-out infinite;
}

[data-theme="light"] .benefit-card:hover {
    border-color: rgba(26, 35, 126, 0.5);
    box-shadow: 
        0 30px 70px rgba(26, 35, 126, 0.25),
        0 0 0 3px rgba(26, 35, 126, 0.3) inset,
        0 0 60px rgba(26, 35, 126, 0.2);
}

.benefit-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 0;
}

.benefit-card:hover .benefit-number {
    color: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

[data-theme="light"] .benefit-number {
    color: rgba(26, 35, 126, 0.08);
}

[data-theme="light"] .benefit-card:hover .benefit-number {
    color: rgba(26, 35, 126, 0.15);
}

.benefit-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    box-shadow: 
        0 10px 30px rgba(255, 255, 255, 0.2),
        0 0 0 0 rgba(255, 255, 255, 0.4);
    animation: floatCard 5s ease-in-out infinite;
    z-index: 1;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.4));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    animation: iconSpin 4s linear infinite;
}

[data-theme="light"] .benefit-icon {
    background: linear-gradient(135deg, 
        rgba(26, 35, 126, 0.25) 0%, 
        rgba(26, 35, 126, 0.1) 100%);
    border-color: rgba(26, 35, 126, 0.3);
    box-shadow: 
        0 10px 30px rgba(26, 35, 126, 0.2),
        0 0 0 0 rgba(26, 35, 126, 0.4);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.25) rotate(360deg);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.35) 0%, 
        rgba(255, 255, 255, 0.2) 100%);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 15px 40px rgba(255, 255, 255, 0.4),
        0 0 0 10px rgba(255, 255, 255, 0.2);
    animation: iconSpin 1s ease, glowPulse 2s ease-in-out infinite;
}

.benefit-card:hover .benefit-icon::before {
    opacity: 1;
}

[data-theme="light"] .benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, 
        rgba(26, 35, 126, 0.35) 0%, 
        rgba(26, 35, 126, 0.2) 100%);
    border-color: rgba(26, 35, 126, 0.6);
    box-shadow: 
        0 15px 40px rgba(26, 35, 126, 0.4),
        0 0 0 10px rgba(26, 35, 126, 0.2);
}

.benefit-icon i {
    font-size: 2.2rem;
    color: #ffffff;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
    z-index: 1;
    position: relative;
}

[data-theme="light"] .benefit-icon i {
    color: #1a237e;
    filter: drop-shadow(0 0 8px rgba(26, 35, 126, 0.4));
}

.benefit-card:hover .benefit-icon i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.9));
}

.benefit-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease 0.3s backwards;
    position: relative;
    z-index: 1;
}

.benefit-card:hover h4 {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
}

[data-theme="light"] .benefit-card h4 {
    color: #1a237e;
    text-shadow: none;
}

[data-theme="light"] .benefit-card:hover h4 {
    text-shadow: 0 2px 10px rgba(26, 35, 126, 0.3);
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease 0.4s backwards;
    position: relative;
    z-index: 1;
}

.benefit-card:hover p {
    color: rgba(255, 255, 255, 1);
    transform: translateX(3px);
}

[data-theme="light"] .benefit-card p {
    color: #546e7a;
}

[data-theme="light"] .benefit-card:hover p {
    color: #1a237e;
}

.about-cta-modern {
    margin-top: 4rem;
    animation: slideInUp 0.6s ease 0.8s backwards;
}

/* Continue with Contact, Team, and Service Detail styles... */
/* (Due to length, I'll add the most critical parts) */

