* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark mode only - default colors */
    /* Theme Colors: Dark Blue Background, Bright Blue Accents, White Text */
    --primary-color: #3B82F6;
    --primary-dark: #2563EB;
    --primary-light: #60A5FA;
    --secondary-color: #3B82F6;
    --accent-color: #60A5FA;
    --text-color: #FFFFFF;
    --text-light: #E5E7EB;
    --text-lighter: #D1D5DB;
    --text-secondary: #9CA3AF;
    --bg-color: #000000;
    --bg-light: #0A0A0A;
    --bg-secondary: #0A0A0A;
    --bg-gradient: linear-gradient(135deg, #000000 0%, #0A0A0A 50%, #000000 100%);
    --border-color: #334155;
    --success-color: #10B981;
    --success-light: #34D399;
    --danger-color: #EF4444;
    --danger-light: #F87171;
    --warning-color: #F59E0B;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    --shadow-2xl: 0 35px 60px -12px rgba(0, 0, 0, 0.8);
    --gradient-primary: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    --gradient-success: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --gradient-danger: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    --gradient-hero: linear-gradient(135deg, #000000 0%, #0A0A0A 50%, #000000 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Smooth scroll with better performance */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Selection styling */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* Dark mode is default - all elements use dark theme */
html {
    background-color: var(--bg-color);
}

/* Cards use dark theme by default */
.card,
.service-card,
.stat-card {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--text-color);
}

.card h2,
.card h3,
.card h4,
.card h5,
.card h6 {
    color: var(--text-light) !important;
}

.card p,
.service-card h3,
.service-card p,
.stat-card p {
    color: var(--text-color);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 2rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--text-color);
}

.navbar * {
    color: var(--text-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.9rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    transition: transform 0.3s ease;
    position: absolute;
    left: 0;
    z-index: 1;
}

.nav-brand .nav-logo {
    height: 150px;
    width: auto;
    display: block;
}

.nav-auth-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    right: 0;
    z-index: 1;
}

.nav-mobile-auth {
    display: none;
}

.nav-brand:hover {
    transform: scale(1.05);
}

.nav-brand i {
    font-size: 2.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-auth-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a {
    color: var(--text-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Navbar Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-color);
    box-shadow: var(--shadow-lg);
    border-radius: 14px;
    padding: 0.5rem 0;
    margin-top: 10px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    transform: translateX(5px);
    border-bottom-color: var(--border-color);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a i {
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

/* Dark mode dropdown */
.dropdown-menu {
    background: rgba(0, 0, 0, 0.95);
    border-color: rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.dropdown-menu a {
    color: var(--text-color);
}

.dropdown-menu a:hover {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: absolute;
    right: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: 0.3s;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 16px 36px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3), 0 4px 10px rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    border: 2px solid transparent;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4), 0 8px 16px rgba(59, 130, 246, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: linear-gradient(135deg, #000000 0%, #0A0A0A 100%);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #0A0A0A 0%, #000000 100%);
}

.btn-success {
    background: var(--gradient-success);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-danger {
    background: var(--gradient-danger);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #0A0A0A 50%, #000000 100%);
    background-attachment: fixed;
    color: white;
    padding: 160px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-image 1s ease-in-out;
}

.hero .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.hero .background-image.active {
    opacity: 0.85;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center, rgba(59, 130, 246, 0.1) 0%, rgba(0, 0, 0, 0.4) 70%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(59, 130, 246, 0.03) 2px,
            rgba(59, 130, 246, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(96, 165, 250, 0.03) 2px,
            rgba(96, 165, 250, 0.03) 4px
        );
    pointer-events: none;
    opacity: 0.3;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    transition: opacity 0.3s ease;
}

.hero-subtitle {
    transition: opacity 0.3s ease;
}

.hero h1, .hero .hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4), 0 2px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
}

.hero p, .hero .hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    opacity: 0.98;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.2s both;
    line-height: 1.7;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero p {
        font-size: 1.1rem;
    }
}

.hero .btn-primary,
.hero .btn-secondary {
    animation: fadeInUp 0.8s ease 0.4s both;
    margin: 0 12px;
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero .btn-primary:hover,
.hero .btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards */
.card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(59, 130, 246, 0.1) 50%, rgba(96, 165, 250, 0.1) 100%);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2), 0 1px 8px rgba(96, 165, 250, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    color: var(--text-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 50%, #3B82F6 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

@media (max-width: 768px) {
    .card {
        padding: 2rem;
    }
}

.card:hover::before {
    opacity: 1;
    animation: gradientRotate 3s linear infinite;
}

@keyframes gradientRotate {
    0% {
        background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 50%, #3B82F6 100%);
    }
    33% {
        background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 50%, #60A5FA 100%);
    }
    66% {
        background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 50%, #3B82F6 100%);
    }
    100% {
        background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 50%, #3B82F6 100%);
    }
}

.card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(96, 165, 250, 0.15) 30%, rgba(96, 165, 250, 0.1) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite;
}

.card:hover::after {
    opacity: 1;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4), 0 10px 20px rgba(96, 165, 250, 0.3), 0 0 60px rgba(96, 165, 250, 0.2), 0 40px 80px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(59, 130, 246, 0.2) 50%, rgba(96, 165, 250, 0.2) 100%);
}

