/* Modern Tech Theme - System & Network Services 2025 Edition */
:root {
    /* Modern Color Palette */
    --primary: #4F46E5; /* Indigo 600 - more vibrant */
    --primary-light: #818CF8; /* Indigo 400 */
    --primary-dark: #4338CA; /* Indigo 700 */
    --primary-rgb: 79, 70, 229;
    
    --secondary: #10B981; /* Emerald 500 */
    --secondary-light: #34D399; /* Emerald 400 */
    --secondary-dark: #059669; /* Emerald 600 */
    --secondary-rgb: 16, 185, 129;
    
    --accent: #F59E0B; /* Amber 500 */
    --accent-light: #FBBF24; /* Amber 400 */
    --accent-dark: #D97706; /* Amber 600 */
    --accent-rgb: 245, 158, 11;

    /* Neutral Colors - slightly warmer grays for better readability */
    --bg-color: #FAFAF9; /* Warm gray 50 */
    --surface-color: #FFFFFF;
    --text-color: #44403C; /* Warm gray 700 - better contrast */
    --text-muted-color: #78716C; /* Warm gray 500 */
    --heading-color: #292524; /* Warm gray 800 */
    --border-color: #E7E5E4; /* Warm gray 200 */
    --input-bg-color: #FFFFFF;

    /* Legacy colors for compatibility */
    --dark: #292524;
    --light-gray: #F5F5F4;
    --white: #FFFFFF;

    /* Status Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;

    /* Modern Gradients */
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-hover: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    --subtle-gradient: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    --glass-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    --badge-gradient: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    --badge-gradient-alt: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
    --badge-gradient-accent: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);

    /* Modern Shadows - softer and more natural */
    --box-shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    --box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.05), 0 2px 6px -1px rgba(0, 0, 0, 0.03);
    --box-shadow-lg: 0 10px 20px -5px rgba(0, 0, 0, 0.06), 0 4px 10px -5px rgba(0, 0, 0, 0.03);
    --box-shadow-xl: 0 20px 30px -10px rgba(0, 0, 0, 0.07), 0 10px 15px -5px rgba(0, 0, 0, 0.03);
    --box-shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.03);
    
    /* Glass Effect Shadows */
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);

    /* Transitions - smoother */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Border Radius - slightly more rounded for modern look */
    --border-radius-sm: 0.5rem; /* 8px */
    --border-radius: 0.75rem;   /* 12px */
    --border-radius-md: 1rem;   /* 16px */
    --border-radius-lg: 1.25rem; /* 20px */
    --border-radius-xl: 1.75rem; /* 28px */
    --border-radius-full: 9999px;

    /* Badge Styles */
    --badge-padding: 0.35rem 1rem;
    --badge-font-size: 0.85rem;
    --badge-font-weight: 600;
    --badge-text-transform: uppercase;
    --badge-letter-spacing: 0.5px;
    --badge-margin-bottom: 1rem;

    /* Typography - Modern Font Stack */
    --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-display: 'Outfit', 'Lexend Deca', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    --text-6xl: 3.75rem;   /* 60px */

    --leading-none: 1;
    --leading-tight: 1.2;
    --leading-snug: 1.35;
    --leading-normal: 1.5;
    --leading-relaxed: 1.65;
    --leading-loose: 2;
    
    /* Layout */
    --header-height: 4.5rem; /* 72px - slightly taller for better spacing */
    --footer-height: auto;
    --container-padding: 1.5rem;
    --section-padding: 5rem 0; /* More vertical breathing room */
    --max-width: 1280px;

    /* Spacing */
    --space-unit: 0.25rem; /* 4px base unit */
    --space-xs: calc(2 * var(--space-unit));   /* 8px */
    --space-sm: calc(3 * var(--space-unit));   /* 12px */
    --space-md: calc(4 * var(--space-unit));   /* 16px */
    --space-lg: calc(6 * var(--space-unit));   /* 24px */
    --space-xl: calc(8 * var(--space-unit));   /* 32px */
    --space-xxl: calc(12 * var(--space-unit)); /* 48px */
    --space-3xl: calc(16 * var(--space-unit)); /* 64px */
    --space-4xl: calc(24 * var(--space-unit)); /* 96px */

    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-toast: 1080;
}

