/**
 * CRG Wealth - Finoza Style Design
 * Modern, Clean, Professional
 * Primary: #0c3b43 (Dark Teal) | Accent: #2ace79 (Vibrant Green)
 */

:root {
    /* Finoza Color Scheme - Green & Dark Teal */
    --primary-color: #0c3b43;
    --primary-dark: #081f24;
    --primary-light: #0f4d58;
    --accent-color: #2ace79;
    --accent-dark: #22a865;
    --accent-light: #3ae68f;
    --green: #2ace79;
    --green-dark: #22a865;
    --green-light: #3ae68f;
    --green-glow: #4af0a0;
    
    /* Secondary Colors */
    --teal: #0c3b43;
    --teal-dark: #081f24;
    --teal-light: #0f4d58;
    
    /* Neutral Colors */
    --dark-color: #0c3b43;
    --light-color: #f8f9fa;
    --text-color: #1a1a1a;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --border-color: #e5e7eb;
    --white: #ffffff;
    
    /* Background Colors - Clean White/Light Gray */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f3f4f6;
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-2xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows - Orisys.in Style */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Dark Mode - Finoza Style */
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #f8f9fa;
        --text-muted: #2ace79;
        --text-light: #22a865;
        --bg-primary: #0c3b43;
        --bg-secondary: #081f24;
        --bg-tertiary: #0f4d58;
        --border-color: #1a5a66;
    }
}

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

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* Navigation - Orisys.in Clean Style */
.navbar {
    padding: 1.5rem 0;
    background: var(--bg-primary) !important;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
}

.navbar .navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.navbar .nav-link {
    color: var(--text-color) !important;
    font-weight: var(--font-weight-medium);
    padding: 0.5rem 1rem !important;
    transition: all var(--transition-fast);
    position: relative;
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
    margin: 0 0.25rem;
}

.navbar .nav-link:hover {
    color: var(--accent-color) !important;
    background: rgba(42, 206, 121, 0.1);
}

.navbar .nav-link.active {
    color: var(--accent-color) !important;
    background: rgba(42, 206, 121, 0.15);
}

/* Buttons - Orisys.in Style */
.btn {
    font-weight: var(--font-weight-medium);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    border: none;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    line-height: 1.5;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-accent:hover {
    background: var(--accent-dark);
    color: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

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

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Gradient Utility Classes */
.bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%) !important;
}

.bg-accent-gradient {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--green-light) 50%, var(--green-glow) 100%) !important;
}