.card-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.3;
    transition: transform 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card:hover .card-title {
    transform: translateX(5px);
}

.card i {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
    color: #ffffff;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.card:hover i {
    transform: scale(1.15) rotate(10deg) translateY(-5px);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    color: #ffffff;
}

.card i[style*="color"] {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) !important;
}

.card:hover i[style*="color"] {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4)) !important;
}

/* Remove effects only for check-circle icons in "What We Offer" section */
.card h4 i.fa-check-circle,
.card h3 i.fa-check-circle {
    transition: none !important;
    filter: none !important;
}

.card:hover h4 i.fa-check-circle,
.card:hover h3 i.fa-check-circle {
    transform: none !important;
    filter: none !important;
}

/* Remove effects for Contact Information section icons */
.card p i.fa-envelope,
.card p i.fa-phone,
.card p i.fa-map-marker-alt {
    transition: none !important;
    filter: none !important;
}

.card:hover p i.fa-envelope,
.card:hover p i.fa-phone,
.card:hover p i.fa-map-marker-alt {
    transform: none !important;
    filter: none !important;
}

.card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    flex-grow: 1;
}

.card .btn-primary {
    margin-top: auto;
    align-self: flex-start;
}

/* Colorful Card Styles for Homepage */
.colorful-card {
    position: relative;
    overflow: visible;
}

.card-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-icon-circle i {
    font-size: 3rem;
    color: white;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.card-blue .card-icon-circle {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.card-green .card-icon-circle {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.4);
}

.card-purple .card-icon-circle {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.card-orange .card-icon-circle {
    background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 100%);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.4);
}

.card-teal .card-icon-circle {
    background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.4);
}

.card-pink .card-icon-circle {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.4);
}

.colorful-card.card-blue {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(59, 130, 246, 0.3) 100%);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3), 0 1px 8px rgba(59, 130, 246, 0.2);
}

.colorful-card.card-green {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(96, 165, 250, 0.3) 100%);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.3), 0 1px 8px rgba(96, 165, 250, 0.2);
}

.colorful-card.card-purple {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(59, 130, 246, 0.3) 100%);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3), 0 1px 8px rgba(59, 130, 246, 0.2);
}

.colorful-card.card-orange {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(96, 165, 250, 0.3) 100%);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.3), 0 1px 8px rgba(96, 165, 250, 0.2);
}

.colorful-card.card-teal {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(96, 165, 250, 0.3) 100%);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.3), 0 1px 8px rgba(96, 165, 250, 0.2);
}

.colorful-card.card-pink {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(96, 165, 250, 0.3) 100%);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.3), 0 1px 8px rgba(96, 165, 250, 0.2);
}

.colorful-card .card-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.colorful-card p {
    color: rgba(255, 255, 255, 0.9);
}