/* Navigation - Modern Glassmorphism Style */
.navbar {
    padding: 0.75rem var(--container-padding);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.85); /* More transparent for glass effect */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px); /* For Safari */
    box-shadow: var(--glass-shadow);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: var(--z-fixed);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: var(--space-xs) 0;
    margin: 0;
    position: relative;
}

.navbar-brand img {
    height: 3.5rem; /* Slightly larger logo */
    width: auto;
    transition: var(--transition-bounce);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.navbar-brand:hover img {
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    background: rgba(255, 255, 255, 0.8);
    padding: var(--space-sm);
    font-size: var(--text-xl);
    cursor: pointer;
    z-index: calc(var(--z-fixed) + 1);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition);
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow);
}

.navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    color: var(--text-color) !important;
    transition: var(--transition);
    border-radius: var(--border-radius-md);
    position: relative;
    margin: 0 var(--space-xs);
    letter-spacing: 0.01em;
}

.nav-link i {
    margin-right: 6px;
    font-size: 0.9em;
    opacity: 0.75;
    transition: var(--transition);
}

.nav-link:hover i,
.nav-link.active i {
    opacity: 1;
    transform: scale(1.1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background: rgba(var(--primary-rgb), 0.08);
    transform: translateY(-1px);
    box-shadow: var(--box-shadow-sm);
}

.nav-link.active {
    font-weight: 600;
    background: var(--subtle-gradient);
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0.35rem;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: var(--border-radius-full);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-link:hover:after {
    opacity: 0.6;
    transform: translateX(-50%) scale(0.6);
}

.nav-link.active:after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}





/* Hero Section */
.hero {
    padding: calc(var(--header-height) + var(--space-xl)) var(--container-padding) var(--space-xxl);
    position: relative;
    overflow: hidden;
    background: var(--bg-color);
    /* Optional: Add a subtle pattern or a more modern gradient if desired */
    /* background-image: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%); */
    margin-top: var(--header-height);
    text-align: center;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: var(--space-lg);
}

.hero p {
    font-size: var(--text-lg);
    color: var(--text-muted-color);
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    line-height: var(--leading-relaxed);
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('../images/hero-bg-pattern.svg') no-repeat;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-btns .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.hero-btns .btn-gradient {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--box-shadow-lg);
}

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

.hero-btns .btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}

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

.hero-btns .btn-outline-light:hover {
    background: var(--primary);
    color: white;
}

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

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    transition: var(--transition);
}

.hero-image:hover img {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Base Styles */
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: var(--leading-relaxed);
    font-size: var(--text-base);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lexend Deca', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--heading-color);
    font-weight: 700;
    line-height: var(--leading-tight);
    margin-bottom: var(--space-md);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

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

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

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

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: var(--dark);
}

.section-header h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
    margin: 0 auto;
    right: 0;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.section-header.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Modern Buttons & Form Elements */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    border-radius: var(--border-radius-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.25);
}

.btn i {
    margin-right: 0.5rem;
    font-size: 0.9em;
}

/* Primary button */
.btn-primary {
    color: white;
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--box-shadow-sm);
}

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

/* Gradient button */
.btn-gradient {
    color: white;
    background: var(--gradient);
    border: none;
    box-shadow: var(--box-shadow);
}

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

.btn-gradient:active {
    transform: translateY(0);
}

/* Outline button */
.btn-outline-light {
    color: var(--primary);
    background-color: transparent;
    border: 2px solid var(--primary-light);
}

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

/* Form controls */
.form-control, .form-select {
    display: block;
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: var(--leading-normal);
    color: var(--text-color);
    background-color: var(--input-bg-color);
    background-clip: padding-box;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    transition: var(--transition);
    box-shadow: var(--box-shadow-inner);
    margin-bottom: var(--space-lg);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: var(--box-shadow-inner), 0 0 0 3px rgba(var(--primary-rgb), 0.15);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted-color);
    opacity: 0.7;
}

