/* Modern CSS Reset and Base Styles */
/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.1s ease, visibility 0.1s ease;
}

.preloader-content {
    text-align: center;
}

.preloader .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--text-dark);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.back-to-top i {
    font-size: 1.25rem;
}

/* Tooltip Styles */
[data-tooltip] {
    position: relative;
    cursor: help;
}

.tooltip {
    position: fixed;
    background: var(--gray-800);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.4;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

.tooltip::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gray-800);
    transform: rotate(45deg);
}

.tooltip.top::after {
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.tooltip.bottom::after {
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.tooltip.left::after {
    right: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.tooltip.right::after {
    left: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

/* Form Validation Styles */
.error-message {
    color: var(--danger);
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: none;
}

input.invalid,
textarea.invalid,
select.invalid {
    border-color: var(--danger) !important;
    background-color: rgba(220, 53, 69, 0.05);
}

input:focus.invalid,
textarea:focus.invalid,
select:focus.invalid {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

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

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animations */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
:root {
    /* Color Palette - Gomigo Brand Colors */
    --primary: #FFD700;        /* Gomigo Yellow */
    --primary-light: #FFE44D;  /* Lighter yellow */
    --primary-dark: #E6C200;   /* Darker yellow */
    --primary-rgb: 255, 215, 0; /* RGB for opacity variations */
    
    /* Secondary Colors */
    --secondary: #6C757D;
    --success: #28A745;
    --danger: #DC3545;
    --warning: #FFC107;
    --info: #17A2B8;
    
    /* Grayscale */
    --white: #FFFFFF;
    --black: #000000;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    
    /* Backgrounds */
    --bg-light: #FFFFFF;
    --bg-dark: #1A1A1A;
    --bg-gray: #F8F9FA;
    --bg-overlay: rgba(0, 0, 0, 0.5);
    
    /* Text Colors */
    --text-primary: #333333;
    --text-secondary: #6C757D;
    --text-light: #F8F9FA;
    --text-dark: #212529;
    
    /* Smooth Scrolling with Momentum */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-size-base: 1rem;    /* 16px */
    --line-height-base: 1.6;
    
    /* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

/* Careers Page Styles */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, #4a6cf7 0%, #2541b2 100%);
    color: white;
    padding: 120px 0 100px;
    overflow: hidden;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.hero-wave .shape-fill {
    fill: #FFFFFF;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-gray) 100%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    color: #4a6cf7;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1e1e1e;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 700px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(74, 108, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2.5rem;
    color: var(--primary); /* Changed to primary yellow */
    transition: color 0.3s ease;
}

.value-card:hover .value-icon i {
    color: var(--white);
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Specific styles for Careers Page */
.careers-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); /* Using CSS variables */
    color: var(--white);
    padding: 120px 0 100px;
    overflow: hidden;
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/undraw_by-the-road_178b.png') no-repeat center center/cover;
    opacity: 0.08;
    z-index: 1;
}

.careers-hero .container {
    position: relative;
    z-index: 2;
}

.careers-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, var(--white), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.careers-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.7s ease-out forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.careers-intro {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.job-openings {
    padding: 80px 0;
}

.job-categories {
    display: flex;
    gap: 1rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.job-listings {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.job-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.job-type {
    background: var(--light-bg);
    color: var(--text-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-type.internship {
    background: #e3f2fd;
    color: #1976d2;
}

.job-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.job-details i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.job-description {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.job-skills span {
    background: var(--light-bg);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-color);
}

.application-form {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.application-form h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.application-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

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

/* Responsive styles */
@media (max-width: 992px) {
    .job-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .job-listings {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .application-form-container {
        padding: 2rem 1.5rem;
    }
    
    .careers-hero h1 {
        font-size: 2.5rem;
    }
}

/* Focus Styles */
*:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.5);
}

/* Spacing */
    --spacing-unit: 1rem;      /* 16px */
    --container-max-width: 1200px;
    
    /* Border Radius */
    --border-radius-sm: 0.25rem;  /* 4px */
    --border-radius: 0.5rem;     /* 8px */
    --border-radius-lg: 1rem;    /* 16px */
    --border-radius-xl: 2rem;    /* 32px */
    
    /* Box Shadow */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-yellow: 0 4px 20px rgba(255, 215, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition: 250ms ease-in-out;
    --transition-slow: 400ms ease-in-out;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-dark));
    --gradient-yellow: linear-gradient(135deg, #FFD700, #FFC000);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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

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

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

/* Modern CSS Reset and Base Styles */
/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.1s ease, visibility 0.1s ease;
}

.preloader-content {
    text-align: center;
}

.preloader .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--text-dark);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.back-to-top i {
    font-size: 1.25rem;
}

/* Tooltip Styles */
[data-tooltip] {
    position: relative;
    cursor: help;
}

.tooltip {
    position: fixed;
    background: var(--gray-800);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.4;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

.tooltip::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gray-800);
    transform: rotate(45deg);
}

.tooltip.top::after {
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.tooltip.bottom::after {
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.tooltip.left::after {
    right: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.tooltip.right::after {
    left: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

/* Form Validation Styles */
.error-message {
    color: var(--danger);
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: none;
}

input.invalid,
textarea.invalid,
select.invalid {
    border-color: var(--danger) !important;
    background-color: rgba(220, 53, 69, 0.05);
}

input:focus.invalid,
textarea:focus.invalid,
select:focus.invalid {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

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

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animations */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
:root {
    /* Color Palette - Gomigo Brand Colors */
    --primary: #FFD700;        /* Gomigo Yellow */
    --primary-light: #FFE44D;  /* Lighter yellow */
    --primary-dark: #E6C200;   /* Darker yellow */
    --primary-rgb: 255, 215, 0; /* RGB for opacity variations */
    
    /* Secondary Colors */
    --secondary: #6C757D;
    --success: #28A745;
    --danger: #DC3545;
    --warning: #FFC107;
    --info: #17A2B8;
    
    /* Grayscale */
    --white: #FFFFFF;
    --black: #000000;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    
    /* Backgrounds */
    --bg-light: #FFFFFF;
    --bg-dark: #1A1A1A;
    --bg-gray: #F8F9FA;
    --bg-overlay: rgba(0, 0, 0, 0.5);
    
    /* Text Colors */
    --text-primary: #333333;
    --text-secondary: #6C757D;
    --text-light: #F8F9FA;
    --text-dark: #212529;
    
    /* Smooth Scrolling with Momentum */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-size-base: 1rem;    /* 16px */
    --line-height-base: 1.6;
    
    /* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

/* Careers Page Styles */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, #4a6cf7 0%, #2541b2 100%);
    color: white;
    padding: 120px 0 100px;
    overflow: hidden;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.hero-wave .shape-fill {
    fill: #FFFFFF;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-gray) 100%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    color: #4a6cf7;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1e1e1e;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 700px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(74, 108, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2.5rem;
    color: var(--primary); /* Changed to primary yellow */
    transition: color 0.3s ease;
}

.value-card:hover .value-icon i {
    color: var(--white);
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Specific styles for Careers Page */
.careers-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); /* Using CSS variables */
    color: var(--white);
    padding: 120px 0 100px;
    overflow: hidden;
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/undraw_by-the-road_178b.png') no-repeat center center/cover;
    opacity: 0.08;
    z-index: 1;
}

.careers-hero .container {
    position: relative;
    z-index: 2;
}

.careers-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, var(--white), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.careers-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.7s ease-out forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.careers-intro {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.job-openings {
    padding: 80px 0;
}

.job-categories {
    display: flex;
    gap: 1rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.job-listings {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.job-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.job-type {
    background: var(--light-bg);
    color: var(--text-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-type.internship {
    background: #e3f2fd;
    color: #1976d2;
}

.job-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.job-details i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.job-description {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.job-skills span {
    background: var(--light-bg);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-color);
}

.application-form {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.application-form h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.application-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

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

/* Responsive styles */
@media (max-width: 992px) {
    .job-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .job-listings {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .application-form-container {
        padding: 2rem 1.5rem;
    }
    
    .careers-hero h1 {
        font-size: 2.5rem;
    }
}

/* Focus Styles */
*:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.5);
}

/* Spacing */
    --spacing-unit: 1rem;      /* 16px */
    --container-max-width: 1200px;
    
    /* Border Radius */
    --border-radius-sm: 0.25rem;  /* 4px */
    --border-radius: 0.5rem;     /* 8px */
    --border-radius-lg: 1rem;    /* 16px */
    --border-radius-xl: 2rem;    /* 32px */
    
    /* Box Shadow */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-yellow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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

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

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

/* Modern CSS Reset and Base Styles */
/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.1s ease, visibility 0.1s ease;
}

.preloader-content {
    text-align: center;
}

.preloader .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--text-dark);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.back-to-top i {
    font-size: 1.25rem;
}

/* Tooltip Styles */
[data-tooltip] {
    position: relative;
    cursor: help;
}

.tooltip {
    position: fixed;
    background: var(--gray-800);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.4;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

.tooltip::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gray-800);
    transform: rotate(45deg);
}

.tooltip.top::after {
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.tooltip.bottom::after {
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.tooltip.left::after {
    right: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.tooltip.right::after {
    left: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

/* Form Validation Styles */
.error-message {
    color: var(--danger);
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: none;
}

input.invalid,
textarea.invalid,
select.invalid {
    border-color: var(--danger) !important;
    background-color: rgba(220, 53, 69, 0.05);
}

input:focus.invalid,
textarea:focus.invalid,
select:focus.invalid {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

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

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animations */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
:root {
    /* Color Palette - Gomigo Brand Colors */
    --primary: #FFD700;        /* Gomigo Yellow */
    --primary-light: #FFE44D;  /* Lighter yellow */
    --primary-dark: #E6C200;   /* Darker yellow */
    --primary-rgb: 255, 215, 0; /* RGB for opacity variations */
    
    /* Secondary Colors */
    --secondary: #6C757D;
    --success: #28A745;
    --danger: #DC3545;
    --warning: #FFC107;
    --info: #17A2B8;
    
    /* Grayscale */
    --white: #FFFFFF;
    --black: #000000;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    
    /* Backgrounds */
    --bg-light: #FFFFFF;
    --bg-dark: #1A1A1A;
    --bg-gray: #F8F9FA;
    --bg-overlay: rgba(0, 0, 0, 0.5);
    
    /* Text Colors */
    --text-primary: #333333;
    --text-secondary: #6C757D;
    --text-light: #F8F9FA;
    --text-dark: #212529;
    
    /* Smooth Scrolling with Momentum */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-size-base: 1rem;    /* 16px */
    --line-height-base: 1.6;
    
    /* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

/* Careers Page Styles */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, #4a6cf7 0%, #2541b2 100%);
    color: white;
    padding: 120px 0 100px;
    overflow: hidden;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.hero-wave .shape-fill {
    fill: #FFFFFF;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-gray) 100%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    color: #4a6cf7;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1e1e1e;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 700px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(74, 108, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2.5rem;
    color: var(--primary); /* Changed to primary yellow */
    transition: color 0.3s ease;
}

.value-card:hover .value-icon i {
    color: var(--white);
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Specific styles for Careers Page */
.careers-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); /* Using CSS variables */
    color: var(--white);
    padding: 120px 0 100px;
    overflow: hidden;
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/undraw_by-the-road_178b.png') no-repeat center center/cover;
    opacity: 0.08;
    z-index: 1;
}

.careers-hero .container {
    position: relative;
    z-index: 2;
}

.careers-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, var(--white), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.careers-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.7s ease-out forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.careers-intro {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.job-openings {
    padding: 80px 0;
}

.job-categories {
    display: flex;
    gap: 1rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.job-listings {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.job-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.job-type {
    background: var(--light-bg);
    color: var(--text-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-type.internship {
    background: #e3f2fd;
    color: #1976d2;
}

.job-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.job-details i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.job-description {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.job-skills span {
    background: var(--light-bg);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-color);
}

.application-form {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.application-form h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.application-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

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

/* Responsive styles */
@media (max-width: 992px) {
    .job-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .job-listings {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .application-form-container {
        padding: 2rem 1.5rem;
    }
    
    .careers-hero h1 {
        font-size: 2.5rem;
    }
}

/* Focus Styles */
*:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.5);
}

/* Spacing */
    --spacing-unit: 1rem;      /* 16px */
    --container-max-width: 1200px;
    
    /* Border Radius */
    --border-radius-sm: 0.25rem;  /* 4px */
    --border-radius: 0.5rem;     /* 8px */
    --border-radius-lg: 1rem;    /* 16px */
    --border-radius-xl: 2rem;    /* 32px */
    
    /* Box Shadow */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-yellow: 0 4px 20px rgba(255, 215, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition: 250ms ease-in-out;
    --transition-slow: 400ms ease-in-out;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-dark));
    --gradient-yellow: linear-gradient(135deg, #FFD700, #FFC000);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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

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

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

/* Modern CSS Reset and Base Styles */
/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.1s ease, visibility 0.1s ease;
}

.preloader-content {
    text-align: center;
}

.preloader .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--text-dark);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.back-to-top i {
    font-size: 1.25rem;
}

/* Tooltip Styles */
[data-tooltip] {
    position: relative;
    cursor: help;
}

.tooltip {
    position: fixed;
    background: var(--gray-800);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.4;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

.tooltip::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gray-800);
    transform: rotate(45deg);
}

.tooltip.top::after {
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.tooltip.bottom::after {
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.tooltip.left::after {
    right: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.tooltip.right::after {
    left: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

/* Form Validation Styles */
.error-message {
    color: var(--danger);
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: none;
}

input.invalid,
textarea.invalid,
select.invalid {
    border-color: var(--danger) !important;
    background-color: rgba(220, 53, 69, 0.05);
}

input:focus.invalid,
textarea:focus.invalid,
select:focus.invalid {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

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

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animations */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
:root {
    /* Color Palette - Gomigo Brand Colors */
    --primary: #FFD700;        /* Gomigo Yellow */
    --primary-light: #FFE44D;  /* Lighter yellow */
    --primary-dark: #E6C200;   /* Darker yellow */
    --primary-rgb: 255, 215, 0; /* RGB for opacity variations */
    
    /* Secondary Colors */
    --secondary: #6C757D;
    --success: #28A745;
    --danger: #DC3545;
    --warning: #FFC107;
    --info: #17A2B8;
    
    /* Grayscale */
    --white: #FFFFFF;
    --black: #000000;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    
    /* Backgrounds */
    --bg-light: #FFFFFF;
    --bg-dark: #1A1A1A;
    --bg-gray: #F8F9FA;
    --bg-overlay: rgba(0, 0, 0, 0.5);
    
    /* Text Colors */
    --text-primary: #333333;
    --text-secondary: #6C757D;
    --text-light: #F8F9FA;
    --text-dark: #212529;
    
    /* Smooth Scrolling with Momentum */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-size-base: 1rem;    /* 16px */
    --line-height-base: 1.6;
    
    /* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

/* Careers Page Styles */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, #4a6cf7 0%, #2541b2 100%);
    color: white;
    padding: 120px 0 100px;
    overflow: hidden;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.hero-wave .shape-fill {
    fill: #FFFFFF;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-gray) 100%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    color: #4a6cf7;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1e1e1e;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 700px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(74, 108, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2.5rem;
    color: var(--primary); /* Changed to primary yellow */
    transition: color 0.3s ease;
}

.value-card:hover .value-icon i {
    color: var(--white);
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Specific styles for Careers Page */
.careers-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); /* Using CSS variables */
    color: var(--white);
    padding: 120px 0 100px;
    overflow: hidden;
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/undraw_by-the-road_178b.png') no-repeat center center/cover;
    opacity: 0.08;
    z-index: 1;
}

.careers-hero .container {
    position: relative;
    z-index: 2;
}

.careers-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, var(--white), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.careers-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.7s ease-out forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.careers-intro {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.job-openings {
    padding: 80px 0;
}

.job-categories {
    display: flex;
    gap: 1rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.job-listings {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.job-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.job-type {
    background: var(--light-bg);
    color: var(--text-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-type.internship {
    background: #e3f2fd;
    color: #1976d2;
}

.job-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.job-details i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.job-description {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.job-skills span {
    background: var(--light-bg);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-color);
}

.application-form {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.application-form h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.application-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

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

/* Responsive styles */
@media (max-width: 992px) {
    .job-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .job-listings {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .application-form-container {
        padding: 2rem 1.5rem;
    }
    
    .careers-hero h1 {
        font-size: 2.5rem;
    }
}

/* Focus Styles */
*:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.5);
}

/* Spacing */
    --spacing-unit: 1rem;      /* 16px */
    --container-max-width: 1200px;
    
    /* Border Radius */
    --border-radius-sm: 0.25rem;  /* 4px */
    --border-radius: 0.5rem;     /* 8px */
    --border-radius-lg: 1rem;    /* 16px */
    --border-radius-xl: 2rem;    /* 32px */
    
    /* Box Shadow */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-yellow: 0 4px 20px rgba(255, 215, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition: 250ms ease-in-out;
    --transition-slow: 400ms ease-in-out;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-dark));
    --gradient-yellow: linear-gradient(135deg, #FFD700, #FFC000);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 2px solid transparent;
    border-radius: 50px;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.btn:disabled,
.btn.disabled {
    opacity: 0.65;
    pointer-events: none;
    box-shadow: none;
}

/* Button Sizes */
.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.8px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Button Variants */
.btn-primary {
    color: var(--black);
    background: var(--gradient-yellow);
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #FFE44D, #FFD700);
    transition: all 0.4s ease;
    z-index: -1;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: var(--black);
}

.btn-primary:hover::before {
    width: 100%;
    opacity: 1;
}

.btn-outline {
    color: var(--primary);
    background: transparent;
    border: 2px solid var(--primary);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-yellow);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-outline:hover {
    color: var(--black);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-secondary {
    color: var(--white);
    background: var(--gray-800);
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gray-900);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-success {
    color: var(--white);
    background: linear-gradient(135deg, #34D399, #10B981);
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Button with Icon */
.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon i {
    font-size: 1.1em;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateY(0);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    position: relative;
}

.navbar .logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.navbar .navbar .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 5px 0;
}

.navbar .logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FFD700;
    padding: 2px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.navbar .logo:hover .logo-img {
    transform: rotate(10deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.navbar .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}

/* Add padding to body to account for fixed navbar */
body {
    padding-top: 80px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .navbar {
        padding: 10px 0;
    }
    
    .navbar .container {
        padding: 0 20px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray-800);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0.5rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--black);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-yellow);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateX(-50%);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
    background: var(--gradient-yellow);
}

.nav-links a.active {
    font-weight: 700;
    color: var(--black);
}

/* Navigation Buttons */
.nav-buttons .btn {
    margin-left: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

.nav-buttons .btn-outline:hover {
    color: var(--black);
    background: var(--gradient-yellow);
    border-color: transparent;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    gap: 1.25rem;
    margin-left: 2.5rem;
    align-items: center;
}

/* Mobile Navigation Toggle */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-menu:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.2);
    border-radius: 4px;
}

.hamburger-menu .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--gray-800);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Responsive Navigation */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero {
        padding: 10rem 0 6rem;
    }
    
    .hero h1 {
        font-size: 3.25rem;
    }
    
    .hero .container {
        gap: 2rem;
    }
    
    .hero-image {
        max-width: 500px;
    }
}

@media (max-width: 1024px) {
    .navbar .container {
        padding: 0 2rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 6rem 2rem;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 0;
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.4s ease;
    }
    
    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links li:nth-child(1) a { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) a { transition-delay: 0.15s; }
    .nav-links li:nth-child(3) a { transition-delay: 0.2s; }
    .nav-links li:nth-child(4) a { transition-delay: 0.25s; }
    .nav-links li:nth-child(5) a { transition-delay: 0.3s; }
    .nav-links li:nth-child(6) a { transition-delay: 0.35s; }
    
    .nav-buttons {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .navbar .hamburger-menu .bar {
        background-color: var(--gray-800);
    }
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        padding-right: 0;
        margin: 0 auto;
    }
    
    .hero h1::after {
        left: 50%;
        transform: translateX(-50%) rotate(-0.5deg);
        width: 80%;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        margin: 2rem auto 0;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .features {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem !important;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        padding: 4rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .stat-item p {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 7rem 0 3rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .trusted-logos {
        gap: 1.5rem;
    }
    
    .trusted-logos img {
        height: 24px;
    }
}

/* Animation for stats */
@keyframes countUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animation to stats when they come into view */
.stat-item {
    opacity: 0;
    animation: countUp 0.8s ease-out forwards;
}

/* Stagger the animations */
.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.3s; }
.stat-item:nth-child(3) { animation-delay: 0.5s; }
.stat-item:nth-child(4) { animation-delay: 0.7s; }

/* Features Section */
.features {
    padding: 8rem 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05), transparent);
}

.features .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    position: relative;
}

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

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    width: 100%;
    height: 0.5rem;
    background: rgba(255, 215, 0, 0.2);
    z-index: -1;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

/* Add subtle animation to feature cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features-grid > * {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

/* Stagger the animations */
.features-grid > *:nth-child(1) { animation-delay: 0.1s; }
.features-grid > *:nth-child(2) { animation-delay: 0.2s; }
.features-grid > *:nth-child(3) { animation-delay: 0.3s; }
.features-grid > *:nth-child(4) { animation-delay: 0.4s; }
.features-grid > *:nth-child(5) { animation-delay: 0.5s; }
.features-grid > *:nth-child(6) { animation-delay: 0.6s; }

.feature-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #FFE44D, #FFD700);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px -5px rgba(255, 215, 0, 0.3);
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--black);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.feature-card:hover h3::after {
    width: 100%;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.7;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: var(--gray-700);
}

/* How We Help Section */
.how-we-help-section {
    padding: 6rem 0;
    background-color: #f9fafb;
    position: relative;
    overflow: hidden;
}

.how-we-help-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.how-we-help-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.how-we-help-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 0.5rem;
    background: rgba(255, 215, 0, 0.2);
    z-index: -1;
    border-radius: 2px;
}

.how-we-help-section .section-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.help-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.help-feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    opacity: 0;
    transform: translateY(30px);
    transition-delay: calc(0.1s * var(--i));
}

.help-feature-card:nth-child(odd) {
    flex-direction: row-reverse;
}

.help-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-yellow);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.help-feature-card:hover::before {
    transform: scaleY(1);
}

.help-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.help-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFF5CC, #FFE680);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.help-feature-card:hover .help-feature-icon {
    background: var(--gradient-yellow);
    transform: scale(1.1) rotate(5deg);
}

.help-feature-icon i {
    font-size: 2rem;
    color: var(--black);
    transition: all 0.3s ease;
}

.help-feature-card:hover .help-feature-icon i {
    transform: scale(1.1);
}

.help-feature-content {
    flex: 1;
}

.help-feature-content h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.help-feature-content h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.help-feature-card:hover .help-feature-content h3::after {
    width: 100%;
}

.help-feature-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.help-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.help-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-yellow);
}

.help-cta p {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 2rem;
    font-weight: 500;
}

.help-cta .btn {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.help-cta .btn i {
    margin-right: 0.5rem;
}

/* Responsive styles for How We Help Section */
@media (max-width: 992px) {
    .help-features {
        grid-template-columns: 1fr;
    }
    
    .help-feature-card,
    .help-feature-card:nth-child(odd) {
        flex-direction: row;
    }
    
    .help-feature-icon {
        margin: 0 1.5rem 0 0;
    }
}

@media (max-width: 576px) {
    .how-we-help-section {
        padding: 4rem 0;
    }
    
    .how-we-help-section .section-header h2 {
        font-size: 2rem;
    }
    
    .how-we-help-section .section-header p {
        font-size: 1.1rem;
    }
    
    .help-feature-card {
        flex-direction: column !important;
        text-align: center;
        padding: 2rem;
    }
    
    .help-feature-icon {
        margin: 0 0 1.5rem 0 !important;
    }
    
    .help-cta {
        padding: 2rem 1.5rem;
    }
    
    .help-cta p {
        font-size: 1.25rem;
    }
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.section-subtitle {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 3px;
    background: var(--gradient-yellow);
    border-radius: 3px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--gradient-yellow);
    margin: 1.5rem 0 2.5rem;
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    margin: 2.5rem 0 3rem;
}

.about-feature {
    display: flex;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 0.75rem;
}

.about-feature:hover {
    background-color: rgba(255, 215, 0, 0.05);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFF5CC, #FFE680);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-feature:hover .feature-icon {
    background: var(--gradient-yellow);
    transform: rotate(5deg);
}

.feature-icon i {
    font-size: 1.25rem;
    color: var(--black);
}

.feature-text h4 {
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--gray-600);
    line-height: 1.7;
}

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

.image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1.5rem;
    transition: transform 0.5s ease;
}

.image-wrapper:hover .main-image {
    transform: scale(1.02);
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.floating-card.experience {
    top: 10%;
    left: -5%;
    animation-delay: 0.5s;
}

.floating-card.users {
    bottom: 10%;
    right: -5%;
    animation-delay: 1s;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.card-icon i {
    font-size: 1.25rem;
    color: var(--black);
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.card-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

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

/* How We Help Section */
.how-we-help-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.how-we-help-section .container {
    position: relative;
    z-index: 2;
}

.how-we-help-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.how-we-help-section h2 {
    font-size: 2.75rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.how-we-help-section .section-header p {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin: 0 auto;
}

.help-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    opacity: 1 !important;
    visibility: visible !important;
}

.help-feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 1 !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
    transform: none !important;
}

.help-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-yellow);
    transition: all 0.4s ease;
    z-index: -1;
}

.help-feature-card:nth-child(even) {
    flex-direction: column-reverse;
}

.help-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.help-feature-card:hover::before {
    height: 100%;
    opacity: 0.1;
}

.help-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFF9E6, #FFEEB3);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.help-feature-card:nth-child(even) .help-feature-icon {
    margin: 1.5rem 0 0 0;
}

.help-feature-icon i {
    font-size: 1.8rem;
    color: var(--black);
    transition: all 0.4s ease;
}

.help-feature-card:hover .help-feature-icon {
    background: var(--gradient-yellow);
    transform: rotate(10deg) scale(1.1);
}

.help-feature-content h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.help-feature-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-yellow);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.help-feature-card:hover .help-feature-content h3::after {
    width: 70px;
}

.help-feature-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin: 0;
    transition: all 0.4s ease;
}

/* CTA Section */
.cta-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    margin-top: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29-22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-63-60c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM60 91c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffd700' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    line-height: 1.3;
}

.cta-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    line-height: 1.6;
}

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

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}

.cta-buttons .btn i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.cta-buttons .btn-primary {
    background: var(--gradient-yellow);
    color: var(--black);
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 204, 0, 0.4);
}

.cta-buttons .btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
}

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-image {
    margin-top: 2rem;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-preview {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.cta-image:hover .cta-preview {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* App Download Section */
.app-download {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin: 50px auto;
    max-width: 1200px;
    box-shadow: var(--box-shadow-lg);
}

.app-download::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(45deg);
    opacity: 0.3;
    pointer-events: none;
}

.app-download h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: white;
    text-shadow: 0 4px 8px rgba(0,0,0,0.2);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.app-download p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.download-btn i {
    font-size: 2.5rem;
    margin-right: 15px;
}

.download-btn .btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-btn .btn-content span:first-child {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
}

.download-btn .store-name {
    font-size: 1.3rem;
    font-weight: 700;
}

.download-btn.android {
    background-color: #3DDC84; /* Google Play green */
}

.download-btn.ios {
    background-color: #000; /* Apple black */
}

.download-btn.android:hover {
    background-color: #30cb70;
}

.download-btn.ios:hover {
    background-color: #333;
}

.coming-soon {
    margin-top: 30px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text h3 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.newsletter-text p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form .form-group {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #f0f0f0;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-form .btn-primary {
    padding: 0 2.5rem;
    border-radius: 0 50px 50px 0;
    font-weight: 600;
    white-space: nowrap;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 5rem 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-about .footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1.5rem;
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-links-group h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: #fff;
}

.divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* Responsive styles for Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .app-download .section-header h2 {
        font-size: 2rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
        border-radius: 12px;
        overflow: visible;
        gap: 1rem;
    }
    
    .newsletter-form input[type="email"],
    .newsletter-form .btn-primary {
        border-radius: 50px;
        width: 100%;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Responsive styles for CTA Section */
@media (max-width: 768px) {
    .cta-container {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-text h3 {
        font-size: 2rem;
    }
    
    .cta-text p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cta-text h3 {
        font-size: 1.75rem;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
}

/* Responsive styles for How We Help Section */
@media (max-width: 1024px) {
    .help-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .help-feature-card,
    .help-feature-card:nth-child(even) {
        flex-direction: column;
    }
    
    .help-feature-card:nth-child(even) .help-feature-icon {
        margin: 0 0 1.5rem 0;
    }
}

@media (max-width: 768px) {
    .how-we-help-section {
        padding: 4rem 0;
    }
    
    .how-we-help-section h2 {
        font-size: 2.25rem;
    }
    
    .help-features {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 3rem;
    }
    
    .help-cta {
        padding: 2rem 1.5rem;
    }
    
    .help-cta p {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .how-we-help-section h2 {
        font-size: 2rem;
    }
    
    .how-we-help-section .section-header p {
        font-size: 1.05rem;
    }
    
    .help-feature-card {
        padding: 2rem 1.5rem;
    }
    
    .help-feature-content h3 {
        font-size: 1.3rem;
    }
    
    .help-cta p {
        font-size: 1.1rem;
    }
}

/* What's New Section */
.whats-new-section {
    padding: 8rem 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.whats-new-section .container {
    position: relative;
    z-index: 2;
}

.whats-new-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.whats-new-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-yellow);
    border-radius: 3px;
}

.whats-new-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.new-item-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.new-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.new-item-card:hover {
    transform: translateY(-12px) rotateZ(1deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

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

.new-item-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.new-item-card:hover img {
    transform: scale(1.05);
}

.new-item-card h3 {
    font-size: 1.6rem;
    color: var(--black);
    margin: 1.5rem 1.5rem 0.75rem;
    position: relative;
    padding-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.new-item-card:hover h3 {
    color: var(--primary);
}

.new-item-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-yellow);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.new-item-card:hover h3::after {
    width: 100%;
}

.new-item-card p {
    color: var(--gray-600);
    padding: 0 1.5rem 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
    font-size: 1rem;
}

.view-details-btn {
    display: block;
    margin: 3rem auto 0;
    padding: 0.8rem 2.5rem;
    background: var(--gradient-yellow);
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.view-details-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.how-it-works-section .section-subtitle {
    text-align: center;
    display: block;
    margin: 0 auto 3rem;
    max-width: 700px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-yellow);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-card:hover::before {
    height: 10px;
}

.step-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

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

.step-card h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.step-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient-yellow);
    border-radius: 2px;
}

.step-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-top: 1rem;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--bg-gray);
    text-align: center;
}

.features-section h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.features-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background-color: var(--primary);
    border-radius: 3px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.feature-card img {
    width: 120px; /* Increased size for better visibility */
    height: 120px; /* Increased size for better visibility */
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%; /* Make images circular */
    background-color: var(--gray-100); /* Light background for icons */
    padding: 15px;
    box-shadow: var(--shadow-sm);
}

.feature-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

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

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.testimonials-section > p {
    text-align: center;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    text-align: center;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(255, 215, 0, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: -1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary);
    padding: 3px;
    object-fit: cover;
}

.testimonial-card .stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card h4 {
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 3rem;
}

.faq-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.faq-tab {
    padding: 0.7rem 1.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-tab:hover {
    background: #f9fafb;
    color: var(--black);
}

.faq-tab.active {
    background: var(--gradient-yellow);
    color: var(--black);
    border-color: transparent;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    margin: 0;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gray-500);
    transition: all 0.3s ease;
}

.faq-item.active h3::after {
    content: '-';
    color: var(--black);
}

.faq-item p {
    margin: 0;
    padding: 0 2rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.7;
    display: none;
}

.faq-item.active p {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

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

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

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .about-grid {
        gap: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-divider {
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-feature {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .floating-card {
        transform: scale(0.9);
    }
    
    .floating-card.experience {
        left: 0;
    }
    
    .floating-card.users {
        right: 0;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 5rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-feature {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
    }
    
    .feature-text {
        text-align: center;
    }
    
    .floating-card {
        padding: 0.75rem 1rem;
        transform: scale(0.8);
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        margin-right: 0.75rem;
    }
    
    .card-icon i {
        font-size: 1rem;
    }
    
    .card-value {
        font-size: 1.25rem;
    }
    
    .card-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .floating-card {
        position: relative;
        display: inline-flex;
        margin: 0.5rem;
        transform: scale(1) !important;
        position: static;
        margin-top: 1.5rem;
    }
    
    .floating-card.experience,
    .floating-card.users {
        position: static;
        margin: 0.75rem auto;
    }
}

/* Stats Section */
.stats {
    padding: 8rem 0;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.5;
    z-index: 1;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-item {
    position: relative;
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.stat-item:hover::before {
    width: 120px;
    background: white;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 1rem;
    color: white;
    position: relative;
    display: inline-block;
    line-height: 1;
}

/* Animate numbers */
.stat-item h3 span {
    display: inline-block;
}

.stat-item p {
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.9;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-top: 0.5rem;
}

/* Add pulse animation to stats */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.stat-item:hover h3 {
    animation: pulse 1.5s infinite;
}

/* Hero Section */
.hero {
    padding: 12rem 0 8rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    margin-top: -1px; /* Prevents double border */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FFFDF5 0%, #FFFFFF 100%);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 215, 0, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    opacity: 0.5;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    opacity: 0.05;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 1;
    padding-right: 2rem;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

.hero h1 {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 1.5rem 0;
    color: var(--black);
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.hero h1 .text-gradient {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.hero h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0.5rem;
    width: 100%;
    height: 1rem;
    background: rgba(255, 215, 0, 0.2);
    z-index: -1;
    transform: rotate(-0.5deg);
    border-radius: 2px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin: 1.5rem 0 2.5rem;
    line-height: 1.7;
    max-width: 90%;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.hero-buttons {
    margin-top: 2.5rem;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background-color: var(--primary);
    color: var(--text-dark);
    border: 2px solid var(--primary);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.2);
}

.hero-buttons .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(var(--primary-rgb), 0.3);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-yellow);
    color: var(--black);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFE44D, #FFD700);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hero-badge:hover::before {
    opacity: 1;
}

.hero-badge i {
    margin-right: 0.5rem;
    font-size: 1.1em;
}

.hero-image {
    position: relative;
    flex: 1;
    max-width: 600px;
    z-index: 1;
    animation: float 6s ease-in-out infinite, fadeInRight 0.8s 0.2s ease-out forwards;
    transform-style: preserve-3d;
    perspective: 1000px;
    opacity: 0;
    margin-top: 2rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.2);
}

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

/* Hero Shape */
.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.hero-shape svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.hero-shape .shape-fill {
    fill: #FFFFFF;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 20px rgba(74, 108, 247, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

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

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(74, 108, 247, 0.4);
}

/* Trusted By Section */
.trusted-by {
    margin-top: 4rem;
    padding-top: 3rem;
    position: relative;
}

.trusted-by::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

.trusted-by p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 2rem;
}

.trusted-logos img {
    height: 32px;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%) contrast(0.5);
}

.trusted-logos img:hover {
    opacity: 1;
    filter: grayscale(0) contrast(1);
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.testimonial-card .stars {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gray);
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: var(--light-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    font-size: 1.3rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b3b3b3;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

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

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

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

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

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-image {
        max-width: 45%;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .hero-section {
        padding: 150px 0 80px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        position: relative;
        max-width: 100%;
        margin-top: 50px;
        transform: none;
        top: auto;
        right: auto;
    }
    
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header .breadcrumb {
        font-size: 0.85rem;
    }

    .careers-hero h1 {
        font-size: 3rem;
    }

    .careers-hero p {
        font-size: 1.1rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .job-listings {
        grid-template-columns: 1fr; /* Stack job cards on smaller screens */
    }

    .application-section {
        padding: 60px 0;
    }

    .application-container {
        padding: 30px;
    }

    .application-info h2 {
        font-size: 2rem;
    }

    .application-form h3 {
        font-size: 1.6rem;
    }

    .application-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .careers-hero {
        padding: 100px 0 80px;
    }

    .careers-hero h1 {
        font-size: 2.5rem;
    }

    .careers-intro,
    .values-section,
    .job-openings,
    .application-section {
        padding: 60px 0;
    }

    .benefit-card,
    .value-card,
    .job-card {
        padding: 25px;
    }

    .job-categories {
        margin-bottom: 30px;
    }

    .application-container {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header .breadcrumb {
        font-size: 0.8rem;
    }

    .careers-hero h1 {
        font-size: 2rem;
    }

    .careers-hero p {
        font-size: 1rem;
    }

    .category-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .job-title h3 {
        font-size: 1.5rem;
    }

    .job-details {
        flex-direction: column;
        gap: 10px;
    }

    .application-container {
        padding: 20px;
    }

    .application-info h2 {
        font-size: 1.8rem;
    }

    .application-form h3 {
        font-size: 1.4rem;
    }

    .application-form input,
    .application-form select,
    .application-form textarea,
    .file-upload-label {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .file-upload-label i {
        font-size: 1.2rem;
    }
}

.job-apply-link:hover i {
    transform: translateX(5px);
}

/* CTA Section (for careers page) */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin: 60px auto;
    max-width: 1200px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/undraw_adventure-map_3e4p.svg') no-repeat center center/contain;
    opacity: 0.1;
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.cta-content p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.7s ease-out forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.cta-content .btn {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

@media (max-width: 992px) {
    .cta-section {
        margin: 40px auto;
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        margin: 30px auto;
        padding: 50px 0;
        border-radius: 10px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .cta-section {
        margin: 20px 15px; /* Add some horizontal margin for small screens */
        padding: 40px 0;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }
}

.cta-content .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    color: var(--primary-dark); /* Text color from primary-dark */
    background-color: var(--white); /* White background */
    border: 2px solid var(--white);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.cta-content .btn:hover {
    background-color: var(--gray-100);
    border-color: var(--gray-100);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .cta-section {
        margin: 40px auto;
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        margin: 30px auto;
        padding: 50px 0;
        border-radius: 10px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .cta-section {
        margin: 20px 15px; /* Add some horizontal margin for small screens */
        padding: 40px 0;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .careers-hero {
        padding: 90px 0 70px;
    }

    .careers-hero h1 {
        font-size: 3rem;
    }

    .careers-hero p {
        font-size: 1.1rem;
    }

    .hero-buttons .btn {
        padding: 12px 28px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .careers-hero {
        padding: 70px 0 50px;
    }

    .careers-hero h1 {
        font-size: 2.5rem;
    }

    .careers-hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 2rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .careers-hero {
        padding: 60px 0 40px;
    }

    .careers-hero h1 {
        font-size: 2rem;
    }

    .careers-hero p {
        font-size: 0.9rem;
    }
}

/* Careers Intro */
.careers-intro {
    padding: 80px 0;
    background-color: var(--light-bg);
}

/* Application Header - for Apply and Careers page headers */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px; /* Adjust for fixed navbar */
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/undraw_adventure-map_3e4p.svg') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-header .breadcrumb {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

.page-header .breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header .breadcrumb a:hover {
    color: var(--primary-light);
}

.page-header .breadcrumb .divider {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 992px) {
    .careers-hero h1 {
        font-size: 3rem;
    }
    .page-header h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .careers-hero h1 {
        font-size: 2.5rem;
    }
    .page-header {
        padding: 60px 0 40px;
    }
    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .careers-hero h1 {
        font-size: 2rem;
    }
    .careers-hero p {
        font-size: 1rem;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .page-header .breadcrumb {
        font-size: 0.9rem;
    }
}