/* Hero Section - Modern Attractive Design */
.hero-section {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    animation: float 20s infinite ease-in-out;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

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

.min-vh-75 {
    min-height: 75vh;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(42, 206, 121, 0.15);
    color: var(--accent-color);
    border: 1px solid rgba(42, 206, 121, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.2s both;
    box-shadow: 0 2px 8px rgba(42, 206, 121, 0.2);
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-color);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.text-gradient {
    color: var(--accent-color);
    display: inline-block;
}

.hero-description {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-weight: var(--font-weight-normal);
    line-height: 1.8;
    max-width: 580px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-description strong {
    color: var(--accent-color);
    font-weight: var(--font-weight-semibold);
    text-shadow: 0 1px 2px rgba(42, 206, 121, 0.2);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-color);
    font-weight: var(--font-weight-medium);
}

.hero-feature-item i {
    color: var(--accent-color);
    font-size: 1.125rem;
    text-shadow: 0 1px 3px rgba(42, 206, 121, 0.3);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-btn-primary,
.hero-btn-secondary {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-md);
}

.hero-btn-primary {
    background: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
}

.hero-btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.hero-btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero-btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-stats-mini {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.stat-mini {
    display: flex;
    flex-direction: column;
}

.stat-mini-number {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    line-height: 1;
}

.stat-mini-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Hero Visual Container */
.hero-visual-container {
    position: relative;
    height: 500px;
    animation: fadeIn 1s ease-out 0.8s both;
}

.hero-main-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hero-visual-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(12, 59, 67, 0.3);
    animation: pulse 3s infinite ease-in-out;
}

.hero-visual-inner {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-visual-inner i {
    font-size: 5rem;
    color: var(--primary-color);
    animation: rotate 20s linear infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 20px 60px rgba(12, 59, 67, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 25px 70px rgba(12, 59, 67, 0.4);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    animation: floatCard 6s infinite ease-in-out;
    transition: transform var(--transition-base);
}

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

.hero-card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hero-card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.hero-card-1 .hero-card-icon {
    background: rgba(42, 206, 121, 0.1);
    color: var(--accent-color);
}

.hero-card-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.hero-card-2 .hero-card-icon {
    background: rgba(12, 59, 67, 0.1);
    color: var(--primary-color);
}

.hero-card-3 {
    top: 60%;
    right: 5%;
    animation-delay: 4s;
}

.hero-card-3 .hero-card-icon {
    background: rgba(42, 206, 121, 0.1);
    color: var(--accent-color);
}

.hero-card-content h6 {
    font-size: 0.9375rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.hero-card-content p {
    font-size: 0.875rem;
    margin: 0;
    font-weight: var(--font-weight-medium);
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

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

/* Responsive Hero Section */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 60px 0 60px;
        min-height: auto;
    }
    
    .hero-visual-container {
        height: 400px;
        margin-top: 3rem;
    }
    
    .hero-visual-circle {
        width: 250px;
        height: 250px;
    }
    
    .hero-visual-inner {
        width: 160px;
        height: 160px;
    }
    
    .hero-visual-inner i {
        font-size: 4rem;
    }
    
    .hero-card {
        padding: 1rem;
    }
    
    .hero-card-1 {
        top: 5%;
        right: 5%;
    }
    
    .hero-card-2 {
        bottom: 15%;
        left: 0;
    }
    
    .hero-card-3 {
        top: 50%;
        right: 0;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 50px 0 50px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
    
    .hero-visual-container {
        height: 300px;
    }
    
    .hero-visual-circle {
        width: 200px;
        height: 200px;
    }
    
    .hero-visual-inner {
        width: 130px;
        height: 130px;
    }
    
    .hero-visual-inner i {
        font-size: 3rem;
    }
    
    .hero-card {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    .hero-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stats-mini {
        gap: 1.5rem;
    }
}

/* Page Header */
.page-header {
    background: var(--bg-secondary);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
}

.page-header h1 {
    color: var(--text-color);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
}

.page-header .lead {
    color: var(--text-muted);
    font-size: clamp(1rem, 2vw, 1.125rem);
}

/* ============================================
   ABOUT PAGE - Modern Attractive Design
   ============================================ */

/* Enhanced Page Header */
.page-header-modern {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0c3b43 0%, #0f4d58 25%, #2ace79 75%, #3ae68f 100%);
    overflow: hidden;
    color: white;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(42, 206, 121, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: gradientShift 8s ease infinite;
}

.page-header-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(255, 255, 255, 0.03) 50px,
            rgba(255, 255, 255, 0.03) 100px
        );
    animation: patternMove 20s linear infinite;
    pointer-events: none;
}

.page-header-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(12, 59, 67, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(42, 206, 121, 0.3) 0%, transparent 40%);
    pointer-events: none;
    animation: pulse 6s ease-in-out infinite;
}

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

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.page-header-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
    animation: badgeFloat 3s ease-in-out infinite;
    width: auto;
    max-width: fit-content;
}

.page-header-badge:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.page-header-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: var(--font-weight-extrabold);
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.2),
        0 4px 20px rgba(0, 0, 0, 0.1),
        0 0 30px rgba(255, 255, 255, 0.1);
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
}

.page-header-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 2px;
    animation: titleUnderline 2s ease-in-out infinite;
}

@keyframes titleUnderline {
    0%, 100% {
        width: 80px;
        opacity: 0.6;
    }
    50% {
        width: 120px;
        opacity: 1;
    }
}

.page-header-lead {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: var(--font-weight-medium);
}