.form-label {
    display: block;
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: var(--space-xs);
    letter-spacing: 0.01em;
}



/* Responsive Images */
.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    max-width: 100%;
    height: auto;
}

/* Rounded */
.rounded {
    border-radius: 0.25rem !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.rounded-pill {
    border-radius: 50rem !important;
}

/* Visibility */
.invisible {
    visibility: hidden !important;
}

/* Clearfix */
.clearfix::after {
    display: block;
    content: "";
    clear: both;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* Fallback for browsers not supporting -webkit-text-fill-color */
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover:after {
    width: 100%;
}

/* Modern Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    margin-top: calc(var(--header-height) - 1rem);
}

.hero:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSg3OSwgNzAsIDIyOSwgMC4wMykiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IGZpbGw9InVybCgjcGF0dGVybikiIGhlaWdodD0iMTAwJSIgd2lkdGg9IjEwMCUiLz48L3N2Zz4=');
    opacity: 0.6;
}

/* Hero shapes for modern look */
.hero-shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.hero-shape.shape-1 {
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--secondary-rgb), 0.1) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphing 15s ease-in-out infinite;
}

.hero-shape.shape-2 {
    bottom: 5%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(var(--secondary-rgb), 0.1) 0%, rgba(var(--accent-rgb), 0.1) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morphing 12s ease-in-out infinite alternate;
}

@keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.hero h1 {
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive font size */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* Fallback */
    letter-spacing: -0.02em;
    position: relative;
}

.hero p.lead {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-color);
    max-width: 700px;
    line-height: 1.6;
    margin: 0 auto 2rem;
}

/* Modern Features Section */
.features {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 1) 100%);
    overflow: hidden;
}

.features:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgxNSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyIiBoZWlnaHQ9IjIiIGZpbGw9InJnYmEoNzksIDcwLCAyMjksIDAuMDMpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCBmaWxsPSJ1cmwoI3BhdHRlcm4pIiBoZWlnaHQ9IjEwMCUiIHdpZHRoPSIxMDAlIi8+PC9zdmc+');
    opacity: 0.6;
    z-index: 0;
}

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

.section-title {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--subtle-gradient);
    border-radius: var(--border-radius-full);
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 20px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.card, .feature-card, .testimonial-card, .blog-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--glass-shadow);
    padding: var(--space-xl);
    height: 100%;
    margin-bottom: var(--space-lg);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    position: relative;
    overflow: hidden;
}

.card:before, .feature-card:before, .testimonial-card:before, .blog-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--subtle-gradient);
    opacity: 0;
    transition: var(--transition);
}

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

.card:hover:before, .feature-card:hover:before, .testimonial-card:hover:before, .blog-card:hover:before {
    opacity: 1;
}

/* Modern Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.03) 0%, rgba(var(--secondary-rgb), 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgzMCkiPjxjaXJjbGUgY3g9IjIiIGN5PSIyIiByPSIxIiBmaWxsPSJyZ2JhKDc5LCA3MCwgMjI5LCAwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgaGVpZ2h0PSIxMDAlIiB3aWR0aD0iMTAwJSIvPjwvc3ZnPg==');
    opacity: 0.5;
    z-index: 0;
}

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

.stat-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    position: relative;
    overflow: hidden;
}

.stat-item:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--subtle-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-lg);
}

.stat-item:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.stat-item .counter {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 15px;
    display: block;
    line-height: 1;
    position: relative;
}

.stat-item p {
    color: var(--text-color);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Modern Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgtMTUpIj48Y2lyY2xlIGN4PSIzIiBjeT0iMyIgcj0iMSIgZmlsbD0icmdiYSgxMTgsIDc0LCAyNDEsIDAuMDQpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCBmaWxsPSJ1cmwoI3BhdHRlcm4pIiBoZWlnaHQ9IjEwMCUiIHdpZHRoPSIxMDAlIi8+PC9zdmc+');
    opacity: 0.6;
    z-index: 0;
}

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

.testimonial-card {
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    height: 100%;
    position: relative;
    overflow: visible;
}

.testimonial-content {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
}

.testimonial-content:before {
    content: '\201C';
    position: absolute;
    top: -30px;
    left: -10px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(var(--primary-rgb), 0.1);
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    box-shadow: var(--box-shadow-sm);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 3px;
    color: var(--heading-color);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-muted-color);
    font-weight: 500;
}

.testimonial-rating {
    color: var(--warning);
    font-size: 1rem;
    margin-top: 5px;
}

/* Blog Section */
.blog {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 1) 100%);
    position: relative;
    overflow: hidden;
}