.colorful-card:hover .card-icon-circle {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.colorful-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.colorful-card.card-blue:hover {
    box-shadow: 0 20px 40px rgba(26, 115, 255, 0.4), 0 10px 20px rgba(26, 115, 255, 0.3);
}

.colorful-card.card-green:hover {
    box-shadow: 0 20px 40px rgba(96, 165, 250, 0.4), 0 10px 20px rgba(96, 165, 250, 0.3);
}

.colorful-card.card-purple:hover {
    box-shadow: 0 20px 40px rgba(26, 115, 255, 0.4), 0 10px 20px rgba(26, 115, 255, 0.3);
}

.colorful-card.card-orange:hover {
    box-shadow: 0 20px 40px rgba(96, 165, 250, 0.4), 0 10px 20px rgba(96, 165, 250, 0.3);
}

.colorful-card.card-teal:hover {
    box-shadow: 0 20px 40px rgba(96, 165, 250, 0.4), 0 10px 20px rgba(96, 165, 250, 0.3);
}

.colorful-card.card-pink:hover {
    box-shadow: 0 20px 40px rgba(96, 165, 250, 0.4), 0 10px 20px rgba(96, 165, 250, 0.3);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin: 2rem 0;
}

/* Services Grid - 3 Columns (Corporate & Student Services Pages) */
.services-grid-3col {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@media (max-width: 1024px) {
    .services-grid-3col {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid-3col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0;
        box-shadow: none;
        border: none;
        border-top: 1px solid var(--border-color);
        border-radius: 0;
        background: var(--bg-light);
    }
    
    .nav-dropdown:hover .dropdown-menu {
        transform: none;
    }
}

.service-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(96, 165, 250, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

/* Colorful Card Variations - Dark Backgrounds */
.service-card:nth-child(1),
.service-card:nth-child(6n+1) {
    background: rgba(0, 0, 0, 0.95);
}

.service-card:nth-child(2),
.service-card:nth-child(6n+2) {
    background: rgba(0, 0, 0, 0.95);
}

.service-card:nth-child(3),
.service-card:nth-child(6n+3) {
    background: rgba(0, 0, 0, 0.95);
}

.service-card:nth-child(4),
.service-card:nth-child(6n+4) {
    background: rgba(0, 0, 0, 0.95);
}

.service-card:nth-child(5),
.service-card:nth-child(6n+5) {
    background: rgba(0, 0, 0, 0.95);
}

.service-card:nth-child(6),
.service-card:nth-child(6n+6) {
    background: rgba(0, 0, 0, 0.95);
}


.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25), 0 10px 25px rgba(96, 165, 250, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.4);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover .service-card-icon-header i {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5), 0 0 30px rgba(96, 165, 250, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.service-card h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    transition: filter 0.3s ease;
    text-shadow: none;
    line-height: 1.3;
}

.service-card:nth-child(1) h3,
.service-card:nth-child(6n+1) h3 {
    color: #ffffff;
}

.service-card:nth-child(2) h3,
.service-card:nth-child(6n+2) h3 {
    color: #ffffff;
}

.service-card:nth-child(3) h3,
.service-card:nth-child(6n+3) h3 {
    color: #ffffff;
}

.service-card:nth-child(4) h3,
.service-card:nth-child(6n+4) h3 {
    color: #ffffff;
}

.service-card:nth-child(5) h3,
.service-card:nth-child(6n+5) h3 {
    color: #ffffff;
}

.service-card:nth-child(6) h3,
.service-card:nth-child(6n+6) h3 {
    color: #ffffff;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Icon Header with Colored Circles */
.service-card-icon-header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1.5rem 0;
    margin-bottom: 0.5rem;
}

.service-card-icon-header::before {
    display: none;
}

.service-card:nth-child(1) .service-card-icon-header i,
.service-card:nth-child(6n+1) .service-card-icon-header i {
    background: #3B82F6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.service-card:nth-child(2) .service-card-icon-header i,
.service-card:nth-child(6n+2) .service-card-icon-header i {
    background: #60A5FA;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.4);
}

.service-card:nth-child(3) .service-card-icon-header i,
.service-card:nth-child(6n+3) .service-card-icon-header i {
    background: #3B82F6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.service-card:nth-child(4) .service-card-icon-header i,
.service-card:nth-child(6n+4) .service-card-icon-header i {
    background: #60A5FA;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.4);
}

.service-card:nth-child(5) .service-card-icon-header i,
.service-card:nth-child(6n+5) .service-card-icon-header i {
    background: #3B82F6;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.4);
}

.service-card:nth-child(6) .service-card-icon-header i,
.service-card:nth-child(6n+6) .service-card-icon-header i {
    background: #60A5FA;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.4);
}

.service-card-icon-header i {
    font-size: 1.75rem;
    color: #ffffff;
    z-index: 2;
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    filter: none;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4), 0 0 20px rgba(96, 165, 250, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.service-card-icon-header i::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B82F6, #60A5FA, #3B82F6);
    background-size: 200% 200%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientRotate 3s linear infinite;
}

.service-card:hover .service-card-icon-header i::after {
    opacity: 1;
}

.service-card-icon-header i::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body p {
    flex-grow: 1;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Service Offerings List */
.service-offerings {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-offerings li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.service-card:nth-child(1) .service-offerings li i,
.service-card:nth-child(6n+1) .service-offerings li i {
    color: #3B82F6;
}

.service-card:nth-child(2) .service-offerings li i,
.service-card:nth-child(6n+2) .service-offerings li i {
    color: #60A5FA;
}

.service-card:nth-child(3) .service-offerings li i,
.service-card:nth-child(6n+3) .service-offerings li i {
    color: #3B82F6;
}

.service-card:nth-child(4) .service-offerings li i,
.service-card:nth-child(6n+4) .service-offerings li i {
    color: #60A5FA;
}

.service-card:nth-child(5) .service-offerings li i,
.service-card:nth-child(6n+5) .service-offerings li i {
    color: #3B82F6;
}

.service-card:nth-child(6) .service-offerings li i,
.service-card:nth-child(6n+6) .service-offerings li i {
    color: #60A5FA;
}

.service-offerings li i {
    font-size: 0.9rem;
    filter: none;
}

.service-card:hover h3 {
    color: #ffffff;
}

.service-card .price {
    display: none;
}

.service-card .btn-primary,
.service-card .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 600;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: all 0.3s ease;
}

.service-card .btn-primary:hover,
.service-card .btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.service-card .badge {
    display: none;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-light) !important;
    font-size: 0.95rem;
}

/* Make headings black on white backgrounds (like in alerts or white sections) */
/* Headings in forms/cards - black for white backgrounds */
.card .section-title,
.card h2,
.card h3,
.card h4,
.card h5,
.card h6,
form .section-title,
form h2,
form h3,
form h4 {
    color: #1a1a1a !important;
}

/* Section headings in admin forms */
.section .card .section-title,
.section .card h2,
.section .card h3 {
    color: #1a1a1a !important;
}

.form-control {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(0, 0, 0, 0.8);
    color: var(--text-color);
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    pointer-events: auto !important;
    cursor: text !important;
    position: relative;
    z-index: 10 !important;
}

.form-control:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 12px rgba(26, 115, 255, 0.1);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 6px rgba(26, 115, 255, 0.15), 0 8px 20px rgba(26, 115, 255, 0.15), 0 2px 8px rgba(26, 115, 255, 0.1);
    transform: translateY(-3px);
    background: var(--bg-color);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
    line-height: 1.7;
    padding: 18px 24px;
    pointer-events: auto !important;
    cursor: text !important;
    position: relative;
    z-index: 10 !important;
}

select.form-control {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative;
    z-index: 10 !important;
}

/* Alerts */
.alert {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid;
    box-shadow: var(--shadow-md);
    animation: slideInRight 0.4s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.alert-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border-color: #10b981;
}

.alert-error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border-color: #ef4444;
}

.alert-info {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
    border-color: #3B82F6;
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border-color: #10b981;
}

.alert-error {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border-color: #ef4444;
}

.alert-info {
    background: rgba(59, 130, 246, 0.15);
    color: #4A9AFF;
    border-color: #3B82F6;
}

/* Dashboard */
.dashboard {
    padding: 2rem 0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 115, 255, 0.15) 50%, rgba(0, 225, 255, 0.15) 100%);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(26, 115, 255, 0.25), 0 1px 8px rgba(0, 225, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    color: var(--text-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #1A73FF 0%, #00E1FF 50%, #00E1FF 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
    transition: opacity 0.6s ease;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(96, 165, 250, 0.15) 30%, rgba(96, 165, 250, 0.1) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite;
}

@media (max-width: 768px) {
    .stat-card {
        padding: 2rem;
    }
}

.stat-card:hover::before {
    opacity: 1;
    animation: gradientRotate 3s linear infinite;
}

.stat-card:hover::after {
    opacity: 1;
    animation: pulseGlow 2s ease-in-out infinite;
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4), 0 10px 20px rgba(96, 165, 250, 0.3), 0 0 60px rgba(96, 165, 250, 0.2), 0 40px 80px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 115, 255, 0.25) 50%, rgba(0, 225, 255, 0.25) 100%);
}