/* Page Header with Image (for blog posts) */
.page-header-with-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(12, 59, 67, 0.85) 0%, rgba(12, 59, 67, 0.75) 100%);
    z-index: 1;
}

.page-header-with-image .page-header-bg {
    z-index: 2;
}

.page-header-with-image .container {
    position: relative;
    z-index: 3;
}

/* Page Header Icon Wrapper (for service detail) */
.page-header-icon-wrapper {
    margin-bottom: 2rem;
}

.page-header-icon {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-base);
}

.page-header-icon-wrapper:hover .page-header-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* Page Header Meta (for blog posts) */
.page-header-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.page-header-meta span {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-header-meta i {
    opacity: 0.9;
}

/* About Hero Section */
.about-hero-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-primary);
}

.about-hero-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.about-hero-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(12, 59, 67, 0.1) 0%, rgba(42, 206, 121, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 auto 2rem;
}

.about-hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-hero-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Mission, Vision, Values Cards */
.mission-vision-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    text-align: center;
    height: 100%;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.mission-vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.mission-vision-card:hover::before {
    transform: scaleX(1);
}

.mvv-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(42, 206, 121, 0.3);
    transition: all var(--transition-base);
}

.mission-vision-card:nth-child(2) .mvv-icon {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--green-light) 50%, var(--green-glow) 100%);
    box-shadow: 0 8px 25px rgba(42, 206, 121, 0.3);
}

.mission-vision-card:nth-child(3) .mvv-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    box-shadow: 0 8px 25px rgba(12, 59, 67, 0.2);
}

.mission-vision-card:hover .mvv-icon {
    transform: scale(1.1) rotate(5deg);
}

.mvv-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    margin-bottom: 1rem;
}

.mvv-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
    height: 100%;
}