.blog:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxjaXJjbGUgY3g9IjIiIGN5PSIyIiByPSIxIiBmaWxsPSJyZ2JhKDc5LCA3MCwgMjI5LCAwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgaGVpZ2h0PSIxMDAlIiB3aWR0aD0iMTAwJSIvPjwvc3ZnPg==');
    opacity: 0.5;
    z-index: 0;
}

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

.blog-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.18);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    opacity: 0.7;
    transition: var(--transition);
}

.blog-card:hover .blog-image:after {
    opacity: 0.4;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: var(--border-radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: var(--box-shadow-sm);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.blog-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 0.9rem;
    color: var(--text-muted-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.blog-date i {
    margin-right: 6px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-title a {
    color: var(--heading-color);
    text-decoration: none;
    transition: var(--transition);
    background-image: linear-gradient(transparent 97%, var(--primary-light) 3%);
    background-repeat: no-repeat;
    background-size: 0% 100%;
}

.blog-title a:hover {
    color: var(--primary);
    background-size: 100% 100%;
}

.blog-excerpt {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.7;
    flex: 1;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
    font-size: 0.95rem;
    padding: 5px 0;
    position: relative;
}

.blog-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-light);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.blog-link i {
    margin-left: 6px;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--primary-dark);
}

.blog-link:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

.blog-link:hover i {
    transform: translateX(4px);
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(255, 255, 255, 1) 100%);
    position: relative;
    overflow: hidden;
}

.partners:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxjaXJjbGUgY3g9IjIiIGN5PSIyIiByPSIxIiBmaWxsPSJyZ2JhKDc5LCA3MCwgMjI5LCAwLjAyKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgaGVpZ2h0PSIxMDAlIiB3aWR0aD0iMTAwJSIvPjwvc3ZnPg==');
    opacity: 0.5;
    z-index: 0;
}

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

.partners-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.partner-item {
    padding: 25px;
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(100%);
    text-align: center;
    flex: 1;
    min-width: 160px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--glass-shadow);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.partner-item:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-lg);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(var(--primary-rgb), 0.1);
}

.partner-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.partner-item:hover:before {
    transform: scaleX(1);
}

.partner-item img {
    max-height: 45px;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    transition: var(--transition);
}

.partner-item:hover img {
    transform: scale(1.15);
}

/* Responsive adjustments for partners */
@media (max-width: 991.98px) {
    .partners-slider {
        justify-content: center;
    }
    
    .partner-item {
        min-width: 140px;
    }
}

@media (max-width: 767.98px) {
    .partners {
        padding: 60px 0;
    }
    
    .partner-item {
        min-width: 120px;
        padding: 20px;
    }
    
    .partner-item img {
        max-height: 35px;
    }
}

@media (max-width: 767.98px) {
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author img {
        margin: 0 auto 15px;
    }
}

/* Animation Keyframes */
@keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* Modern CTA Section */
.section {
    padding: var(--section-padding);
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
}

.cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.03) 0%, rgba(var(--secondary-rgb), 0.05) 100%);
}

.cta:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iODAiIGhlaWdodD0iODAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgxNSkiPjxjaXJjbGUgY3g9IjIiIGN5PSIyIiByPSIxLjUiIGZpbGw9InJnYmEoNzksIDcwLCAyMjksIDAuMDQpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCBmaWxsPSJ1cmwoI3BhdHRlcm4pIiBoZWlnaHQ9IjEwMCUiIHdpZHRoPSIxMDAlIi8+PC9zdmc+');
    opacity: 0.6;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-color);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.cta-shape {
    position: absolute;
    z-index: 1;
    opacity: 0.2;
    pointer-events: none;
}

