/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
:root {
    --primary: #bf0a30;
    --primary-dark: #8b0723;
    --secondary: #00C896;
    --dark: #353333f3;
    /* Gray color */
    --light: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
    white-space: nowrap;
}

.btn i {
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--light);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--light);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: #00B386;
    border-color: #00B386;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-light {
    background: var(--light);
    color: var(--dark);
    border-color: var(--light);
}

.btn-light:hover {
    background: var(--gray-100);
    border-color: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: var(--light);
    border-color: var(--light);
}

.btn-outline-light:hover {
    background: var(--light);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
     width: 100vw; 
    max-width: 100%;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.navbar {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px; /* add horizontal padding instead of 0 */
}

.navbar > * {
  min-width: 0;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .logo-icon {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
}

.logo-icon img {
    width: 100%;
    /* Makes the image responsive */
    height: auto;
    /* Maintains aspect ratio */
    border-radius: var(--radius-md);
    /* Matches the logo icon's border radius */
    object-fit: cover;
    /* Ensures the image covers the area without distortion */
}



.logo-highlight {
    color: var(--primary);
    font-weight: 700;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
    background: var(--gray-50);
}

.nav-link.active {
    color: var(--primary);
    background: var(--gray-50);
    font-weight: 600;
}

.nav-link i {
    font-size: 1.125rem;
}

/* Dropdown Menus */
.has-dropdown .nav-link {
    position: relative;
    padding-right: 32px;
}

.dropdown-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.875rem;
    transition: var(--transition);
}

.has-dropdown .dropdown-arrow.active {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
    overflow: hidden;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--gray-600);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid var(--gray-100);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
}

/* CTA Button in Nav */
.nav-cta .btn {
    padding: 10px 24px;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark) 0%, #2D3748 100%);
    overflow: hidden;
    margin-top: 80px;
    /* Offset for fixed header */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 31, 54, 0.9) 0%, rgba(26, 31, 54, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--light);
    max-width: 800px;
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(42, 109, 245, 0.2);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-title .highlight {
    color: var(--secondary);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--secondary);
    opacity: 0.2;
    border-radius: 4px;
    z-index: -1;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-200);
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: float 2s ease-in-out infinite;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--light);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
}

.scroll-indicator a:hover {
    opacity: 1;
}

.scroll-indicator i {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.scroll-indicator span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 100px 0;
}

.section-light {
    background: var(--gray-50);
}

.section-dark {
    background: var(--dark);
    color: var(--light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
    color: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(42, 109, 245, 0.1);
    border-radius: 50px;
}

.section-dark .section-subtitle {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-description {
    color: var(--gray-300);
}

/* ============================================
   WELCOME SECTION
   ============================================ */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.welcome-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition);
}

.welcome-image:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--light);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.welcome-message {
    font-size: 1.125rem;
    line-height: 1.8;
}

.message-intro {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--dark);
}

.message-quote {
    background: var(--gray-50);
    padding: 30px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    margin: 30px 0;
    position: relative;
}

.message-quote i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 10px;
    opacity: 0.5;
}

.message-closing {
    font-weight: 600;
    margin: 30px 0;
    color: var(--dark);
}

.signature {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid var(--gray-200);
}

.signature-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.signature-title {
    color: var(--gray-400);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--light);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--gray-600);
}

.service-features i {
    color: var(--secondary);
    font-size: 0.875rem;
}

/* ============================================
   DIGITAL PLATFORM SECTION
   ============================================ */
.digital-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.digital-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    min-width: 40px;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--light);
}

.feature-item p {
    color: var(--gray-300);
    font-size: 0.875rem;
    margin: 0;
}

.digital-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.device-mockup {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.device-screen {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.device-screen img {
    width: 100%;
    height: auto;
    display: block;
}

.device-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    pointer-events: none;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-content {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 80px 40px;
    border-radius: var(--radius-xl);
    color: var(--light);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--gray-200);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col:first-child {
    grid-column: span 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light);
}

.footer-logo i {
    color: var(--secondary);
    font-size: 2rem;
}

.footer-logo span {
    color: var(--light);
}

.footer-logo span span {
    color: var(--secondary);
}

.footer-description {
    color: var(--gray-300);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--light);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--gray-300);
}

