/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Premium Tech Corporate Palette */
    --primary-color: #0052cc;
    /* Deep Blue */
    --primary-dark: #0747a6;
    --primary-light: #4c9aff;
    --accent-color: #00b8d9;
    /* Cyan/Teal for highlights */
    --secondary-color: #6b778c;
    /* Slate Gray */

    /* Neutrals */
    --dark-color: #172b4d;
    /* Navy Black */
    --text-color: #42526e;
    --light-color: #f4f5f7;
    --white: #ffffff;

    /* Backgrounds */
    --bg-body: #ffffff;
    --bg-light: #f4f5f7;
    --bg-gradient: linear-gradient(135deg, #0052cc 0%, #00b8d9 100%);

    /* Typography */
    --font-main: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 16px 32px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

a {
    text-decoration: none;
    transition: var(--transition-base);
    color: var(--primary-color);
}

a:hover {
    color: var(--primary-dark);
}

/* --- Components --- */

/* Navbar - Enhanced Glassmorphism */
/* Navbar - Ultra Premium Glassmorphism */
.navbar {
    background: #ffffff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 82, 204, 0.08);
    padding: 0.75rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark-color) !important;
    letter-spacing: -0.03em;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.brand-icon {
    font-size: 1.75rem;
    margin-right: 0.5rem;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.brand-text {
    display: inline-block;
}

.text-gradient-brand {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-color) !important;
    padding: 0.6rem 1.2rem !important;
    margin: 0 0.2rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 50px;
    overflow: hidden;
    z-index: 1;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.1), rgba(0, 184, 217, 0.1));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 50px;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::after {
    display: none;
    /* Remove old underline */
}

/* Dropdown Menu */
/* Dropdown Menu - Glass & Float */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1rem;
    margin-top: 1rem;
    min-width: 260px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: dropdownFade 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top center;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-item {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-weight: 500;
    color: var(--dark-color);
    transition: all 0.2s ease;
    margin-bottom: 0.25rem;
}

.dropdown-item i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.08), rgba(0, 184, 217, 0.08));
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-item:hover i {
    transform: scale(1.2);
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

/* Nav Button */
/* Nav Button - Shiny Effect */
.btn-nav {
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3);
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-nav:hover::before {
    left: 100%;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 82, 204, 0.4);
}

.btn-nav i {
    font-size: 1rem;
}

.navbar-toggler {
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 82, 204, 0.15);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-base);
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 82, 204, 0.4);
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.2);
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 184, 217, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Cards */
.card {
    border: none;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    overflow: hidden;
    height: 100%;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition-base);
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.1), rgba(0, 184, 217, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition-base);
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.2), rgba(0, 184, 217, 0.2));
}

.card-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.card-text {
    color: var(--secondary-color);
    font-size: 1rem;
    line-height: 1.7;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    background: var(--white);
    transition: var(--transition-base);
    position: relative;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 82, 204, 0.05);
    line-height: 1;
}

.process-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 82, 204, 0.3);
}

.process-step h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* Icon Box */
.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.1), rgba(0, 184, 217, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-color);
}

/* Features / Why Choose Us */
.feature-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
}

.feature-list li::before {
    content: '\F26A';
    /* Bootstrap Icon Check Circle */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '\F59D';
    /* Quote icon */
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(0, 82, 204, 0.05);
}

.testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
    border: 4px solid var(--bg-light);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 80px 0 30px;
}

footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

footer a {
    color: #b3bac5;
}

footer a:hover {
    color: var(--white);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 30px;
    font-size: 0.9rem;
    color: #8993a4;
}

/* Breadcrumb */
.breadcrumb-section {
    background-color: var(--bg-light);
    padding: 120px 0 60px;
    /* Increased top padding for fixed header */
    margin-bottom: 0;
    /* Removed margin as section-padding handles spacing */
}

.breadcrumb-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

/* Service Details */
.service-details h2 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.service-details img {
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

/* Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow {
    box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

/* --- Advanced Design Polish --- */

/* Glassmorphism Utilities */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    border-radius: 16px;
}