.why-choose-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.why-choose-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(12, 59, 67, 0.1) 0%, rgba(42, 206, 121, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.why-choose-item:hover .why-choose-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.why-choose-content h5 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.why-choose-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Team Section Modern */
.team-section-modern {
    position: relative;
}

.team-card-modern {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.team-card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.team-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.team-card-modern:hover .team-card-image {
    transform: scale(1.1);
}

.team-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
}

.team-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(12, 59, 67, 0.9) 0%, rgba(42, 206, 121, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.team-card-modern:hover .team-card-overlay {
    opacity: 1;
}

.team-card-social {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all var(--transition-base);
}

.team-card-social:hover {
    transform: scale(1.1);
    background: var(--accent-color);
    color: white;
}

.team-card-body {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-card-name {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.team-card-designation {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-card-bio {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* About Stats Section */
.about-stats-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
}

.about-stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.about-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.about-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(12, 59, 67, 0.1) 0%, rgba(42, 206, 121, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0 auto 1rem;
    transition: all var(--transition-base);
}

.about-stat-item:hover .about-stat-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: var(--font-weight-semibold);
}

/* CTA Section Modern */
.cta-section-modern {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-card-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.cta-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Responsive About Page */
@media (max-width: 991.98px) {
    .page-header-modern {
        padding: 100px 0 60px;
    }
    
    .about-hero-card {
        padding: 2rem;
    }
    
    .mission-vision-card {
        padding: 2rem;
    }
    
    .why-choose-item {
        padding: 1.5rem;
    }
    
    .team-card-image-wrapper {
        height: 280px;
    }
}

@media (max-width: 767.98px) {
    .page-header-modern {
        padding: 80px 0 50px;
    }
    
    .about-hero-card {
        padding: 1.5rem;
    }
    
    .about-hero-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .mission-vision-card {
        padding: 1.5rem;
    }
    
    .mvv-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .why-choose-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .why-choose-icon {
        margin: 0 auto;
    }
    
    .team-card-image-wrapper {
        height: 250px;
    }
    
    .cta-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Sections */
.section {
    padding: var(--spacing-xl) 0;
}

.section-sm {
    padding: var(--spacing-lg) 0;
}

.section-lg {
    padding: var(--spacing-2xl) 0;
}

.bg-light {
    background: var(--bg-secondary);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(12, 59, 67, 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-title h2 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-title p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Cards - Orisys.in Clean Style */
.card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    overflow: hidden;
    height: 100%;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.card-body {
    padding: 2rem;
}

.service-card {
    text-align: center;
    padding: 2.5rem 2rem;
}

.service-card .card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.service-card .card-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card .card-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-card .card-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.feature-card h5 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-extrabold);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: var(--font-weight-medium);
}

/* ============================================
   STATS SECTION - Modern Attractive Design
   ============================================ */

.stats-section-modern {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    overflow: hidden;
}

.stats-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(12, 59, 67, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(42, 206, 121, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.stat-card-modern {
    position: relative;
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.stat-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.stat-card-modern:hover::before {
    transform: scaleX(1);
}

.stat-card-1 .stat-card-icon {
    background: linear-gradient(135deg, rgba(12, 59, 67, 0.1) 0%, rgba(12, 59, 67, 0.05) 100%);
    color: var(--primary-color);
}

.stat-card-2 .stat-card-icon {
    background: linear-gradient(135deg, rgba(42, 206, 121, 0.1) 0%, rgba(42, 206, 121, 0.05) 100%);
    color: var(--accent-color);
}

.stat-card-3 .stat-card-icon {
    background: linear-gradient(135deg, rgba(12, 59, 67, 0.1) 0%, rgba(12, 59, 67, 0.05) 100%);
    color: var(--primary-color);
}

.stat-card-4 .stat-card-icon {
    background: linear-gradient(135deg, rgba(42, 206, 121, 0.1) 0%, rgba(42, 206, 121, 0.05) 100%);
    color: var(--accent-color);
}

.stat-card-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

.stat-card-modern:hover .stat-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-card-content {
    position: relative;
    z-index: 1;
}

.stat-number-modern {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: var(--font-weight-extrabold);
    color: var(--accent-color);
    line-height: 1.1;
    margin-bottom: 0.75rem;
    display: block;
}

.stat-label-modern {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.stat-card-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12, 59, 67, 0.05) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.stat-card-modern:hover .stat-card-decoration {
    opacity: 1;
}

/* Responsive Stats Section */
@media (max-width: 991.98px) {
    .stats-section-modern {
        padding: 60px 0;
    }
    
    .stat-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .stat-card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .stats-section-modern {
        padding: 50px 0;
    }
    
    .stat-card-modern {
        padding: 1.5rem 1rem;
    }
    
    .stat-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .stat-number-modern {
        font-size: 2rem;
    }
    
    .stat-label-modern {
        font-size: 0.875rem;
    }
}

/* ============================================
   SERVICES SECTION - Modern Attractive Design
   ============================================ */

.services-section-modern {
    position: relative;
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    overflow: hidden;
}

.services-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 30%, rgba(12, 59, 67, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(42, 206, 121, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-title-modern {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.badge-modern {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, rgba(12, 59, 67, 0.1) 0%, rgba(42, 206, 121, 0.1) 100%);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(12, 59, 67, 0.1);
}

.section-title-heading {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.service-card-modern {
    position: relative;
    background: white;
    border-radius: var(--radius-xl);
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    z-index: 2;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-card-header {
    position: relative;
    padding: 2.5rem 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(12, 59, 67, 0.02) 0%, rgba(42, 206, 121, 0.02) 100%);
    text-align: center;
}

.service-card-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.service-card-icon {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 2;
    transition: all var(--transition-base);
    box-shadow: 0 8px 25px rgba(12, 59, 67, 0.2);
}

.service-card-modern:nth-child(2n) .service-card-icon {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    box-shadow: 0 8px 25px rgba(42, 206, 121, 0.2);
}

.service-card-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12, 59, 67, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 1;
}

.service-card-modern:hover .service-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card-modern:hover .service-card-icon-bg {
    opacity: 1;
}

.service-card-body {
    padding: 0 2rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card-footer {
    margin-top: auto;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    transition: all var(--transition-base);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(12, 59, 67, 0.05);
    border: 1px solid rgba(12, 59, 67, 0.1);
}

.service-card-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
    border-color: var(--primary-color);
}

.service-card-link i {
    transition: transform var(--transition-base);
}

.service-card-link:hover i {
    transform: translateX(5px);
}

.service-card-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12, 59, 67, 0.05) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card-modern:hover .service-card-decoration {
    opacity: 1;
}

/* Responsive Services Section */
@media (max-width: 991.98px) {
    .services-section-modern {
        padding: var(--spacing-xl) 0;
    }
    
    .section-title-modern {
        margin-bottom: 3rem;
    }
    
    .service-card-header {
        padding: 2rem 1.5rem 1rem;
    }
    
    .service-card-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .service-card-body {
        padding: 0 1.5rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .services-section-modern {
        padding: var(--spacing-lg) 0;
    }
    
    .section-title-modern {
        margin-bottom: 2.5rem;
    }
    
    .service-card-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .service-card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .service-card-title {
        font-size: 1.25rem;
    }
    
    .service-card-text {
        font-size: 0.9375rem;
    }
    
    .service-card-body {
        padding: 0 1rem 1.5rem;
    }
}

/* Feature Cards Modern Design */
.feature-card-modern {
    padding: 2rem 1.5rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
    height: 100%;
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-base);
}

.feature-card-modern:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Calculator Cards */
.calculator-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.calculator-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.calculator-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-base);
}

.calculator-card:hover .calculator-icon {
    transform: scale(1.1) rotate(5deg);
}

.calculator-card h5 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.calculator-card p {
    margin-bottom: 0;
    font-size: 0.875rem;
}

/* Calculator Tabs */
.calculator-tabs {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2rem;
}

.calculator-tabs .nav-link {
    color: var(--text-muted);
    font-weight: var(--font-weight-medium);
    padding: 1rem 2rem;
    border: none;
    border-bottom: 3px solid transparent;
    transition: all var(--transition-base);
}

.calculator-tabs .nav-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.calculator-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: transparent;
}

/* Calculator Result Card */
.calculator-result-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%);
    border-radius: var(--radius-xl);
    padding: 2rem;
    color: white;
    box-shadow: var(--shadow-lg);
}

.calculator-result-card h5 {
    color: white;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.result-row:last-child {
    border-bottom: none;
}

.result-row span {
    font-size: 1rem;
    opacity: 0.9;
}

.result-row strong {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

/* Blog Cards */
.blog-card {
    overflow: hidden;
}

.blog-card .card-img-top {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card .card-title a {
    color: var(--text-color);
    text-decoration: none;
}

.blog-card .card-title a:hover {
    color: var(--primary-color);
}

.blog-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.blog-meta span {
    margin-right: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer h5 {
    color: white;
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1.5rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-4px);
}

/* Form Controls */
.form-control {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
    background: var(--bg-primary);
    color: var(--text-color);
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(12, 59, 67, 0.1);
}

.form-label {
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid;
    margin-bottom: 1.5rem;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #16a34a;
}

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

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

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

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .section {
        padding: var(--spacing-lg) 0;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   ANIMATIONS - Comprehensive Animation System
   ============================================ */

/* Base Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
}

/* Fade Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale Animations */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Rotate Animations */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Zoom Animations */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomOut {
    from {
        opacity: 0;
        transform: scale(1.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Bounce Animations */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* Flip Animations */
@keyframes flipInX {
    from {
        opacity: 0;
        transform: perspective(400px) rotateX(90deg);
    }
    to {
        opacity: 1;
        transform: perspective(400px) rotateX(0deg);
    }
}

@keyframes flipInY {
    from {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }
    to {
        opacity: 1;
        transform: perspective(400px) rotateY(0deg);
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-down {
    animation: fadeInDown 0.8s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

.scale-up {
    animation: scaleUp 0.8s ease-out;
}

.rotate-in {
    animation: rotateIn 0.8s ease-out;
}

.slide-in-up {
    animation: slideInUp 0.8s ease-out;
}

.slide-in-down {
    animation: slideInDown 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.zoom-in {
    animation: zoomIn 0.6s ease-out;
}

.zoom-out {
    animation: zoomOut 0.6s ease-out;
}

.bounce-in {
    animation: bounceIn 0.8s ease-out;
}

.flip-in-x {
    animation: flipInX 0.8s ease-out;
}

.flip-in-y {
    animation: flipInY 0.8s ease-out;
}

/* Scroll-triggered Animation Classes */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-down {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-down.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

.animate-zoom {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-zoom.animated {
    opacity: 1;
    transform: scale(1);
}

.animate-rotate {
    opacity: 0;
    transform: rotate(-5deg) scale(0.95);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-rotate.animated {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Stagger Animation Delays */
.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

.animate-delay-5 {
    transition-delay: 0.5s;
}

.animate-delay-6 {
    transition-delay: 0.6s;
}

/* Hover Animations */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.hover-scale {
    transition: transform 0.3s ease;
}

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

.hover-rotate {
    transition: transform 0.3s ease;
}

.hover-rotate:hover {
    transform: rotate(5deg);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(12, 59, 67, 0.3);
}

/* Continuous Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

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

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Card Animation Enhancements */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card,
.feature-card,
.testimonial-card,
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.feature-card:hover,
.testimonial-card:hover,
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Button Animations */
.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.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;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Stats Animation */
.stat-item {
    transition: transform 0.3s ease;
}

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

/* Icon Animations */
.card-icon,
.hero-card-icon {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.card:hover .card-icon,
.hero-card:hover .hero-card-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Section Title Animations */
.section-title {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-title.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Animation Adjustments */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   ABOUT US SECTION - Modern Attractive Design
   ============================================ */

.about-section-modern {
    position: relative;
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    overflow: hidden;
}

.about-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(12, 59, 67, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(42, 206, 121, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-content-modern {
    position: relative;
    z-index: 1;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(12, 59, 67, 0.05) 0%, rgba(42, 206, 121, 0.05) 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.about-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(12, 59, 67, 0.2);
}

.about-highlight-text {
    display: flex;
    flex-direction: column;
}

.about-highlight-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-highlight-value {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    line-height: 1;
    margin-top: 0.25rem;
}

.about-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-lead {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-color);
    font-weight: var(--font-weight-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features-list {
    margin-bottom: 2rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.about-feature-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(42, 206, 121, 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.about-feature-content h6 {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.about-feature-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

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

/* About Visual Grid */
.about-visual-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.5rem;
    height: 100%;
}

.about-main-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(12, 59, 67, 0.3);
    transition: transform var(--transition-base);
}

.about-main-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.about-main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(12, 59, 67, 0.4);
}

.about-main-card-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-main-card-content h4 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
    color: white;
}

.about-main-card-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.about-main-card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    grid-column: 1 / -1;
}

.about-mini-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
}

.about-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.about-mini-card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-mini-card-content h6 {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.about-mini-card-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.about-stats-card {
    grid-column: 1 / -1;
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: 2px solid var(--border-color);
    transition: all var(--transition-base);
}

.about-stats-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.about-stats-item {
    text-align: center;
}

.about-stats-number {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-stats-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: var(--font-weight-medium);
}

.about-stats-divider {
    width: 1px;
    height: 60px;
    background: var(--border-color);
}

/* Responsive About Section */
@media (max-width: 991.98px) {
    .about-visual-grid {
        margin-top: 3rem;
    }
    
    .about-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .about-feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .about-feature-icon {
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .about-section-modern {
        padding: var(--spacing-lg) 0;
    }
    
    .about-visual-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .about-main-card {
        padding: 2rem;
    }
    
    .about-main-card-content h4 {
        font-size: 1.5rem;
    }
    
    .about-stats-card {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .about-stats-divider {
        width: 60px;
        height: 1px;
    }
}