.cta-shape-1 {
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: var(--gradient);
    animation: morphing 15s ease-in-out infinite alternate;
}

.cta-shape-2 {
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background: var(--gradient);
    animation: morphing 12s ease-in-out infinite;
}

/* Modern Footer */
.footer {
    background: linear-gradient(180deg, var(--heading-color) 0%, rgba(17, 24, 39, 1) 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgzMCkiPjxjaXJjbGUgY3g9IjIiIGN5PSIyIiByPSIxIiBmaWxsPSJyZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMDMpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCBmaWxsPSJ1cmwoI3BhdHRlcm4pIiBoZWlnaHQ9IjEwMCUiIHdpZHRoPSIxMDAlIi8+PC9zdmc+');
    opacity: 0.3;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-widget {
    margin-bottom: 3rem;
    position: relative;
}

.footer-widget h4 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
}

.footer-widget h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.footer-widget:hover h4:after {
    width: 100%;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 0.8rem;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 0;
}

.footer-widget ul li a:before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary-light);
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: var(--transition);
}

.footer-widget ul li a:hover {
    color: var(--primary-light);
    padding-left: 8px;
}

.footer-widget ul li a:hover:before {
    width: 100%;
}

.footer-widget ul li a i {
    margin-right: 8px;
    font-size: 0.85rem;
    color: var(--primary-light);
    opacity: 0.8;
}

.footer .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .social-links a:hover {
    color: #fff;
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
}

.footer-bottom {
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: #fff;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-contact-info {
    margin-top: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact-icon {
    margin-right: 15px;
    width: 20px;
    color: var(--primary-light);
}

.footer-contact-text {
    flex: 1;
}

.footer-newsletter p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-newsletter-form {
    position: relative;
    display: flex;
}

.footer-newsletter-input {
    flex: 1;
    height: 50px;
    padding: 0 20px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.95rem;
}

.footer-newsletter-input:focus {
    outline: none;
    border-color: rgba(var(--primary-rgb), 0.5);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2);
}

.footer-newsletter-button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 40px;
    padding: 0 20px;
    border: none;
    background: var(--gradient);
    color: #fff;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

/* Remove background from footer sections */
.footer-about,
.footer-links-container,
.footer .col-lg-4,
.footer .col-lg-2,
.footer .col-lg-3,
.footer .col-md-6 {
    background: transparent !important;
    background-color: transparent !important;
}

/* Ensure no background is applied to the footer content */
.footer .container,
.footer .row,
.footer .row > div {
    background: transparent !important;
    background-color: transparent !important;
}

/* Utility Classes */
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }
.text-dark { color: var(--dark) !important; }
.text-white { color: var(--white) !important; }

.bg-primary { background-color: var(--primary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-accent { background-color: var(--accent) !important; }
.bg-dark { background-color: var(--dark) !important; }
.bg-light { background-color: var(--light-gray) !important; }
.bg-white { background-color: var(--white) !important; }

.bg-primary-light { background-color: rgba(var(--primary-rgb), 0.1) !important; }

/* Badge Styles */
.section-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--badge-gradient);
    color: white;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(var(--primary-rgb), 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    background: var(--badge-gradient-alt);
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(var(--secondary-rgb), 0.25);
    animation: badgePulse 3s infinite;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@keyframes badgePulse {
    0% { box-shadow: 0 4px 15px rgba(var(--secondary-rgb), 0.25); }
    50% { box-shadow: 0 4px 25px rgba(var(--secondary-rgb), 0.4); }
    100% { box-shadow: 0 4px 15px rgba(var(--secondary-rgb), 0.25); }
}

/* About Page Styles */
.about-stats {
    gap: 2rem;
}

.stat-item {
    background: var(--glass-gradient);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--box-shadow-sm);
    text-align: center;
    min-width: 120px;
    transition: var(--transition);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    background: var(--badge-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.expertise-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--glass-gradient);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition);
    cursor: default;
}