.glass-strip {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: transform 0.3s ease;
}

.glass-strip:hover {
    transform: translateY(-5px);
}

.stat-item {
    transition: all 0.3s ease;
    border-radius: 16px;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.divide-cols>div:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .divide-cols>div:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* Sticky Bottom CTA */
.sticky-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    /* Higher than footer but lower than modals */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.sticky-bottom-cta .btn {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ensure footer doesn't get hidden behind sticky CTA on mobile */
@media (max-width: 991.98px) {
    body {
        padding-bottom: 60px;
        /* Height of the sticky CTA */
    }
}

/* Gradients & Backgrounds */
.bg-mesh {
    background-color: #ffffff;
    background-image: radial-gradient(at 0% 0%, hsla(253, 16%, 7%, 1) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(225, 39%, 30%, 1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 1) 0, transparent 50%);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.text-gradient {
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Enhanced Footer */
.footer-dark {
    background: linear-gradient(180deg, #0b1628 0%, #050a12 100%);
    color: #a0aec0;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-dark h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.footer-dark ul li {
    margin-bottom: 0.75rem;
}

.footer-dark a {
    color: #a0aec0;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-dark a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
    text-shadow: 0 0 20px rgba(0, 184, 217, 0.4);
}

.footer-dark .social-icons {
    display: flex;
    gap: 10px;
}

.footer-dark .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-dark .social-icons a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 82, 204, 0.3);
}

.footer-newsletter {
    position: relative;
    margin-bottom: 1.5rem;
}

.footer-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.8rem 1.2rem;
    padding-right: 50px;
    border-radius: 50px;
    width: 100%;
    transition: all 0.3s ease;
}

.footer-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 184, 217, 0.1);
    outline: none;
}

.footer-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
    padding-top: 30px;
    font-size: 0.9rem;
    color: #718096;
}

.copyright a {
    color: #718096;
    margin-left: 1.5rem;
    font-size: 0.85rem;
}

.copyright a:hover {
    color: #fff;
    transform: none;
    text-decoration: underline !important;
}

.text-shadow-sm {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Skeleton Loading Animation */
.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* CTA Pattern - Light & Attractive */
.cta-light {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.cta-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 184, 217, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 82, 204, 0.1) 0%, transparent 50%);
}

.cta-light h2 {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 82, 204, 0.15);
}

/* Breadcrumb - Advanced Glassmorphism */
.breadcrumb-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 82, 204, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

/* --- Why Choose Us Redesign --- */

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px rgba(0, 82, 204, 0.1);
    border-color: var(--primary-color);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 82, 204, 0.3);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
}

.image-decoration-wrapper {
    position: relative;
    z-index: 1;
}

.image-decoration-wrapper::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.3;
    transition: transform 0.5s ease;
}

.image-decoration-wrapper:hover::before {
    transform: translate(-10px, -10px);
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 2;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-badge i {
    font-size: 2rem;
    color: var(--accent-color);
}

.floating-badge .badge-text {
    display: flex;
    flex-direction: column;
}

.floating-badge .badge-title {
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--dark-color);
}

.floating-badge .badge-subtitle {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* 1. Statistics Section - Horizontal Floating Cards */
.stat-card-horizontal {
    background: linear-gradient(145deg, #ffffff 0%, #f0f7ff 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card-horizontal:hover {
    transform: translateY(-5px) scale(1.02);
    background: linear-gradient(145deg, #ffffff 0%, #e6f0ff 100%);
    box-shadow: 0 20px 40px rgba(0, 82, 204, 0.15);
    border-color: var(--primary-color);
}

.stat-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 82, 204, 0.3);
    flex-shrink: 0;
}

.stat-content h2 {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-content p {
    margin-bottom: 0;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
}

/* 2. Services Section - Dynamic Gradient Glass Cards */
.service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(240, 247, 255, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 82, 204, 0.15);
    border-color: rgba(0, 82, 204, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.05), rgba(0, 184, 217, 0.05));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 10px 20px rgba(0, 82, 204, 0.3);
}