.stat-card h3 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #4A9AFF 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    font-weight: 900;
    line-height: 1;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(26, 115, 255, 0.3));
}

.stat-card:hover h3 {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(26, 115, 255, 0.5)) drop-shadow(0 2px 6px rgba(0, 225, 255, 0.4)) drop-shadow(0 1px 3px rgba(0, 225, 255, 0.3));
}

@media (max-width: 768px) {
    .stat-card h3 {
        font-size: 2.5rem;
    }
}

.stat-card p {
    color: var(--text-light);
    font-weight: 500;
}

/* Table */
.table {
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 1px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(26, 115, 255, 0.3);
}

.table table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(26, 115, 255, 0.1);
    color: var(--text-color);
    transition: background-color 0.2s ease;
}

.table th {
    background: rgba(0, 0, 0, 0.9);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-bottom-color: rgba(26, 115, 255, 0.3);
}

.table tr {
    transition: all 0.2s ease;
}

.table tr:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: scale(1.01);
}

.table tr:hover td {
    color: #1a1a1a !important;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0A0A0A 0%, #000000 100%);
    color: white;
    padding: 5rem 0 2rem;
    margin-top: 6rem;
    position: relative;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
}

.footer {
    background: linear-gradient(135deg, #000000 0%, #0A0A0A 100%);
    border-top: 1px solid rgba(26, 115, 255, 0.2);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-logo {
    margin-bottom: 0.25rem;
}

.footer-logo img {
    height: 180px;
    width: auto;
    display: block;
    margin-top: -65px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.7));
}

.footer-section p {
    margin-top: 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 4px 0;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3B82F6;
    text-decoration: underline;
}

.social-media-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-media-icons .social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.social-media-icons .social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-media-icons .social-icon[title="WhatsApp"] {
    background: #25D366;
    border-color: #25D366;
}

.social-media-icons .social-icon[title="WhatsApp"]:hover {
    background: #20BA5A;
    border-color: #20BA5A;
}

.social-media-icons .social-icon[title="LinkedIn"] {
    background: #0077B5;
    border-color: #0077B5;
}

.social-media-icons .social-icon[title="LinkedIn"]:hover {
    background: #005885;
    border-color: #005885;
}

.social-media-icons .social-icon[title="Instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #dc2743;
}