.contact-info i {
    color: var(--secondary);
    margin-top: 3px;
    min-width: 20px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--gray-400);
    margin: 0;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--secondary);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -10px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-60 {
    margin-top: 60px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .footer-col:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .section {
        padding: 80px 0;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .welcome-grid,
    .digital-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .welcome-image img {
        height: auto;
    }

    .cta-title {
        font-size: 2rem;
    }

    /* Mobile Navigation */
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--light);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-100%);
        transition: var(--transition);
        overflow-y: auto;
        box-shadow: var(--shadow-xl);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .nav-item {
        width: 100%;
        margin-bottom: 10px;
    }

    .nav-link {
        width: 100%;
        padding: 15px 20px;
        font-size: 1.125rem;
    }

    .nav-link i {
        font-size: 1.25rem;
    }

    /* Mobile Dropdown */
    .has-dropdown .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background: var(--gray-50);
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .has-dropdown .dropdown-menu.active {
        max-height: 500px;
        margin-top: 10px;
        border-radius: var(--radius-md);
    }

    .dropdown-item {
        padding: 12px 30px;
    }

    .nav-cta {
        margin-top: 20px;
        width: 100%;
    }

    .nav-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 15px 24px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    .section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .welcome-image img {
        height: auto;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-content {
        padding: 60px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-col:first-child {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 576px) {

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .welcome-image img {
        height: auto;
    }

    .image-badge {
        top: 10px;
        right: 10px;
        padding: 8px 16px;
        font-size: 0.875rem;
    }

    .message-quote {
        padding: 20px;
    }

    .digital-buttons {
        flex-direction: column;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {

    .header,
    .footer,
    .scroll-indicator,
    .back-to-top {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }

    .container {
        width: 100%;
        max-width: none;
        padding: 0;
    }

    .section {
        padding: 20pt 0;
        page-break-inside: avoid;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .btn {
        display: none;
    }
}

/* ============================================
   MODERN HERO SECTION
   ============================================ */
.modern-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #2a2a2a 0%, #404040 50%, #5a5a5a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
}

/* Animated Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(42, 109, 245, 0.1), rgba(0, 200, 150, 0.05));
    filter: blur(60px);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: 20%;
    animation-delay: -5s;
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.1), rgba(42, 109, 245, 0.05));
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    right: -50px;
    animation-delay: -10s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    left: 10%;
    animation-delay: -15s;
}

.shape-5 {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 20%;
    animation-delay: -7s;
}

.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(42, 109, 245, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 200, 150, 0.1) 0%, transparent 50%);
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    color: var(--light);
}

.content-wrapper {
    max-width: 600px;
}

/* Modern Badge */
.modern-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.modern-badge.animate-badge {
    animation: slideInLeft 0.8s ease-out;
}

.badge-icon {
    color: var(--secondary);
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: badgeGlow 3s infinite;
}

/* Modern Title */
.modern-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--light);
}

.title-line {
    display: block;
}

.title-line-1 {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-line-2 {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.text-rotate {
    display: inline-block;
    position: relative;
    height: 1.2em;
    overflow: hidden;
    vertical-align: bottom;
    margin-right: 10px;
}

.rotate-item {
    display: block;
    animation: rotateWords 12s infinite;
    opacity: 0;
    position: absolute;
    color: var(--secondary);
    font-weight: 700;
}

.rotate-item:nth-child(1) {
    animation-delay: 0s;
}

.rotate-item:nth-child(2) {
    animation-delay: 3s;
}

.rotate-item:nth-child(3) {
    animation-delay: 6s;
}

.rotate-item:nth-child(4) {
    animation-delay: 9s;
}

.title-highlight {
    position: relative;
    color: var(--light);
    z-index: 1;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--secondary), transparent);
    opacity: 0.3;
    border-radius: 4px;
    z-index: -1;
}

/* Modern Description */
.modern-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 540px;
}

.modern-description.animate-fade {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Modern Buttons */
.cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.cta-group.animate-buttons {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.modern-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    box-shadow: 0 10px 30px rgba(42, 109, 245, 0.3);
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(42, 109, 245, 0.4);
}

.secondary-btn {
    background: transparent;
    color: var(--light);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.btn-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.primary-btn:hover .btn-hover-effect {
    left: 100%;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-icon {
    color: var(--secondary);
}

/* Right Column - Stats Card */
.hero-right {
    position: relative;
}

.stats-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.stats-card.animate-card {
    animation: fadeInUp 0.8s ease-out 1s both;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.stats-header {
    margin-bottom: 40px;
    text-align: center;
}

.stats-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 8px;
}

.stats-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.modern-stat {
    text-align: center;
}

.stat-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.stat-circle-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.stat-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.stat-circle-progress {
    fill: none;
    stroke: var(--secondary);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 2s ease-out;
}

.stat-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
}

.stat-info {
    color: var(--light);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.stat-change {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--secondary);
}

.stats-footer {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.members-count {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.members-avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: -12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:nth-child(2) {
    background: linear-gradient(135deg, #FF6B6B, #FFA726);
}

.avatar:nth-child(3) {
    background: linear-gradient(135deg, #66BB6A, #42A5F5);
}

.avatar:nth-child(4) {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.members-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatElement 8s infinite ease-in-out;
}

.element-1 {
    top: -20px;
    right: 20%;
    animation-delay: 1s;
}

.element-2 {
    bottom: 40px;
    left: -40px;
    animation-delay: 2s;
}

.element-text {
    font-size: 0.875rem;
    color: var(--light);
    white-space: nowrap;
}

/* Modern Scroll Indicator */
.modern-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.7);
    z-index: 2;
}

.scroll-text {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInOut 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1px;
    overflow: hidden;
    position: relative;
}

.scroll-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 1px;
    animation: scrollProgress 2s infinite ease-in-out;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

/* Particle Background */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-20px) translateX(10px);
    }

    50% {
        transform: translateY(0) translateX(20px);
    }

    75% {
        transform: translateY(20px) translateX(10px);
    }
}

@keyframes badgeGlow {
    0% {
        left: -100%;
    }

    20%,
    100% {
        left: 100%;
    }
}

@keyframes rotateWords {

    0%,
    20% {
        opacity: 0;
        transform: translateY(-20px);
    }

    5%,
    15% {
        opacity: 1;
        transform: translateY(0);
    }

    25%,
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

@keyframes floatElement {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-10px) rotate(2deg);
    }

    66% {
        transform: translateY(5px) rotate(-2deg);
    }
}

@keyframes scrollProgress {

    0%,
    100% {
        transform: translateY(-100%);
    }

    50% {
        transform: translateY(100%);
    }
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .modern-title {
        font-size: 3.5rem;
    }

    .hero-grid {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .modern-title {
        font-size: 3rem;
    }

    .content-wrapper {
        margin: 0 auto;
    }

    .cta-group {
        justify-content: center;
    }

    .trust-indicators {
        justify-content: center;
    }

    .stats-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .floating-element {
        display: none;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        padding: 80px 0 40px;
    }

    .modern-title {
        font-size: 2.5rem;
    }

    .modern-description {
        font-size: 1.125rem;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .modern-btn {
        width: 100%;
        max-width: 300px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .modern-title {
        font-size: 2rem;
    }

    .modern-badge {
        padding: 10px 20px;
    }

    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .members-count {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}



/* ============================================
   About Page Styles
   ============================================ */


/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark) 0%, #2D3748 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 31, 54, 0.9) 0%, rgba(26, 31, 54, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--light);
    max-width: 800px;
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(42, 109, 245, 0.2);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge i {
    margin-right: 8px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    color: var(--light);
}

.hero-title .highlight {
    color: var(--secondary);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--secondary);
    opacity: 0.2;
    border-radius: 4px;
    z-index: -1;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-200);
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-light {
    background: var(--gray-50);
}

.section-dark {
    background: var(--dark);
    color: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-dark .section-title {
    color: var(--light);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-description {
    color: var(--gray-300);
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.125rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.image-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.decoration-1 {
    top: -20px;
    left: -20px;
}

.decoration-2 {
    bottom: -20px;
    right: -20px;
    background: var(--secondary);
}

/* History Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
    opacity: 0.2;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: var(--shadow-lg);
}

.timeline-content {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

/* Mission Vision Cards */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mv-card {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.mv-card:nth-child(2) .mv-icon {
    background: var(--secondary);
}

.mv-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

/* Management Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 25px;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.team-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.value-card:hover {
    background: var(--gray-300);
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.value-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.value-card p {
    color: var(--primary);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.875rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 25px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

/* Smooth Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: float 2s ease-in-out infinite;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--light);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator a:hover {
    opacity: 1;
}

.scroll-indicator i {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.scroll-indicator span {
    font-size: 0.875rem;
    font-weight: 500;
}


/** Service styles 
        /* ============================================
   SERVICES PAGE SPECIFIC STYLES
   ============================================ */

/* Services Hero */
.services-hero {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, #0A0F2B 0%, #1A1F36 50%, #2D1B69 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(42, 109, 245, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(0, 200, 150, 0.15) 0%, transparent 50%);
}

.animated-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
    animation: moveDots 20s linear infinite;
}

@keyframes moveDots {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 40px 40px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: slideInUp 0.8s ease-out;
}

.hero-badge i {
    color: var(--secondary);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--light);
}

.title-line {
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 40px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    animation: scrollDot 2s infinite ease-in-out;
}

@keyframes scrollDot {
    0% {
        transform: translateY(-100%);
    }

    50% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(200%);
    }
}

/* Services Navigation */
.services-nav-section {
    position: sticky;
    top: 8rem;
    z-index: 100;
    background: var(--light);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 20px 0;
}

.services-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.services-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    color: var(--gray-600);
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    min-width: 140px;
}

.services-nav .nav-item:hover,
.services-nav .nav-item.active {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(42, 109, 245, 0.2);
}

.nav-icon {
    width: 50px;
    height: 50px;
    background: var(--gray-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.nav-item:hover .nav-icon,
.nav-item.active .nav-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--light);
}

.nav-item span {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Sections */
.service-section {
    padding: 100px 0;
    position: relative;
}

.service-alt {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card-header {
    padding: 30px 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.card-badge {
    background: var(--secondary);
    color: var(--light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content {
    padding: 25px 30px;
    flex-grow: 1;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.card-description {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.card-features i {
    color: var(--secondary);
    font-size: 0.875rem;
    min-width: 20px;
}

.card-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-stat {
    display: flex;
    flex-direction: column;
}

.service-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.service-stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divider {
    width: 1px;
    height: 30px;
    background: var(--gray-300);
}

.card-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    background: rgba(42, 109, 245, 0.1);
    transition: all 0.3s ease;
}

.card-cta:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateX(5px);
}

/* Savings Comparison */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.comparison-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary);
}

.comparison-header {
    padding: 30px 30px 0;
    text-align: center;
}

.comparison-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.comparison-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.best-value {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--dark);
}

.featured-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
}

.comparison-body {
    padding: 0 30px 30px;
    flex-grow: 1;
}

.rate-display {
    text-align: center;
    margin-bottom: 30px;
}

.rate-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.rate-period {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.term-options {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.term {
    padding: 8px 16px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.term:hover,
.term.active {
    background: var(--primary);
    color: var(--light);
}

.comparison-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.comparison-features i {
    color: var(--secondary);
    font-size: 0.875rem;
}

.comparison-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.comparison-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.comparison-note i {
    color: var(--primary);
}

.comparison-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

.comparison-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(42, 109, 245, 0.3);
}

/* Investment Grid */
.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.investment-card {
    background: var(--light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.investment-visual {
    padding: 30px 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.visual-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.visual-graph {
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.graph-bar {
    height: 8px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px;
    margin-bottom: 5px;
    transition: width 1.5s ease-out;
}

.graph-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.investment-content {
    padding: 25px 30px;
    flex-grow: 1;
}

.investment-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.investment-description {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

.investment-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.investment-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    width: fit-content;
}

.investment-link:hover {
    border-bottom-color: var(--primary);
    gap: 12px;
}

/* Wellbeing Grid */
.wellbeing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.wellbeing-card {
    background: var(--light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.wellbeing-visual {
    padding: 30px 30px 0;
    position: relative;
}

.visual-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--secondary);
    color: var(--light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.visual-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--light);
    margin: 0 auto 20px;
}

.wellbeing-content {
    padding: 0 30px 30px;
    flex-grow: 1;
    text-align: center;
}

.wellbeing-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.wellbeing-description {
    color: var(--gray-600);
    margin-bottom: 25px;
    line-height: 1.6;
}

.wellbeing-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-600);
    font-size: 0.9375rem;
    justify-content: center;
}

.feature i {
    color: var(--secondary);
    font-size: 0.875rem;
    min-width: 20px;
}

.wellbeing-cta {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

.wellbeing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(42, 109, 245, 0.3);
}

/* CTA Section */
.services-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 80px 0;
    color: var(--light);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-text {
    flex: 1;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--light);
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .services-nav {
        gap: 20px;
    }

    .nav-item {
        min-width: 120px;
        padding: 12px 20px;
    }

    .services-grid,
    .comparison-grid,
    .investment-grid,
    .wellbeing-grid {
        grid-template-columns: 1fr;
    }

    .comparison-card.featured {
        transform: none;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .services-hero {
        min-height: 50vh;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .services-nav-section {
        display: none;
    }

    .nav-item {
        width: 100%;
        max-width: 300px;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 15px 20px;
    }

    .nav-icon {
        margin-right: 15px;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .service-section {
        padding: 60px 0;
    }

    .hero-badge {
        padding: 10px 20px;
        font-size: 0.875rem;
    }

    .card-header,
    .card-content,
    .card-footer,
    .investment-visual,
    .investment-content,
    .wellbeing-visual,
    .wellbeing-content {
        padding: 20px;
    }

    .rate-value {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 1.875rem;
    }
}

/* Animation Classes */
.animate-badge {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.animate-title {
    opacity: 0;
    transform: translateY(20px);
}

.title-line-1 {
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.title-line-2 {
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

.animate-description {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.8s forwards;
}

.animate-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for cards */
.animate-card:nth-child(2) {
    transition-delay: 0.2s;
}

.animate-card:nth-child(3) {
    transition-delay: 0.4s;
}

/** Contact Us Page Specific Styles
/* ============================================
   CONTACT US PAGE SPECIFIC STYLES
   ============================================ */


/* ============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================ */

/* Contact Hero */
.contact-hero {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, #0A0F2B 0%, #1A1F36 50%, #2D1B69 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(42, 109, 245, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 200, 150, 0.2) 0%, transparent 50%);
}

.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(40px);
    animation: floatShape 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 20%;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: -50px;
    animation-delay: -10s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-30px) rotate(120deg);
    }

    66% {
        transform: translateY(30px) rotate(240deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: slideInUp 0.8s ease-out;
}

.hero-badge i {
    color: var(--secondary);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--light);
}

.title-line {
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    animation: scrollDot 2s infinite ease-in-out;
}

/* Contact Methods */
.contact-methods {
    padding: 80px 0;
    background: var(--light);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.method-card {
    background: var(--light);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.method-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.method-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.card-description {
    color: var(--gray-600);
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-info {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.info-item i {
    color: var(--primary);
    font-size: 1.125rem;
    margin-top: 2px;
    min-width: 20px;
}

.info-content {
    flex: 1;
}

.info-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 4px;
    font-weight: 500;
}

.info-value {
    display: block;
    font-size: 1rem;
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-value:hover {
    color: var(--primary);
}

.method-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.method-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(42, 109, 245, 0.3);
    gap: 15px;
}

/* Contact Main Section */
.contact-main {
    padding: 80px 0;
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-section {
    background: var(--light);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.section-subtitle {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    position: relative;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group.focused .form-label {
    color: var(--primary);
    transform: translateY(-5px);
}

.form-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.form-label i {
    color: var(--primary);
    font-size: 0.875rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    background: var(--light);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(42, 109, 245, 0.1);
}

.form-group.success .form-input,
.form-group.success .form-select,
.form-group.success .form-textarea {
    border-color: var(--success);
}

.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
    border-color: var(--error);
}

.form-feedback {
    font-size: 0.875rem;
    margin-top: 6px;
    min-height: 20px;
}

.form-group.success .form-feedback {
    color: var(--success);
}

.form-group.error .form-feedback {
    color: var(--error);
}

.char-counter {
    text-align: right;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 5px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.checkbox-label {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.4;
}

.form-actions {
    margin-top: 40px;
}

.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading .btn-text,
.btn.loading .fa-paper-plane {
    opacity: 0;
}

.btn.loading .loading-dots {
    display: flex;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    gap: 4px;
}

.loading-dots {
    display: none;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: var(--light);
    border-radius: 50%;
    animation: loadingDot 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes loadingDot {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.form-note i {
    color: var(--success);
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background: var(--success);
    color: var(--light);
    border-radius: var(--radius-lg);
    margin-top: 30px;
    animation: fadeIn 0.6s ease-out;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounceIn 0.6s ease-out;
}

.success-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--light);
}

.success-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card,
.faq-card,
.social-card {
    background: var(--light);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-title,
.faq-title,
.social-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.info-title i,
.faq-title i,
.social-title i {
    color: var(--primary);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.info-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 3px;
}

.info-note {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-style: italic;
}

/* FAQ */
.faq-list {
    margin-bottom: 25px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 15px 20px;
    background: var(--gray-50);
    border: none;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question.active {
    background: var(--primary);
    color: var(--light);
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 0.875rem;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 20px 0;
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.faq-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: gap 0.3s ease;
}

.faq-link:hover {
    gap: 12px;
}

/* Social Card */
.social-description {
    color: var(--gray-600);
    margin-bottom: 25px;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.contact-social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.contact-social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--light);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.contact-social-link i {
    font-size: 1.125rem;
}

.contact-social-link.facebook {
    background: #1877F2;
}

.contact-social-link.twitter {
    background: #000b11;
}

.contact-social-link.linkedin {
    background: #0077B5;
}

.contact-social-link.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.contact-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--light);
}

.map-container {
    margin-top: 40px;
}

.map-placeholder {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.map-image {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.pin-icon {
    width: 60px;
    height: 60px;
    background: var(--error);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: pulsePin 2s infinite;
}

@keyframes pulsePin {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 20px rgba(239, 68, 68, 0);
    }
}

.map-pin.pulse .pin-icon {
    animation: none;
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.pin-label {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: var(--light);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.map-placeholder:hover .map-overlay {
    transform: translateY(0);
}

.overlay-content h3 {
    color: var(--light);
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.map-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.landmarks {
    padding: 25px 30px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.landmarks h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.landmark-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.landmark {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.landmark i {
    color: var(--primary);
    min-width: 20px;
}

.transport-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.transport-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.transport-card:hover {
    background: var(--gray-100);
    transform: translateY(-5px);
}

.transport-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.transport-content h4 {
    font-size: 1.125rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.transport-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

/* Emergency Section */
.emergency-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #FFF3CD 0%, #FFEAA7 100%);
}

.emergency-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--light);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.emergency-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
    animation: emergencyPulse 3s infinite;
}

@keyframes emergencyPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(239, 68, 68, 0);
    }
}

.emergency-content {
    flex: 1;
}

.emergency-content h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.emergency-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

.emergency-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.emergency-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    padding: 15px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.emergency-contact:hover {
    background: var(--gray-100);
    transform: translateX(10px);
}

.emergency-contact i {
    font-size: 1.5rem;
    color: #EF4444;
}

.contact-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.contact-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #DC2626;
}

.emergency-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: #DC2626;
}

.emergency-note i {
    font-size: 1rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .contact-grid {
        gap: 40px;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-section,
    .contact-info-section {
        max-width: 700px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .emergency-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .contact-social-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 60vh;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .methods-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-section,
    .info-card,
    .faq-card,
    .social-card {
        padding: 30px 20px;
    }

    .map-actions {
        flex-direction: column;
    }

    .map-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .transport-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {

    .contact-methods,
    .contact-main,
    .map-section,
    .emergency-section {
        padding: 60px 0;
    }

    .method-card {
        padding: 30px 20px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .emergency-card {
        padding: 30px 20px;
    }

    .emergency-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .contact-number {
        font-size: 1.125rem;
    }
}

/* Animation Classes */
.animate-badge {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.animate-title .title-line {
    opacity: 0;
    transform: translateY(20px);
}

.title-line:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.title-line:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

.animate-description {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.8s forwards;
}

.animate-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for contact cards */
.method-card:nth-child(1) {
    transition-delay: 0.1s;
}

.method-card:nth-child(2) {
    transition-delay: 0.2s;
}

.method-card:nth-child(3) {
    transition-delay: 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}