.expertise-tag:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
    background: var(--badge-gradient);
    color: white;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-lg);
    transform: translateY(0);
    transition: var(--transition);
}

.about-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-xl);
}

.about-image-wrapper img {
    position: relative;
    z-index: 1;
    width: 100%;
}

.about-shape {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--badge-gradient);
    opacity: 0.2;
    filter: blur(30px);
    z-index: 0;
}

.experience-box {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--glass-gradient);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--box-shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    min-width: 120px;
    z-index: 2;
}

.experience-box h3 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.experience-box p {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

.mission-vision-card {
    background: var(--glass-gradient);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--box-shadow-sm);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

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

.mission-vision-card:hover .mission-icon {
    background: var(--badge-gradient);
    color: white;
    transform: scale(1.1);
}

.mission-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--glass-gradient);
    color: var(--primary);
    font-size: 1.5rem;
    box-shadow: var(--box-shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.divider-sm {
    height: 3px;
    width: 50px;
    background: var(--badge-gradient);
    border-radius: 3px;
}

.card-hover-effect {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0) 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.mission-vision-card:hover .card-hover-effect {
    opacity: 1;
}

.values-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(var(--bg-rgb), 0.7) 0%, rgba(var(--bg-rgb), 0.9) 100%);
}

.values-shape-1, .values-shape-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
}

.values-shape-1 {
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(var(--primary-rgb), 0.05);
}

.values-shape-2 {
    bottom: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(var(--secondary-rgb), 0.05);
}

.value-card {
    background: var(--glass-gradient);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition);
    padding: 2rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.value-hover-content {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 1rem;
    text-align: left;
}

.value-card:hover .value-hover-content {
    height: auto;
    opacity: 1;
}

.value-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.value-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.value-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: var(--badge-gradient);
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.25);
}

/* Page Header Shapes */
.page-header {
    position: relative;
    padding: 6rem 0 8rem;
    background: var(--subtle-gradient);
    overflow: hidden;
    z-index: 1;
}

.page-header-shape {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(60px);
}

.page-header-shape.shape-1 {
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(var(--primary-rgb), 0.15);
    animation: floatAnimation 8s ease-in-out infinite alternate;
}

.page-header-shape.shape-2 {
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(var(--secondary-rgb), 0.15);
    animation: floatAnimation 10s ease-in-out infinite alternate-reverse;
}

.page-header-shape.shape-3 {
    top: 50%;
    left: 15%;
    width: 150px;
    height: 150px;
    background: rgba(var(--accent-rgb), 0.1);
    animation: floatAnimation 12s ease-in-out infinite;
}

@keyframes floatAnimation {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(20px, 20px) rotate(10deg); }
}

/* CTA Section */
.cta {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
    z-index: 1;
}

.cta-content {
    background: var(--glass-gradient);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--box-shadow-lg);
    position: relative;
    z-index: 2;
}

.cta-shape {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(50px);
}

.cta-shape-1 {
    top: -100px;
    left: 10%;
    width: 400px;
    height: 400px;
    background: rgba(var(--primary-rgb), 0.15);
}

.cta-shape-2 {
    bottom: -100px;
    right: 10%;
    width: 300px;
    height: 300px;
    background: rgba(var(--secondary-rgb), 0.15);
}

.cta-shape-3 {
    top: 50%;
    left: 15%;
    width: 150px;
    height: 150px;
    background: rgba(var(--accent-rgb), 0.1);
    animation: floatAnimation 12s ease-in-out infinite;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-gradient {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-hover-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    pointer-events: none;
}

.btn-gradient:hover .btn-hover-shape {
    width: 300px;
    height: 300px;
}

.btn-gradient:hover {
    background: var(--gradient-hover);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.4);
    color: white;
    transform: translateY(-2px);
}

/* Contact Page Styles */
.contact-info-wrapper {
    padding: 2rem;
    height: 100%;
}

