/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure proper section spacing */
section {
    position: relative;
    clear: both;
}

:root {
    /* Color Palette based on reference image */
    --primary-blue: #1e3a8a;
    /* Deep blue for headers, backgrounds */
    --secondary-blue: #3b82f6;
    /* Lighter blue for accents */
    --accent-orange: #f59e0b;
    /* Orange for highlights, buttons */
    --white: #ffffff;
    --light-gray: #f8fafc;
    /* Light gray for card backgrounds */
    --text-dark: #1f2937;
    /* Dark gray for main text */
    --text-light: #6b7280;
    /* Light gray for secondary text */
    --border-color: #e5e7eb;
    /* Light border color */

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 4rem 0;
    --header-height: 70px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    padding-top: 70px;
    /* Compensate for fixed header */
    overflow-x: hidden;
}

/* Client Notification (admin-like) */
.client-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 320px;
    max-width: 500px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
}

.client-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.client-notification-success { border-left: 4px solid #2ecc71; }
.client-notification-error { border-left: 4px solid #e74c3c; }
.client-notification-warning { border-left: 4px solid #f39c12; }
.client-notification-info { border-left: 4px solid #3498db; }

.client-notification .notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.client-notification .notification-content i { font-size: 20px; }
.client-notification-success .notification-content i { color: #2ecc71; }
.client-notification-error .notification-content i { color: #e74c3c; }
.client-notification-warning .notification-content i { color: #f39c12; }
.client-notification-info .notification-content i { color: #3498db; }

.client-notification .notification-content span {
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
}

.client-notification .notification-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #6c757d;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.client-notification .notification-close:hover { color: #343a40; }

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    font-size: 1.2rem;
    /* color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6; */
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
}

.btn-primary:hover {
    background-color: #d97706;
    border-color: #d97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-large {
    padding: 0.6rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    border: 2px solid var(--accent-orange);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    display: grid;
    align-items: center;
}


.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}




.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition);
}

.nav-brand:hover {
    transform: translateY(-1px);
}

.logo-container {
    line-height: 0;
    display: inline-block;
    vertical-align: middle;
}

.logo {
    height: 50px;
    width: 130px;
    display: block;
    line-height: 0;
    object-fit: contain;
    transition: var(--transition);
}

.nav-brand:hover .logo {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text .company-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.brand-text .tagline {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
    margin-left: auto;
}

.nav-menu li:nth-child(6) {
    margin-right: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--transition);
}


.nav-link:hover,
.nav-link.active {
    background-color: var(--primary-blue);
    color: var(--white);
}


.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.hero-text {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}


.title-highlight {
    color: var(--white);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: var(--white);
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}


/* Professional Services Section */
.professional-services {
    padding: var(--section-padding);
    background-color: var(--white);
}

/* Company Overview (About) */
.company-overview {
    padding: var(--section-padding);
    background: #fff;
}

.company-overview .section-header h2 {
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: .5rem;
}

.company-overview .section-header p {
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.overview-content {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 2rem;
}

.overview-text .text-content h3 {
    font-size: 1.4rem;
    color: #111827;
    margin-bottom: .75rem;
}

.overview-text .text-content p {
    color: #475569;
    line-height: 1.7;
}

.highlight-box {
    display: flex;
    gap: 14px;
    align-items: center;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    border-radius: 12px;
    padding: 14px 16px;
    margin-top: 16px;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #003087;
    background: #e8eef9;
}

.highlight-content h4 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: #0f172a;
}

.highlight-content p {
    margin: 0;
    color: #475569;
}

.overview-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.overview-stats .stat-card {
    border: 1px solid #eef0f3;
    border-radius: 12px;
    padding: 14px;
    background: #fff;
}

.overview-stats .stat-icon {
    color: #4b5563;
    margin-bottom: 6px;
}

.overview-stats .stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
}

.overview-stats .stat-label {
    color: #64748b;
    font-size: .9rem;
}

@media (max-width: 992px) {
    .overview-content {
        grid-template-columns: 1fr;
    }
}

/* Mission – Vision – Values (About) */
.mission-vision-values {
    padding: var(--section-padding);
    background: #f9fafb;
}

.mission-vision-values .section-header h2 {
    font-size: 1.75rem;
    color: #0f172a;
}

.mission-vision-values .section-header p {
    color: #64748b;
    max-width: 820px;
    margin: 0 auto 2rem;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.mvv-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.mvv-card .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.mvv-card .card-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #0f172a;
}

.mvv-card .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #e8eef9;
    color: #003087;
}

.mvv-card .card-content p {
    color: #475569;
    line-height: 1.7;
}

.mvv-card.values .values-list {
    display: grid;
    gap: 10px;
    margin-top: 6px;
}

.mvv-card.values .value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
}

.mvv-card.values .value-item i {
    color: #4b5563;
}

@media (max-width: 992px) {
    .mvv-grid {
        grid-template-columns: 1fr;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-blue);
}

.service-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
    line-height: 1.3;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Statistics Section */
.statistics {
    padding: 4rem  0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.6;
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.stats-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.stats-badge i {
    color: #3b82f6;
    font-size: 0.9rem;
}

.stats-badge span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(59, 130, 246, 0.2);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.stat-card:hover::before {
    opacity: 0;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.4);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.6);
}