.social-media-icons .social-icon[title="Instagram"]:hover {
    background: linear-gradient(45deg, #e0852a 0%, #d55a2d 25%, #c91e34 50%, #b91c57 75%, #a91579 100%);
    border-color: #c91e34;
}

.social-media-icons .social-icon[title="Facebook"] {
    background: #1877F2;
    border-color: #1877F2;
}

.social-media-icons .social-icon[title="Facebook"]:hover {
    background: #1464D0;
    border-color: #1464D0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* GitHub Section */
.github-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    padding: 4rem 0;
    border-top: 2px solid rgba(26, 115, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.github-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(26, 115, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 225, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.github-card {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(26, 115, 255, 0.2);
    border: 2px solid rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.github-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(26, 115, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: githubShine 3s infinite;
}

@keyframes githubShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.github-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(26, 115, 255, 0.4);
    border-color: rgba(26, 115, 255, 0.6);
}

.github-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 115, 255, 0.2) 0%, rgba(0, 225, 255, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(26, 115, 255, 0.3);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.github-icon i {
    font-size: 2.5rem;
    color: #ffffff;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.github-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.github-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.github-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.github-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(26, 115, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.github-btn::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;
}

.github-btn:hover::before {
    left: 100%;
}

.github-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(26, 115, 255, 0.6), 0 0 40px rgba(0, 225, 255, 0.4);
}

.github-btn i:first-child {
    font-size: 1.3rem;
}

.github-btn i:last-child {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.github-btn:hover i:last-child {
    transform: translateX(5px);
}

/* Responsive GitHub Section */
@media (max-width: 768px) {
    .github-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
    }
    
    .github-icon {
        width: 70px;
        height: 70px;
    }
    
    .github-icon i {
        font-size: 2rem;
    }
    
    .github-content h3 {
        font-size: 1.5rem;
    }
    
    .github-content p {
        font-size: 1rem;
    }
    
    .github-btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
    }
}

/* Section */
.section {
    padding: 7rem 0;
    position: relative;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.section:nth-child(even) {
    background: var(--bg-color);
}

.section:nth-child(odd) {
    background: var(--bg-light);
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
}

.section-title {
    text-align: center;
    font-size: 3.8rem;
    margin-bottom: 2rem;
    color: var(--text-light) !important;
    font-weight: 900;
    letter-spacing: -3px;
    position: relative;
    display: inline-block;
    width: 100%;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(26, 115, 255, 0.6), 0 4px 12px rgba(26, 115, 255, 0.4);
    animation: expandLine 0.8s ease 0.5s both;
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 120px;
        opacity: 1;
    }
}

.section-title,
.section-subtitle {
    color: var(--text-light) !important;
}

.card h2,
.card h3,
.card h4 {
    color: var(--text-light) !important;
}

.section-title::after {
    background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
    box-shadow: 0 0 10px rgba(26, 115, 255, 0.5);
}

.section-subtitle {
    text-align: center;
    color: #cbd5e1;
    margin-bottom: 5rem;
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 3rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 7rem 0;
}

.average-rating-container {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.average-rating-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(96, 165, 250, 0.1) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 2.5rem 4rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.average-rating-value {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.average-rating-stars {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.average-rating-count {
    color: #9ca3af;
    font-size: 1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.review-rating {
    color: #FFD700;
    font-size: 0.9rem;
}

.review-date {
    color: #9ca3af;
    font-size: 0.85rem;
    white-space: nowrap;
}

.review-text {
    color: #d1d5db;
    line-height: 1.7;
    font-size: 1rem;
}

.no-reviews {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #9ca3af;
    font-size: 1.1rem;
}

.submit-review-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.submit-review-title {
    text-align: center;
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.review-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.review-form label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
}

.review-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.review-form .form-control:focus {
    outline: none;
    border-color: #3B82F6;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.review-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input .star-label {
    font-size: 2rem;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.rating-input .star-label:hover {
    transform: scale(1.15);
}

.rating-input .star-label i {
    transition: all 0.2s ease;
}

/* When star is checked, make it and all previous stars (visually) yellow */
.rating-input input[type="radio"]:checked + .star-label {
    color: #FFD700 !important;
}

/* For reverse order: when star5 is checked, all stars should be yellow */
.rating-input input[type="radio"]#star5:checked + .star-label,
.rating-input input[type="radio"]#star5:checked ~ input[type="radio"] + .star-label {
    color: #FFD700 !important;
}

/* When star4 is checked, star4 and star5 should be yellow */
.rating-input input[type="radio"]#star4:checked + .star-label,
.rating-input input[type="radio"]#star4:checked ~ input[type="radio"] + .star-label {
    color: #FFD700 !important;
}

/* When star3 is checked, star3, star4, and star5 should be yellow */
.rating-input input[type="radio"]#star3:checked + .star-label,
.rating-input input[type="radio"]#star3:checked ~ input[type="radio"] + .star-label {
    color: #FFD700 !important;
}

/* When star2 is checked, star2, star3, star4, and star5 should be yellow */
.rating-input input[type="radio"]#star2:checked + .star-label,
.rating-input input[type="radio"]#star2:checked ~ input[type="radio"] + .star-label {
    color: #FFD700 !important;
}

/* When star1 is checked, all stars should be yellow */
.rating-input input[type="radio"]#star1:checked + .star-label,
.rating-input input[type="radio"]#star1:checked ~ input[type="radio"] + .star-label {
    color: #FFD700 !important;
}

.review-message {
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.review-message.success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #4ade80;
    display: block;
}

.review-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #f87171;
    display: block;
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 4rem 0;
    }
    
    .average-rating-box {
        padding: 2rem 2.5rem;
    }
    
    .average-rating-value {
        font-size: 3rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .submit-review-container {
        padding: 2rem;
    }
    
    .submit-review-title {
        font-size: 1.5rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.floating-btn::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;
}

.floating-btn:hover::before {
    width: 100px;
    height: 100px;
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #20BA5A;
}

.email-btn {
    background: #EF4444;
}

.email-btn:hover {
    background: #DC2626;
}

.phone-btn {
    background: var(--success-color);
}

.phone-btn:hover {
    background: #0D9668;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: absolute;
        right: 0;
    }

    .nav-brand {
        position: absolute;
        left: 0;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        justify-content: flex-start;
        transform: none !important;
        z-index: 999;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 0.75rem 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .nav-menu a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        width: 100%;
        text-align: center;
    }
    
    .nav-mobile-auth {
        display: block;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-mobile-auth a {
        width: auto;
        margin: 0 auto;
    }
    
    #servicesDropdown {
        position: static !important;
        transform: none !important;
        left: auto !important;
        margin-top: 0.5rem;
        margin-left: auto;
        margin-right: auto;
        display: none;
        width: 90%;
    }
    
    #servicesDropdown.active {
        display: block;
    }
    
    .nav-auth-buttons {
        display: none;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .floating-contact-buttons {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .theme-toggle {
        width: 45px;
        height: 45px;
        margin: 0 auto;
    }

    .theme-toggle i {
        font-size: 1.1rem;
    }

    [data-theme="dark"] .nav-menu {
        background: var(--bg-color);
    }
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.badge-success {
    background: rgba(0, 225, 255, 0.2);
    color: #86efac;
    border: 1px solid rgba(0, 225, 255, 0.4);
    backdrop-filter: blur(10px);
}

.badge-warning {
    background: rgba(0, 225, 255, 0.2);
    color: #fdba74;
    border: 1px solid rgba(0, 225, 255, 0.4);
    backdrop-filter: blur(10px);
}

.badge-danger {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.4);
    backdrop-filter: blur(10px);
}

.badge-info {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    border: 1px solid rgba(26, 115, 255, 0.4);
    backdrop-filter: blur(10px);
}

/* Additional Professional Styles */
.service-card-body {
    padding: 2rem;
}

.service-card h3 {
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card .price {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-success);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1.25rem 0;
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Table Improvements */
.table {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.table th {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: var(--text-color);
}

/* Admin table headers - black text for white/light backgrounds */
.admin-table-header {
    color: #1a1a1a !important;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.5px !important;
}

.table tr {
    transition: all 0.2s ease;
}

.table tr:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    transform: scale(1.01);
}

.table tr:hover td {
    color: #1a1a1a !important;
}

/* Table styles already applied above - dark mode is default */

/* Theme Toggle Button */
.theme-toggle {
    background: var(--bg-color) !important;
    border: 2px solid var(--border-color) !important;
    border-radius: 50px !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: var(--shadow) !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 10 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.theme-toggle i {
    font-size: 1.25rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    pointer-events: none;
}

.theme-toggle .fa-sun {
    position: absolute;
    opacity: 0;
    transform: rotate(90deg);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-toggle .fa-moon {
    position: absolute;
    opacity: 1;
    transform: rotate(0deg);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Dark mode is default - all styles already applied above */
#registerDropdown {
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(26, 115, 255, 0.3);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

#registerDropdown a {
    color: var(--text-color);
}

#registerDropdown a:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

/* Graph Cards for Why Choose Us Section */
.graph-card {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(0, 0, 0, 0.9) 100%);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(26, 115, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.graph-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 115, 255, 0.1) 0%, rgba(0, 225, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.graph-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(26, 115, 255, 0.4), 0 0 30px rgba(0, 225, 255, 0.3);
    border-color: rgba(26, 115, 255, 0.5);
}

.graph-card:hover::before {
    opacity: 1;
}

.graph-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    z-index: 1;
}

.circular-chart {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: rgba(26, 115, 255, 0.1);
    stroke-width: 3;
}

.circle {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 1.5s ease-in-out;
    animation: drawCircle 2s ease-in-out;
}

.graph-card:nth-child(1) .circle {
    stroke: #1A73FF;
}

.graph-card:nth-child(2) .circle {
    stroke: #00E1FF;
}

.graph-card:nth-child(3) .circle {
    stroke: #10b981;
}

@keyframes drawCircle {
    from {
        stroke-dasharray: 0, 100;
    }
}

.graph-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 2;
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.graph-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(26, 115, 255, 0.2) 0%, rgba(0, 225, 255, 0.2) 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 1;
    position: relative;
}

.graph-icon i {
    font-size: 2rem;
    color: #ffffff;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.graph-card:nth-child(1) .graph-icon {
    background: linear-gradient(135deg, rgba(26, 115, 255, 0.3) 0%, rgba(26, 115, 255, 0.1) 100%);
}

.graph-card:nth-child(2) .graph-icon {
    background: linear-gradient(135deg, rgba(0, 225, 255, 0.3) 0%, rgba(0, 225, 255, 0.1) 100%);
}

.graph-card:nth-child(3) .graph-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.graph-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 1;
    position: relative;
}

.graph-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
    z-index: 1;
    position: relative;
}

.graph-card:hover .graph-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(26, 115, 255, 0.4);
}