.contact-info-list {
    margin-top: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--badge-gradient);
    color: white;
    font-size: 1.25rem;
    margin-right: 1.5rem;
    box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.25);
    flex-shrink: 0;
}

.contact-details h4 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
}

.contact-details p {
    margin: 0;
    color: var(--text-muted-color);
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-dark);
}

.contact-link:hover::after {
    width: 100%;
}

.contact-social {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-gradient);
    color: var(--primary);
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--box-shadow-sm);
}

.social-icon:hover {
    transform: translateY(-3px);
    color: white;
    background: var(--badge-gradient);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.contact-form-card {
    background: var(--glass-gradient);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--box-shadow-lg);
    padding: 2rem;
    height: 100%;
}

.form-control {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.1);
}

.map-section {
    padding: 3rem 0;
}

.map-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-placeholder {
    background: var(--subtle-gradient);
    height: 400px;
    border-radius: var(--border-radius-lg);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.map-content {
    position: relative;
    z-index: 2;
}

.map-pin {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.map-pin i {
    color: var(--primary);
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.map-pin-pulse {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(var(--primary-rgb), 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(2.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.map-info {
    background: var(--glass-gradient);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--box-shadow);
    text-align: center;
    max-width: 350px;
}

.map-info h4 {
    margin-bottom: 0.5rem;
}

.map-info p {
    margin-bottom: 1rem;
    color: var(--text-muted-color);
}

.map-actions {
    margin-top: 1rem;
}

.map-shape-1, .map-shape-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 1;
}

.map-shape-1 {
    top: -100px;
    right: 10%;
    width: 300px;
    height: 300px;
    background: rgba(var(--primary-rgb), 0.1);
}

.map-shape-2 {
    bottom: -100px;
    left: 20%;
    width: 250px;
    height: 250px;
    background: rgba(var(--secondary-rgb), 0.1);
}

/* Services Page Styles */
.service-card {
    background: var(--glass-gradient);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

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

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: var(--badge-gradient);
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.25);
    position: relative;
    z-index: 2;
}

.service-card h3 {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--text-muted-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
    position: relative;
    z-index: 2;
}

.service-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--primary);
    margin-right: 0.75rem;
    font-size: 0.875rem;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.05);
    z-index: 0;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(var(--secondary-rgb), 0.05);
    z-index: 0;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(var(--primary-rgb), 0.2), rgba(var(--secondary-rgb), 0.2));
    border-radius: var(--border-radius-full);
}

.process-step {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:nth-child(odd) {
    flex-direction: row-reverse;
}

.process-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--badge-gradient);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.25);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    margin: 0 2rem;
}

.process-step-content {
    background: var(--glass-gradient);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    width: calc(50% - 4rem);
    position: relative;
}

.process-step-content h4 {
    margin-bottom: 0.75rem;
}

.process-step-content p {
    margin-bottom: 0;
    color: var(--text-muted-color);
}

@media (max-width: 991.98px) {
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        flex-direction: row !important;
    }
    
    .process-step-number {
        margin: 0 1rem 0 0;
    }
    
    .process-step-content {
        width: calc(100% - 70px);
    }
}

/* Responsive adjustments for footer */
@media (max-width: 767.98px) {
    .footer {
        padding: 80px 0 30px;
    }
    
    .footer-widget {
        margin-bottom: 2rem;
    }
    
    .footer-bottom {
        margin-top: 30px;
    }
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a:before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--secondary);
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(10px);
    padding-left: 15px;
}

.footer-links a:hover:before {
    opacity: 1;
    left: 0;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-info i {
    color: var(--secondary);
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient);
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.copyright {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(26, 26, 46, 0.95);
        padding: 1.5rem;
        border-radius: 10px;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0 !important;
        margin: 0;
    }
    
    .navbar-nav .nav-link:before {
        display: none;
    }
    
    .hero {
        padding: 180px 0 100px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p.lead {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 160px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p.lead {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .feature-card, 
    .testimonial-card {
        margin-bottom: 30px;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
    
    .footer-widget {
        margin-bottom: 2rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p.lead {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .cta h2 {
        font-size: 1.75rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
}