.stat-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.stat-content {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(30, 58, 138, 0.6);
}

.stat-label {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 0 0 20px 20px;
    transition: width 1s ease-in-out;
    animation: progressFill 2s ease-in-out;
}

@keyframes progressFill {
    from {
        width: 0%;
    }

    to {
        width: var(--progress-width, 100%);
    }
}


/* Responsive Design for Statistics */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .stats-header h2 {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stats-cta {
        padding: 2rem 1.5rem;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(30, 58, 138, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose-content {
    position: relative;
    z-index: 2;
}

.expert-team {
    margin: 2rem 0;
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.expert-team h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* CEO Section */
.ceo-section {
    margin-bottom: 2rem;
}

.ceo-card {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.ceo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.ceo-avatar {
    margin-bottom: 1rem;
}

.ceo-avatar .avatar-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    display: block;
}

.ceo-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.ceo-title {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ceo-experience {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.ceo-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Team Members */
.team-members {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Leadership Team (About page) */
.leadership-team {
    padding: var(--section-padding);
    background: #fff;
}

.leadership-team .section-header h2 {
    font-size: 1.75rem;
    color: #0f172a;
}

.leadership-team .section-header p {
    color: #64748b;
    max-width: 820px;
    margin: 0 auto 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.team-member {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.member-photo {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}

.member-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(80% 60% at 50% 40%, rgba(0, 48, 135, .18), rgba(0, 48, 135, 0) 60%);
    opacity: .6;
}

.member-photo:hover .member-img {
    transform: scale(1.02);
}

.member-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(15, 23, 42, .45);
    opacity: 0;
    transition: opacity .2s ease;
}

.member-photo:hover .member-overlay {
    opacity: .9;
}

.member-overlay .social-links a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    color: #111827;
}

.member-info {
    padding: 16px;
}

.member-info h3 {
    margin: 0 0 4px;
    font-size: 1.1rem;
    color: #0f172a;
}

.member-position {
    color: #0ea5e9;
    font-weight: 600;
    margin: 0 0 8px;
    display: inline-block;
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: .85rem;
}

.member-description {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 10px;
}

.member-achievements {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.achievement {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .85rem;
    color: #475569;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* Responsive Design for Expert Team */
@media (max-width: 1200px) {
    .team-grid-futuristic {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }

    .ceo-card-futuristic {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .footer-bottom-links{
        gap: 1rem !important;
    }
    .testimonials {
        min-height: 1740px !important;
    }
    .expert-team-futuristic {
        padding: 2rem 1rem !important;
        margin: 2rem 0 !important;
    }

    .team-grid-futuristic {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .ceo-card-futuristic {
        max-width: 100%;
        padding: 1.5rem;
    }

    .ceo-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .ceo-avatar-img {
        width: 70px;
        height: 70px;
    }

    .ceo-details h4 {
        font-size: 1.3rem;
    }

    .ceo-role {
        font-size: 0.95rem;
    }

    .ceo-desc {
        font-size: 0.85rem;
    }

    .team-card {
        padding: 1.25rem;
    }

    .team-img {
        width: 50px;
        height: 50px;
    }

    .role-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }

    .team-info h4 {
        font-size: 1rem;
    }

    .team-role {
        font-size: 0.8rem;
    }

    .skill-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .expert-team {
        padding: 1.5rem;
    }

    .ceo-card {
        padding: 1rem;
    }

    .ceo-avatar .avatar-placeholder {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

.expert-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem 0.75rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.expert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.expert-avatar {
    margin-bottom: 0.75rem;
}

.expert-avatar .avatar-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: block;
}

.expert-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.expert-title {
    font-size: 0.75rem;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.expert-experience {
    font-size: 0.7rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.2;
}

.why-choose-content {
    display: block;
    max-width: 100%;
}

/* Futuristic Header */
.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1rem;
}

.badge-text {
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 500;
}

/* Section Labels */
.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.label-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.5) 50%, transparent 100%);
}

.label-text {
    font-size: 1rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Expert Team Futuristic Section */
.expert-team-futuristic {
    margin: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.expert-team-futuristic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(30, 58, 138, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* CEO Spotlight */
.ceo-spotlight {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.ceo-card-futuristic {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    max-width: 600px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ceo-card-futuristic:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ceo-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.ceo-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ceo-avatar-container {
    position: relative;
    flex-shrink: 0;
}

.avatar-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
}

.ceo-avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.status-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 16px;
    height: 16px;
    background: #00ff88;
    border: 2px solid white;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.ceo-details h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.ceo-role {
    font-size: 1rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.experience-bar {
    margin-bottom: 1rem;
    position: relative;
}

.exp-fill {
    height: 6px;
    background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 3px;
    width: 0;
    animation: fillExp 2s ease-out forwards;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
}

.exp-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes fillExp {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.exp-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    display: block;
    font-weight: 500;
}

.ceo-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Team Grid */
.team-grid-futuristic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.team-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease-out forwards;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.team-card:nth-child(1) {
    animation-delay: 0.1s;
}

.team-card:nth-child(2) {
    animation-delay: 0.2s;
}

.team-card:nth-child(3) {
    animation-delay: 0.3s;
}

.team-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .card-glow {
    opacity: 1;
}

.team-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-avatar {
    position: relative;
    margin-bottom: 1rem;
    text-align: center;
}

.team-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-blue);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
    transition: all 0.3s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.3);
}

.role-badge {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 3px 10px rgba(30, 58, 138, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
    line-height: 1.3;
}

.team-role {
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.3;
}

.skill-level {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.skill-bar {
    flex: 1;
    height: 4px;
    background: rgba(0, 212, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 2px;
    width: 0;
    animation: fillSkill 1.5s ease-out forwards;
    box-shadow: 0 2px 6px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
}

.skill-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes fillSkill {
    from {
        width: 0%;
    }

    to {
        width: var(--target-width, 0%);
    }
}

/* Dynamic skill widths will be set via inline styles from PHP */

.skill-text {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    min-width: 50px;
}

/* Benefits Section */
.benefits-futuristic {
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease-out forwards;
}

.benefit-item:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-item:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-item:nth-child(3) {
    animation-delay: 0.3s;
}

.benefit-item:nth-child(4) {
    animation-delay: 0.4s;
}

.benefit-item:nth-child(5) {
    animation-delay: 0.5s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
}

.benefit-icon {
    position: relative;
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-item:hover .icon-glow {
    opacity: 1;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    position: relative;
    z-index: 2;
}

.benefit-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}

/* CTA Section */
.cta-futuristic {
    position: relative;
    text-align: center;
    margin-top: 3rem;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.btn-futuristic {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-futuristic:hover .btn-glow {
    left: 100%;
}

.btn-futuristic:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-futuristic:hover .btn-arrow {
    transform: translateX(5px);
}

/* Work Process Futuristic Styles */
.work-process-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.process-badge .badge-icon {
    font-size: 1rem;
}

.process-badge .badge-text {
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 500;
}

/* Process Timeline - Optimized Grid Layout */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    height: 1px;
    background: rgba(0, 48, 135, 0.2);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
}

@keyframes slideInProcess {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-connector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
    border-radius: 50%;
    border: 2px solid var(--white);
    z-index: 3;
}

.step-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    width: 100%;
    height: 100%;
    min-height: 280px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.step-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.step-number {
    position: relative;
    flex-shrink: 0;
}

.number-text {
    display: block;
    width: 36px;
    height: 36px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.step-icon {
    position: relative;
    flex-shrink: 0;
}

.icon-bg {
    width: 32px;
    height: 32px;
    background: rgba(0, 48, 135, 0.1);
    border: 1px solid rgba(0, 48, 135, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 1rem;
    color: var(--primary-blue);
}

.step-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.step-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.step-details {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    background: rgba(0, 48, 135, 0.05);
    border: 1px solid rgba(0, 48, 135, 0.15);
    border-radius: 10px;
    padding: 0.2rem 0.4rem;
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
}

.detail-icon {
    font-size: 0.7rem;
}

.detail-text {
    font-weight: 500;
}

/* Process Stats */
.process-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.process-stats .stat-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.process-stats .stat-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.process-stats .stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.process-stats .stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.process-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.process-stats .stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .timeline-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-card {
        min-height: 240px;
        padding: 1.25rem;
    }

    .process-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .step-card {
        padding: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .detail-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

.why-choose-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-image .image-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.why-choose-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.why-choose-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.benefits-list i {
    color: var(--accent-orange);
    font-size: 1.125rem;
}

/* Work Process Section */
.work-process {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
}

.process-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1.5rem;
    font-size: 1.5rem;
}

.process-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.process-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: visible;
    min-height: 600px;
    margin-bottom: 4rem;
    z-index: 1;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

/* Testimonials Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, rgba(0, 48, 135, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(0, 48, 135, 0.3);
    border-radius: 20px;
    padding: 0.4rem 0.8rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.testimonials-badge .badge-icon {
    font-size: 0.9rem;
    color: var(--primary-blue);
}

.testimonials-badge .badge-text {
    font-size: 0.8rem;
    color: var(--primary-blue);
    font-weight: 500;
}

.testimonials-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-header p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Testimonials Layout */
.testimonials-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
    max-height: 450px;
    margin-bottom: 2rem;
}

/* Featured Testimonial (Left) */
.featured-testimonial {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 1.25rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.featured-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.featured-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.75rem;
    flex: 1;
}

.featured-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.featured-quote {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-dark);
    font-style: italic;
    position: relative;
    padding-left: 1rem;
}

.featured-quote::before {
    content: '"';
    position: absolute;
    top: -0.2rem;
    left: 0;
    font-size: 2rem;
    color: var(--primary-blue);
    opacity: 0.3;
    font-family: serif;
}

.featured-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.featured-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-image:hover img {
    transform: scale(1.05);
}

.featured-stats {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.featured-stat {
    background: linear-gradient(135deg, rgba(0, 48, 135, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(0, 48, 135, 0.2);
    border-radius: 8px;
    padding: 0.5rem;
    text-align: center;
    flex: 1;
}

.featured-stat-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 0.1rem;
}

.featured-stat-label {
    font-size: 0.65rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.featured-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 48, 135, 0.1);
}

.featured-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-blue);
    box-shadow: 0 3px 10px rgba(0, 48, 135, 0.2);
}

.featured-author-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.1rem;
}

.featured-author-info p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
}

.featured-rating {
    display: flex;
    gap: 0.2rem;
    margin-top: 0.4rem;
}

.featured-rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

/* Testimonials Grid (Right) */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 100%;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-card:hover::before {
    opacity: 0;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.company-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--white);
}

.company-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-rating {
    display: flex;
    gap: 0.1rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 0.65rem;
}

.testimonial-text {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-style: italic;
    flex: 1;
}

.testimonial-stats {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.stat-item {
    background: linear-gradient(135deg, rgba(0, 48, 135, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    border: 1px solid rgba(0, 48, 135, 0.15);
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 0.05rem;
}

.stat-label {
    font-size: 0.6rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: auto;
}

.author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-blue);
    box-shadow: 0 2px 6px rgba(0, 48, 135, 0.15);
}

.company-logo-img {
    width: 50%;
    height: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.05rem;
}

.author-title {
    font-size: 0.7rem;
    color: var(--text-light);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .featured-image img {
        height: 150px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .featured-testimonial {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .featured-quote {
        font-size: 1rem;
        padding-left: 1rem;
    }

    .featured-quote::before {
        font-size: 2rem;
    }

    .featured-stats {
        flex-direction: column;
        gap: 0.75rem;
    }

    .featured-stat {
        padding: 0.75rem;
    }

    .featured-author {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .featured-avatar {
        width: 50px;
        height: 50px;
    }
}



/* News & Reports Section */
.news-reports {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    margin-top: 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.news-reports::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.news-reports-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

/* News Tabs */
.news-reports-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.tab-btn.active {
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.tab-btn i {
    font-size: 1rem;
}

/* Tab Content */
.tab-content {
    display: none;
    position: relative;
    z-index: 2;
}

.tab-content.active {
    display: block;
}

/* News Grid */
.news-grid,
.reports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.news-grid .news-card,
.reports-grid .report-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.news-grid .news-card:hover,
.reports-grid .report-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.news-image,
.report-thumbnail {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

/* Card Badge - Featured/Hot Badge */
.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    /* box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4); */
    z-index: 10;
    backdrop-filter: blur(10px);
    animation: pulse-glow 2s ease-in-out infinite;
}

.card-badge i {
    font-size: 0.85rem;
    color: #ffffff;
    animation: star-spin 3s linear infinite;
}

.card-badge span {
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes pulse-glow {
    /* 0%, 100% {
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
        transform: scale(1.05);
    } */
}

@keyframes star-spin {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

.news-card:hover .card-badge,
.report-card:hover .card-badge {
    animation: pulse-glow 1s ease-in-out infinite;
    transform: scale(1.1);
}

.news-image::after,
.report-thumbnail::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.news-content,
.report-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-category,
.report-category {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 15px;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    margin-bottom: 0.8rem;
}

.news-content h3,
.report-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--white);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-content h3 a,
.report-content h3 a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-content h3 a:hover,
.report-content h3 a:hover {
    color: #3b82f6;
}

.news-excerpt,
.report-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
    white-space: pre-line;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta,
.report-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
}

.news-date,
.news-views,
.report-size,
.report-downloads {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.news-footer,
.reports-footer {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {

    .news-grid,
    .reports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .news-grid,
    .reports-grid {
        grid-template-columns: 1fr;
    }

    .news-reports-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.section-title p {
    color: var(--text-light);
}

.news-reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.news-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.news-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-orange);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.news-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-orange);
}

.news-date {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Futuristic News Design */
.title-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.title-badge i {
    color: var(--secondary-blue);
    font-size: 0.9rem;
}

.title-badge span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* News Slider Container */
.news-slider-container {
    position: relative;
    margin-bottom: 3rem;
}

.news-slider {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Futuristic News Cards */
.news-card.futuristic-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 280px;
    display: flex;
    flex-direction: column;
}

.news-card.futuristic-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(59, 130, 246, 0.2);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.news-card.futuristic-card:hover .card-glow {
    opacity: 1;
}

.news-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.news-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.news-category {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 15px;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    margin-bottom: 0.8rem;
}

.news-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--white);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
    white-space: pre-line;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.news-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 500;
}

.news-read-time {
    color: var(--secondary-blue);
    font-size: 0.8rem;
    font-weight: 600;
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(59, 130, 246, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 20px;
}

.news-card.futuristic-card:hover .news-overlay {
    opacity: 1;
}

.read-more-btn {
    width: 60px;
    height: 60px;
    background: rgba(30, 58, 138, 0.8);
    border: 2px solid rgba(59, 130, 246, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.read-more-btn:hover {
    transform: scale(1.05);
}

/* News Controls */
.news-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.news-prev-btn,
.news-next-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.news-prev-btn:hover,
.news-next-btn:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, rgba(16, 185, 129, 0.4) 100%);
    border-color: rgba(59, 130, 246, 0.5);
    transform: scale(1.1);
}

/* News Footer */
.news-footer {
    text-align: center;
    position: relative;
    z-index: 2;
}

.btn-futuristic {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-futuristic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-futuristic:hover::before {
    left: 0;
}

.btn-futuristic:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
}

.btn-futuristic i {
    transition: transform 0.3s ease;
}

.btn-futuristic:hover i {
    transform: translateX(4px);
}

/* Clean Benefits Grid */
.benefits-grid-futuristic {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.benefit-card-futuristic {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.benefit-card-futuristic:hover {
    transform: translateY(-4px);
    border-color: #3b82f6;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.benefit-glow {
    display: none;
}

.benefit-icon-container {
    position: relative;
    margin-bottom: 0.8rem;
    z-index: 2;
}

.icon-ring {
    display: none;
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
    transition: all 0.3s ease;
}

.benefit-card-futuristic:hover .benefit-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.3);
}

.benefit-icon i {
    font-size: 1.1rem;
    color: var(--white);
}

.benefit-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Prevent stat text overflow */
.benefit-content {
    overflow: hidden;
}

.benefit-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #1e293b;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.benefit-content p {
    color: #64748b;
    font-size: 0.75rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    max-width: 150px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.benefit-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    margin-top: auto;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3b82f6;
    line-height: 1;
}

/* Scope stat number inside benefits to avoid global overrides */
.benefits-grid-futuristic .stat-number {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.benefits-grid-futuristic .stat-label {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stat-label {
    font-size: 0.65rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.benefit-overlay {
    display: none;
}

.overlay-content {
    display: none;
}

/* Responsive Design for Benefits */
@media (max-width: 1200px) {
    .benefits-grid-futuristic {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .benefits-grid-futuristic {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .benefit-card-futuristic {
        height: auto;
        min-height: 160px;
        padding: 1rem;
    }

    .benefit-content h4 {
        font-size: 0.95rem;
    }

    .benefit-content p {
        font-size: 0.75rem;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
    }

    .benefit-icon i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .benefits-grid-futuristic {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}

/* Call to Action Section */
.cta-section {
    padding: 4rem 0;
    background: #2a4552;
    color: var(--white);
    position: relative;
    margin-top: 2rem;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.cta-section .container {
    position: relative;
    z-index: 3;
}

.cta-wrapper {
    gap: 3rem;
    align-items: center;
    position: relative;
}

.cta-content {
    text-align: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.1);;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.cta-badge i {
    color: #ffd700;
    font-size: 0.9rem;
}

.cta-badge span {
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: var(--white);
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cta-feature i {
    color: #3b82f6;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.cta-feature span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 350px;
}

.cta-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.cta-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    min-width: 100px;
}

.cta-stat .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #3b82f6;
    display: block;
    margin-bottom: 0.3rem;
    line-height: 1;
}

.cta-stat .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .cta-content {
        text-align: center;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-content p {
        max-width: 100%;
    }

    .cta-features {
        align-items: center;
    }

    .cta-stats {
        gap: 1rem;
    }

    .cta-stat {
        min-width: 80px;
        padding: 0.8rem;
    }

    .cta-stat .stat-number {
        font-size: 1.5rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: var(--white);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-social h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.social-link i {
    font-size: 1.1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    border-radius: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.2rem 0;
}

.footer-column ul li a:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: #3b82f6;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    width: 20px;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .why-choose-content {
        display: block;
        max-width: 100%;
    }

    .news-reports-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .news-reports-grid {
        grid-template-columns: 1fr;
    }

    .news-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .news-card.futuristic-card {
        height: auto;
        min-height: 250px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .btn-futuristic {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}