.graph-card:hover .graph-value {
    transform: translate(-50%, -50%) scale(1.1);
    text-shadow: 0 6px 16px rgba(26, 115, 255, 0.6);
}

/* Feature Cards for Why Choose Our Services */
.feature-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 2px solid;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(26, 115, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon-circle {
    transform: scale(1.1);
}

.feature-card-blue {
    border-color: #3B82F6;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(5, 5, 5, 0.3) 100%);
}

.feature-card-blue:hover {
    border-color: #4A9AFF;
    box-shadow: 0 12px 32px rgba(26, 115, 255, 0.4), 0 0 20px rgba(26, 115, 255, 0.2);
}

.feature-card-blue .feature-icon-circle {
    background: linear-gradient(135deg, #1A73FF 0%, #4A9AFF 100%);
    box-shadow: 0 4px 16px rgba(26, 115, 255, 0.5);
}

.feature-card-pink {
    border-color: #00E1FF;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(5, 5, 5, 0.3) 100%);
}

.feature-card-pink:hover {
    border-color: #f472b6;
    box-shadow: 0 12px 32px rgba(0, 225, 255, 0.4), 0 0 20px rgba(0, 225, 255, 0.2);
}

.feature-card-pink .feature-icon-circle {
    background: linear-gradient(135deg, #00E1FF 0%, #f472b6 100%);
    box-shadow: 0 4px 16px rgba(0, 225, 255, 0.5);
}

.feature-card-green {
    border-color: #00E1FF;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(5, 5, 5, 0.3) 100%);
}

.feature-card-green:hover {
    border-color: #33E8FF;
    box-shadow: 0 12px 32px rgba(0, 225, 255, 0.4), 0 0 20px rgba(0, 225, 255, 0.2);
}

.feature-card-green .feature-icon-circle {
    background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 100%);
    box-shadow: 0 4px 16px rgba(0, 225, 255, 0.5);
}

.feature-card-orange {
    border-color: #00E1FF;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(5, 5, 5, 0.3) 100%);
}

.feature-card-orange:hover {
    border-color: #33E8FF;
    box-shadow: 0 12px 32px rgba(0, 225, 255, 0.4), 0 0 20px rgba(0, 225, 255, 0.2);
}

.feature-card-orange .feature-icon-circle {
    background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 100%);
    box-shadow: 0 4px 16px rgba(0, 225, 255, 0.5);
}

.feature-icon-circle i {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.feature-card-blue .feature-icon-circle i {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(26, 115, 255, 0.8), 0 0 20px rgba(26, 115, 255, 0.5);
}

.feature-card-pink .feature-icon-circle i {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 225, 255, 0.8), 0 0 20px rgba(0, 225, 255, 0.5);
}

.feature-card-green .feature-icon-circle i {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 225, 255, 0.8), 0 0 20px rgba(0, 225, 255, 0.5);
}