.service-card .card-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover .card-title {
    color: var(--primary-color);
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* 3. Process Section - Connected Step Flow */
.process-wrapper {
    position: relative;
    z-index: 1;
}

.process-wrapper::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, var(--primary-color) 50%, transparent 50%);
    background-size: 20px 100%;
    z-index: -1;
    opacity: 0.3;
}

.process-step {
    background: #ffffff;
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-step:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 82, 204, 0.15);
    border-color: var(--primary-color);
}

.step-number-bg {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(0, 82, 204, 0.03);
    line-height: 1;
    transition: all 0.4s ease;
}

.process-step:hover .step-number-bg {
    color: rgba(0, 82, 204, 0.08);
    transform: scale(1.1);
}

.process-icon-box {
    width: 90px;
    height: 90px;
    background: #ffffff;
    border: 2px solid rgba(0, 82, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.process-step:hover .process-icon-box {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(0, 82, 204, 0.3);
}

@media (max-width: 768px) {
    .process-wrapper::before {
        display: none;
    }
}

/* 4. Testimonials Section - Glassmorphism Cards */
.testimonial-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 82, 204, 0.15);
    border-color: rgba(0, 82, 204, 0.2);
}

.quote-icon-bg {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 8rem;
    line-height: 1;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.05), rgba(0, 184, 217, 0.05));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.testimonial-card:hover .quote-icon-bg {
    transform: scale(1.1) rotate(-5deg);
    opacity: 0.8;
}

.star-rating {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.star-rating i {
    display: inline-block;
    transition: transform 0.2s ease;
}

.testimonial-card:hover .star-rating i {
    animation: starPop 0.3s ease forwards;
}

.testimonial-card:hover .star-rating i:nth-child(1) {
    animation-delay: 0.05s;
}

.testimonial-card:hover .star-rating i:nth-child(2) {
    animation-delay: 0.1s;
}

.testimonial-card:hover .star-rating i:nth-child(3) {
    animation-delay: 0.15s;
}

.testimonial-card:hover .star-rating i:nth-child(4) {
    animation-delay: 0.2s;
}

.testimonial-card:hover .star-rating i:nth-child(5) {
    animation-delay: 0.25s;
}

@keyframes starPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
}


/* 5. CTA Section - Vibrant Animated Gradient */
.cta-wow {
    background-color: #0052cc;
    background: linear-gradient(135deg, #002a80, #0052cc, #00b8d9);
    background-size: 200% 200%;
    animation: gradientBG 6s ease infinite;
    border-radius: 30px;
    padding: 5rem 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 82, 204, 0.3);
    color: white;
}

/* 6. About Us Page - Premium Design */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0052cc, #00b8d9);
    z-index: 0;
    overflow: hidden;
}

.hero-bg-animation::before,
.hero-bg-animation::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 10s ease-in-out infinite;
}

.hero-bg-animation::before {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
}

.hero-bg-animation::after {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.story-img-wrapper {
    perspective: 1000px;
}

.story-img-wrapper img {
    transition: transform 0.5s ease;
}

.story-img-wrapper:hover img {
    transform: rotateY(5deg) scale(1.02);
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.6;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    top: -20px;
    left: -20px;
    animation: float 4s ease-in-out infinite;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-light));
    bottom: -20px;
    right: -20px;
    animation: float 5s ease-in-out infinite reverse;
}

.mission-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 82, 204, 0.15);
}

.value-card {
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 82, 204, 0.2) !important;
}

.text-gradient-light {
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.cta-wow::before,
.cta-wow::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.cta-wow::before {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite;
}

.cta-wow::after {
    width: 200px;
    height: 200px;
    bottom: -30px;
    right: -30px;
    animation: float 6s ease-in-out infinite reverse;
}

.cta-wow .badge {
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-wow .btn-light {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-wow .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}