.feature-card-orange .feature-icon-circle i {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 225, 255, 0.8), 0 0 20px rgba(0, 225, 255, 0.5);
}

.feature-card:hover .feature-icon-circle i {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 15px currentColor);
}

.feature-card-blue:hover .feature-icon-circle i {
    text-shadow: 0 0 15px rgba(26, 115, 255, 1), 0 0 25px rgba(26, 115, 255, 0.7), 0 0 35px rgba(26, 115, 255, 0.4);
}

.feature-card-pink:hover .feature-icon-circle i {
    text-shadow: 0 0 15px rgba(0, 225, 255, 1), 0 0 25px rgba(0, 225, 255, 0.7), 0 0 35px rgba(0, 225, 255, 0.4);
}

.feature-card-green:hover .feature-icon-circle i {
    text-shadow: 0 0 15px rgba(0, 225, 255, 1), 0 0 25px rgba(0, 225, 255, 0.7), 0 0 35px rgba(0, 225, 255, 0.4);
}

.feature-card-orange:hover .feature-icon-circle i {
    text-shadow: 0 0 15px rgba(0, 225, 255, 1), 0 0 25px rgba(0, 225, 255, 0.7), 0 0 35px rgba(0, 225, 255, 0.4);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}


/* Ready to Get Started CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(26, 115, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: #3B82F6;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(26, 115, 255, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #0056CC;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(26, 115, 255, 0.5);
}

/* Responsive CTA Section */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* About Page Cards */
.about-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-card {
    padding: 2rem 1.5rem !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* New Icon Wrapper Classes - Same as Team Section */
.about-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 50%, #60A5FA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4), 0 0 20px rgba(96, 165, 250, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B82F6, #60A5FA, #3B82F6);
    background-size: 200% 200%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientRotate 3s linear infinite;
}

.about-card:hover .about-icon-wrapper {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5), 0 0 30px rgba(96, 165, 250, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.about-card:hover .about-icon-wrapper::before {
    opacity: 1;
}

.about-icon-center {
    font-size: 2.8rem;
    color: #ffffff;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

.about-icon-blue {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 50%, #60A5FA 100%);
}

.about-icon-green {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 50%, #60A5FA 100%);
}

.about-icon-purple {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 50%, #60A5FA 100%);
}

.about-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.about-card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    margin: 0;
}

/* Responsive About Cards */
@media (max-width: 768px) {
    .about-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-card {
        padding: 1.5rem 1rem !important;
    }
    
    .about-icon-wrapper {
        width: 85px;
        height: 85px;
        margin-bottom: 1.5rem;
    }
    
    .about-icon-center {
        font-size: 2.3rem;
    }
    
    .about-card-title {
        font-size: 1.25rem;
    }
    
    .about-card-text {
        font-size: 0.9rem;
    }
}

/* Our Story Section */
.our-story-section {
    margin: 3rem 0;
}

.our-story-card {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 115, 255, 0.1) 50%, rgba(0, 225, 255, 0.1) 100%);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    box-shadow: 0 10px 30px rgba(26, 115, 255, 0.2), 0 1px 8px rgba(0, 225, 255, 0.2);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.our-story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 115, 255, 0.1) 0%, rgba(0, 225, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.our-story-card:hover::before {
    opacity: 1;
}

.our-story-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-align: justify;
    position: relative;
    z-index: 1;
}

/* Responsive Our Story */
@media (max-width: 768px) {
    .our-story-section {
        margin: 2rem 0;
    }
    
    .our-story-card {
        padding: 1.5rem 1.25rem;
        max-width: 100%;
    }
    
    .our-story-text {
        font-size: 0.9rem;
        line-height: 1.7;
        text-align: left;
    }
}

/* Our Team Section */
.our-team-section {
    margin: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(26, 115, 255, 0.1);
    border: 1px solid rgba(26, 115, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 115, 255, 0.15) 0%, rgba(0, 225, 255, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.team-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 115, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(26, 115, 255, 0.25), 0 10px 25px rgba(0, 225, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(26, 115, 255, 0.4);
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover::after {
    opacity: 1;
}

.team-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 50%, #60A5FA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4), 0 0 20px rgba(96, 165, 250, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B82F6, #60A5FA, #3B82F6);
    background-size: 200% 200%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientRotate 3s linear infinite;
}

.team-card:hover .team-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5), 0 0 30px rgba(96, 165, 250, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.team-card:hover .team-icon::before {
    opacity: 1;
}

.team-icon i {
    font-size: 2.8rem;
    color: #ffffff;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

.team-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.team-role {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 0.9rem;
    opacity: 0.9;
}

.team-quote {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
    margin: 0;
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    background: rgba(5, 5, 5, 0.5);
    border-radius: 12px;
    border-left: 3px solid rgba(59, 130, 246, 0.6);
    text-align: left;
    transition: all 0.3s ease;
}

.team-card:hover .team-quote {
    background: rgba(5, 5, 5, 0.7);
    border-left-color: rgba(59, 130, 246, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.division-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.division-services-list li {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.8;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.division-services-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #60A5FA;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.division-services-list li:hover {
    color: #ffffff;
    padding-left: 1.75rem;
}

.division-services-list li:hover::before {
    color: #3B82F6;
    left: 0.25rem;
}

/* Responsive Team Section */
@media (max-width: 768px) {
    .our-team-section {
        margin: 3rem 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .team-card {
        padding: 2rem 1.5rem;
    }
    
    .team-icon {
        width: 85px;
        height: 85px;
        margin-bottom: 1.5rem;
    }
    
    .team-icon i {
        font-size: 2.3rem;
    }
    
    .team-name {
        font-size: 1.4rem;
    }
    
    .team-role {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .team-quote {
        font-size: 0.9rem;
        padding: 1.25rem;
    }
}

/* Core Division Cards - Same as Team Cards */
.division-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.division-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(96, 165, 250, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.division-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.division-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25), 0 10px 25px rgba(96, 165, 250, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.4);
}

.division-card:hover::before {
    opacity: 1;
}

.division-card:hover::after {
    opacity: 1;
}

.division-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 50%, #60A5FA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4), 0 0 20px rgba(96, 165, 250, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.division-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B82F6, #60A5FA, #3B82F6);
    background-size: 200% 200%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientRotate 3s linear infinite;
}

.division-card:hover .division-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5), 0 0 30px rgba(96, 165, 250, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.division-card:hover .division-icon::before {
    opacity: 1;
}

.division-icon i {
    font-size: 2.8rem;
    color: #ffffff;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

.division-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.division-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
    margin: 0 0 2rem 0;
    position: relative;
    z-index: 1;
}

.division-services {
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.division-service-item {
    padding: 1rem 1.25rem;
    border-left: 3px solid rgba(59, 130, 246, 0.6);
    background: rgba(5, 5, 5, 0.5);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    text-align: left;
}

.division-service-item:last-child {
    margin-bottom: 0;
}

.division-service-item:hover {
    background: rgba(5, 5, 5, 0.7);
    border-left-color: rgba(59, 130, 246, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateX(5px);
}

.division-service-item span {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    display: block;
}

.division-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    display: inline-block;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #3B82F6;
    color: white;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.division-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
    background: #2563EB;
}

.team-card .division-btn {
    width: 100%;
    text-align: center;
}

/* Responsive Division Cards */
@media (max-width: 768px) {
    .division-card {
        padding: 2rem 1.5rem;
    }
    
    .division-icon {
        width: 85px;
        height: 85px;
        margin-bottom: 1.5rem;
    }
    
    .division-icon i {
        font-size: 2.3rem;
    }
    
    .division-title {
        font-size: 1.4rem;
    }
    
    .division-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .division-service-item {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }
}

/* Our Values Section */
.values-section {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.values-card {
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.values-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top center, rgba(26, 115, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.values-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.values-icon i {
    font-size: 3rem;
    color: #ffffff;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.values-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.values-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 1;
}

.journey-section {
    margin: 4rem 0;
}

/* Responsive Values Section */
@media (max-width: 768px) {
    .values-card {
        padding: 2rem;
    }
    
    .values-icon {
        width: 60px;
        height: 60px;
    }
    
    .values-icon i {
        font-size: 2.5rem;
    }
    
    .values-title {
        font-size: 1.5rem;
    }
    
    .values-text {
        font-size: 1rem;
    }
}

/* Responsive Graph Cards */
@media (max-width: 768px) {
    .graph-container {
        width: 150px;
        height: 150px;
    }
    
    .graph-value {
        font-size: 2rem;
    }
    
    .graph-icon {
        width: 60px;
        height: 60px;
    }
    
    .graph-icon i {
        font-size: 1.5rem;
    }
    
    .graph-title {
        font-size: 1.3rem;
    }
}

.nav-menu a::after {
    background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
}

