:root {
    /* 🎨 Primary Color Palette */
    --primary-blue: #007aff;
    --secondary-blue: #5ac8fa;
    --accent-yellow: #ffd60a;

    /* 🖤 Text Colors */
    --dark-blue: #003366;
    --dark-grey: #333333;
    --light-grey-text: #999999;

    /* 🧱 Backgrounds & Borders */
    --white: #ffffff;
    --background-light: #f4f4f4;
    --background-dark: #002855;
    --light-grey: #d1d1d1;
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
        Cantarell, sans-serif;
    padding-top: 70px;
}

/* Navbar Styling */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar.visible {
    transform: translateY(0);
}

.navbar-brand {
    color: var(--accent-yellow) !important;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: var(--dark-grey) !important;
    font-weight: 500;
    margin-left: 2rem;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 0.5rem;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important;
}

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

.navbar-nav .nav-link.active {
    color: var(--primary-blue) !important;
}

.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Remove the weird border on toggler */
.navbar-toggler {
    border: none !important;
    padding: 0.25rem 0.5rem;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(51, 51, 51, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Login Dropdown Styles */
/* Remove the blue underline from dropdown toggles */
.navbar-nav .dropdown-toggle::before {
    display: none !important;
}

.navbar-nav .nav-link.dropdown-toggle::after {
    margin-left: 0.5rem;
    vertical-align: middle;
    /* Remove the blue underline effect from dropdown toggle */
    content: none !important;
}

/* Restore the Bootstrap dropdown arrow */
.navbar-nav .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    min-width: 220px;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--dark-grey) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dropdown-item svg {
    color: var(--primary-blue);
    flex-shrink: 0;
}

.dropdown-item:hover {
    background-color: var(--background-light);
    color: var(--primary-blue) !important;
    transform: translateX(5px);
}

.dropdown-item:active {
    background-color: var(--primary-blue);
    color: var(--white) !important;
}

.dropdown-item:active svg {
    color: var(--white);
}

/* Mobile dropdown adjustments */
@media (max-width: 991px) {
    .dropdown-menu {
        border: 1px solid var(--light-grey);
        margin-top: 0.25rem;
        position: static !important;
        transform: none !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .dropdown-item:hover {
        transform: translateX(0);
    }

    /* Ensure dropdown stays open when shown */
    .dropdown-menu.show {
        display: block !important;
    }

    /* Better touch targets on mobile */
    .navbar-nav .dropdown-toggle {
        pointer-events: auto;
        -webkit-tap-highlight-color: transparent;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 0.5rem 1rem;
    }
}

/* Demo sections */
section {
    min-height: 100vh;
    padding: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

section:nth-child(odd) {
    background-color: #f8f9fa;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        var(--secondary-blue) 100%
    );
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 4rem 0 12rem 0;
    position: relative;
}

.hero-title {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    background-color: var(--accent-yellow);
    color: var(--dark-blue);
    font-weight: 600;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 214, 10, 0.4);
    color: var(--dark-blue);
}

/* What We Offer Section */
.offer-section {
    position: relative;
    margin-top: -6rem;
    z-index: 100;
    padding-bottom: 4rem;
}

.offer-card-container {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.offer-title {
    color: var(--dark-blue);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.service-card {
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

.service-card.purple {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
}

.service-card.green {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.service-card.red {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Our Programs Section */
.programs-section {
    background-color: var(--white);
    padding: 4rem 0;
}

.programs-title {
    color: var(--dark-blue);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.program-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    background: var(--white);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.program-card-horizontal {
    display: flex;
    flex-direction: row;
    min-height: 280px;
}

.program-image {
    flex: 0 0 45%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.program-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.program-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.program-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.program-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.program-btn:hover {
    transform: translateX(5px);
}

.program-btn svg {
    transition: transform 0.3s ease;
}

.program-btn:hover svg {
    transform: translateX(5px);
}

/* School Card - Yellow/Orange */
.program-card.school .program-content {
    background: linear-gradient(135deg, #ffd60a 0%, #ffb700 100%);
    color: var(--dark-blue);
}

.program-card.school .program-btn {
    background-color: var(--white);
    color: var(--dark-blue);
}

.program-card.school .program-btn:hover {
    background-color: var(--dark-blue);
    color: var(--white);
}

/* Corporate Card - Blue */
.program-card.corporate .program-content {
    background: linear-gradient(135deg, #007aff 0%, #005ecb 100%);
    color: var(--white);
}

.program-card.corporate .program-btn {
    background-color: var(--white);
    color: var(--primary-blue);
}

.program-card.corporate .program-btn:hover {
    background-color: var(--accent-yellow);
    color: var(--dark-blue);
}

/* View All Programs Button */
.view-all-programs-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        var(--secondary-blue) 100%
    );
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.view-all-programs-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.4);
    color: var(--white);
    gap: 1rem;
}

.view-all-programs-btn svg {
    transition: transform 0.3s ease;
}

.view-all-programs-btn:hover svg {
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        var(--secondary-blue) 100%
    );
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-title {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

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

.testimonial-quote {
    position: relative;
    margin-bottom: 1.5rem;
}

.quote-icon {
    color: var(--accent-yellow);
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.testimonial-text {
    color: var(--dark-grey);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 2px solid var(--background-light);
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-yellow);
}

.author-info h4 {
    color: var(--dark-blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--light-grey-text);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.rating svg {
    color: var(--accent-yellow);
    width: 20px;
    height: 20px;
}

/* Decorative elements */
.testimonials-section::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.testimonials-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }
}

/* About Us Section */
.about-section {
    background-color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 122, 255, 0.03) 0%,
        rgba(90, 200, 250, 0.03) 100%
    );
    z-index: 0;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.about-header h2 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-header .underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--accent-yellow)
    );
    margin: 0 auto;
}

/* Mission & Vision Cards */
.mission-vision-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.mission-vision-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    transition: width 0.3s ease;
}

.mission-vision-card.mission::before {
    background: linear-gradient(
        180deg,
        var(--primary-blue),
        var(--secondary-blue)
    );
}

.mission-vision-card.vision::before {
    background: linear-gradient(180deg, var(--accent-yellow), #ffb700);
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.mission-vision-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.mission .card-icon {
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--secondary-blue)
    );
    color: var(--white);
}

.vision .card-icon {
    background: linear-gradient(135deg, var(--accent-yellow), #ffb700);
    color: var(--dark-blue);
}

.mission-vision-card h3 {
    color: var(--dark-blue);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mission-vision-card p {
    color: var(--dark-grey);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Founder Section */
.founder-section {
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        var(--secondary-blue) 100%
    );
    border-radius: 25px;
    padding: 3rem;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.founder-section::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.founder-image-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.founder-image {
    width: 100%;
    max-width: 350px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid var(--accent-yellow);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.founder-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--accent-yellow);
    color: var(--dark-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.founder-content h3 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.founder-content h4 {
    color: var(--accent-yellow);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-content p {
    color: var(--white);
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
}

.founder-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    color: var(--accent-yellow);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Timeline Section */
.timeline-section {
    padding: 3rem 0;
    position: relative;
}

.timeline-title {
    color: var(--dark-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.timeline-wrapper {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        180deg,
        var(--primary-blue),
        var(--accent-yellow)
    );
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.timeline-year {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-text {
    color: var(--dark-grey);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--accent-yellow);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--primary-blue);
    z-index: 2;
}

/* Partners Section */
.partners-section {
    background: var(--background-light);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.partners-title {
    color: var(--dark-blue);
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.partner-badge {
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--dark-blue);
}

.partner-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--secondary-blue)
    );
    color: var(--white);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(
        135deg,
        var(--dark-blue) 0%,
        var(--primary-blue) 100%
    );
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 214, 10, 0.1);
    border-radius: 50%;
}

.newsletter-section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: rgba(90, 200, 250, 0.1);
    border-radius: 50%;
}

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

.newsletter-content {
    text-align: center;
    margin-bottom: 2.5rem;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 214, 10, 0.3);
}

.newsletter-icon svg {
    color: var(--dark-blue);
    width: 40px;
    height: 40px;
}

.newsletter-content h2 {
    color: var(--white);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--white);
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.newsletter-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.form-input-wrapper {
    flex: 1;
    position: relative;
}

.newsletter-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-yellow);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 214, 10, 0.2);
}

.newsletter-btn {
    padding: 1rem 2.5rem;
    background: var(--accent-yellow);
    color: var(--dark-blue);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.newsletter-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 214, 10, 0.4);
}

.newsletter-btn svg {
    width: 20px;
    height: 20px;
}

.newsletter-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.95rem;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent-yellow);
    flex-shrink: 0;
}

/* Our Team Section */
.team-section {
    background-color: var(--white);
    padding: 5rem 0;
    position: relative;
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-header h2 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-header .underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--accent-yellow)
    );
    margin: 0 auto 1rem;
}

.team-header p {
    color: var(--dark-grey);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    margin-bottom: 2rem;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 350px;
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--secondary-blue)
    );
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    padding: 2rem 1.5rem 1rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.team-card:hover .team-overlay {
    transform: translateY(0);
}

.linkedin-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease 0.1s;
    text-decoration: none;
    z-index: 10;
}

.team-card:hover .linkedin-icon {
    opacity: 1;
    transform: scale(1);
}

.linkedin-icon:hover {
    background: #0077b5;
    transform: scale(1.1);
}

.linkedin-icon svg {
    width: 24px;
    height: 24px;
    color: var(--dark-blue);
}

.linkedin-icon:hover svg {
    color: var(--white);
}

.team-content {
    padding: 1.75rem 1.5rem;
}

.team-name {
    color: var(--dark-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--primary-blue);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-position::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--accent-yellow);
}

.team-bio {
    color: var(--dark-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.team-stats {
    display: flex;
    justify-content: space-around;
    padding: 1rem 0;
    border-top: 1px solid var(--light-grey);
    margin-top: 1rem;
}

.stat-box {
    text-align: center;
}

.stat-box .number {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-box .label {
    color: var(--light-grey-text);
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

/* Alternative Card Style */
.team-card.featured {
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        var(--secondary-blue) 100%
    );
}

.team-card.featured .team-content {
    background: var(--white);
    border-radius: 15px;
    margin: -3rem 1rem 1rem;
    position: relative;
    z-index: 5;
}

.team-card.featured .team-name {
    color: var(--dark-blue);
}

/* Contact Us Section */
.contact-section {
    background: linear-gradient(
        135deg,
        var(--background-light) 0%,
        var(--white) 100%
    );
    padding: 5rem 0;
    position: relative;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-header .underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--accent-yellow)
    );
    margin: 0 auto 1rem;
}

.contact-header p {
    color: var(--dark-grey);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-wrapper {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

/* Contact Form */
.contact-form-container {
    flex: 1;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
    color: var(--dark-blue);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.form-label {
    display: block;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.form-label span {
    color: var(--primary-blue);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--light-grey);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--dark-grey);
    transition: all 0.3s ease;
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-control::placeholder {
    color: var(--light-grey-text);
}

.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--light-grey);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--dark-grey);
    transition: all 0.3s ease;
    background: var(--white);
    cursor: pointer;
}

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

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--secondary-blue)
    );
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--secondary-blue)
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.info-card-header h4 {
    color: var(--dark-blue);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.office-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-grey);
    font-size: 0.95rem;
}

.location-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent-yellow);
    flex-shrink: 0;
}

.chat-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #d4edda;
    color: #155724;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
}

.chat-status::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.chat-hours {
    color: var(--light-grey-text);
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

.chat-btn {
    width: 100%;
    padding: 0.875rem;
    background: var(--accent-yellow);
    color: var(--dark-blue);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.chat-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 214, 10, 0.3);
}

.chat-btn svg {
    width: 20px;
    height: 20px;
}

/* Careers Section */
.careers-section {
    background: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.careers-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(
        135deg,
        rgba(0, 122, 255, 0.05),
        rgba(90, 200, 250, 0.05)
    );
    border-radius: 50%;
}

.careers-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.careers-header h2 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.careers-header .underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--accent-yellow)
    );
    margin: 0 auto 1.5rem;
}

.careers-intro {
    font-size: 1.2rem;
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.careers-subtitle {
    color: var(--dark-grey);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Culture Banner */
.culture-banner {
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        var(--secondary-blue) 100%
    );
    border-radius: 20px;
    padding: 3rem 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.culture-banner::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 214, 10, 0.15);
    border-radius: 50%;
}

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

.culture-content h3 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.culture-values {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.culture-value {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 1.05rem;
}

.culture-value-icon {
    width: 45px;
    height: 45px;
    background: var(--accent-yellow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.culture-value-icon svg {
    width: 24px;
    height: 24px;
    color: var(--dark-blue);
}

/* Filters */
.filters-container {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2.5rem;
}

.filters-wrapper {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-label {
    display: block;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.filter-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-grey);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--dark-grey);
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

/* Job Cards */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.job-card {
    background: var(--white);
    border: 2px solid var(--light-grey);
    border-radius: 18px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(
        180deg,
        var(--primary-blue),
        var(--accent-yellow)
    );
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.job-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 40px rgba(0, 122, 255, 0.15);
    transform: translateY(-5px);
}

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

.job-header {
    margin-bottom: 1.5rem;
}

.job-badge {
    display: inline-block;
    padding: 0.35rem 0.875rem;
    background: linear-gradient(135deg, var(--accent-yellow), #ffb700);
    color: var(--dark-blue);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.job-title {
    color: var(--dark-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.job-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-grey);
    font-size: 0.9rem;
}

.meta-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.job-description {
    color: var(--dark-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.skill-tag {
    padding: 0.4rem 0.875rem;
    background: var(--background-light);
    color: var(--dark-blue);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid var(--light-grey);
}

.apply-btn {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--secondary-blue)
    );
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.apply-btn svg {
    width: 18px;
    height: 18px;
}

/* CTA Section */
.careers-cta {
    background: linear-gradient(
        135deg,
        var(--dark-blue) 0%,
        var(--primary-blue) 100%
    );
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.careers-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 214, 10, 0.1) 0%,
        transparent 70%
    );
}

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

.careers-cta h3 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.careers-cta p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--accent-yellow);
    color: var(--dark-blue);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-primary-btn:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 214, 10, 0.4);
}

.cta-primary-btn svg {
    width: 20px;
    height: 20px;
}

/* Footer Section */
.footer {
    background: linear-gradient(
        135deg,
        var(--background-dark) 0%,
        var(--dark-blue) 100%
    );
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(90, 200, 250, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.footer::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(255, 214, 10, 0.08) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

/* Footer Top */
.footer-top {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    color: var(--accent-yellow);
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 350px;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--accent-yellow);
    color: var(--dark-blue);
    transform: translateY(-5px);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

/* Footer Columns */
.footer-column h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-yellow);
}

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

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

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link:hover {
    color: var(--accent-yellow);
    transform: translateX(5px);
}

.footer-link svg {
    width: 16px;
    height: 16px;
}

/* Contact Info */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 214, 10, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent-yellow);
}

.contact-text {
    flex: 1;
}

.contact-text a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--accent-yellow);
}

/* Newsletter Mini */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.footer-newsletter h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.newsletter-mini-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-mini-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.9rem;
}

.newsletter-mini-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-mini-input:focus {
    outline: none;
    border-color: var(--accent-yellow);
}

.newsletter-mini-btn {
    padding: 0.75rem 1.25rem;
    background: var(--accent-yellow);
    color: var(--dark-blue);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-mini-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-copyright a {
    color: var(--accent-yellow);
    text-decoration: none;
    font-weight: 600;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--accent-yellow);
}

/* Certifications Badge */
.certifications {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.cert-badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cert-badge svg {
    width: 16px;
    height: 16px;
    color: var(--accent-yellow);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-top {
        padding: 3rem 0 2.5rem;
    }

    .footer-column {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 2.5rem 0 2rem;
    }

    .footer-logo {
        font-size: 1.75rem;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .footer-column h4 {
        font-size: 1.1rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .certifications {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-top {
        padding: 2rem 0 1.5rem;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-social {
        gap: 0.75rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }

    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

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

    .footer-link {
        font-size: 0.875rem;
    }

    .newsletter-mini-form {
        flex-direction: column;
    }

    .newsletter-mini-btn {
        width: 100%;
    }

    .footer-bottom {
        padding: 1.5rem 0;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }

    .footer-bottom-link {
        font-size: 0.8rem;
    }

    .contact-info-item {
        font-size: 0.875rem;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
    }

    .cert-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
}

@media (max-width: 400px) {
    .footer-newsletter {
        padding: 1.25rem;
    }

    .certifications {
        gap: 0.5rem;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .careers-section {
        padding: 4rem 0;
    }

    .careers-header h2 {
        font-size: 2rem;
    }

    .jobs-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .culture-values {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .careers-section {
        padding: 3rem 0;
    }

    .careers-header {
        margin-bottom: 2.5rem;
    }

    .careers-header h2 {
        font-size: 1.75rem;
    }

    .careers-intro {
        font-size: 1.1rem;
    }

    .careers-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .culture-banner {
        padding: 2.5rem 2rem;
    }

    .culture-content h3 {
        font-size: 1.5rem;
    }

    .culture-values {
        flex-direction: column;
        gap: 1rem;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .filters-wrapper {
        flex-direction: column;
    }

    .filter-group {
        width: 100%;
        min-width: auto;
    }

    .careers-cta h3 {
        font-size: 1.75rem;
    }

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

@media (max-width: 576px) {
    .careers-section {
        padding: 2.5rem 0;
    }

    .careers-header h2 {
        font-size: 1.5rem;
    }

    .careers-intro {
        font-size: 1rem;
    }

    .culture-banner,
    .careers-cta {
        padding: 2rem 1.5rem;
    }

    .culture-content h3 {
        font-size: 1.35rem;
    }

    .culture-value {
        font-size: 0.95rem;
    }

    .culture-value-icon {
        width: 40px;
        height: 40px;
    }

    .filters-container {
        padding: 1.25rem;
    }

    .job-card {
        padding: 1.5rem;
    }

    .job-title {
        font-size: 1.3rem;
    }

    .job-meta {
        gap: 1rem;
    }

    .careers-cta h3 {
        font-size: 1.5rem;
    }

    .careers-cta p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-primary-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .job-card {
        padding: 1.25rem;
    }

    .job-title {
        font-size: 1.2rem;
    }

    .job-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info-sidebar {
        flex: 1;
        width: 100%;
    }

    .contact-section {
        padding: 4rem 0;
    }

    .contact-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-header {
        margin-bottom: 3rem;
    }

    .contact-header h2 {
        font-size: 1.75rem;
    }

    .contact-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .contact-form-container,
    .info-card {
        padding: 2rem 1.5rem;
    }

    .contact-form-container h3 {
        font-size: 1.5rem;
    }

    .office-locations {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .contact-wrapper {
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 2.5rem 0;
    }

    .contact-header h2 {
        font-size: 1.5rem;
    }

    .contact-form-container,
    .info-card {
        padding: 1.5rem 1rem;
    }

    .contact-form-container h3 {
        font-size: 1.35rem;
    }

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

    .form-control,
    .form-select {
        padding: 0.75rem 0.875rem;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 0.875rem;
        font-size: 1rem;
    }

    .info-card-header h4 {
        font-size: 1.1rem;
    }

    .info-icon {
        width: 45px;
        height: 45px;
    }

    .info-icon svg {
        width: 22px;
        height: 22px;
    }

    .contact-wrapper {
        gap: 1.25rem;
    }
}

/* Extra Small Devices */
@media (max-width: 400px) {
    .contact-form-container,
    .info-card {
        padding: 1.25rem 0.875rem;
    }

    .form-label {
        font-size: 0.875rem;
    }

    .location-item {
        font-size: 0.875rem;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .team-section {
        padding: 4rem 0;
    }

    .team-header h2 {
        font-size: 2rem;
    }

    .team-image-wrapper {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 3rem 0;
    }

    .team-header {
        margin-bottom: 3rem;
    }

    .team-header h2 {
        font-size: 1.75rem;
    }

    .team-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .team-image-wrapper {
        height: 300px;
    }

    .team-name {
        font-size: 1.35rem;
    }

    .team-content {
        padding: 1.5rem 1.25rem;
    }

    .team-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .team-section {
        padding: 2.5rem 0;
    }

    .team-header h2 {
        font-size: 1.5rem;
    }

    .team-image-wrapper {
        height: 280px;
    }

    .team-content {
        padding: 1.25rem 1rem;
    }

    .team-name {
        font-size: 1.25rem;
    }

    .team-position {
        font-size: 0.9rem;
    }

    .team-bio {
        font-size: 0.875rem;
    }

    .linkedin-icon {
        width: 40px;
        height: 40px;
    }

    .linkedin-icon svg {
        width: 20px;
        height: 20px;
    }

    .stat-box .number {
        font-size: 1.25rem;
    }

    .stat-box .label {
        font-size: 0.7rem;
    }
}

/* Ensure proper spacing in grid */
.team-grid {
    margin: 0 -0.75rem;
}

.team-grid > [class*="col-"] {
    padding: 0 0.75rem;
}

@media (max-width: 576px) {
    .team-grid {
        margin: 0 -0.5rem;
    }

    .team-grid > [class*="col-"] {
        padding: 0 0.5rem;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 3rem 0;
    }

    .newsletter-content h2 {
        font-size: 1.75rem;
    }

    .newsletter-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-input {
        padding: 0.875rem 1rem;
    }

    .newsletter-btn {
        padding: 0.875rem 2rem;
        width: 100%;
    }

    .newsletter-features {
        gap: 1rem;
        margin-top: 1.5rem;
        padding: 0 1rem;
    }

    .feature-item {
        font-size: 0.875rem;
    }

    .newsletter-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .newsletter-icon svg {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .newsletter-section {
        padding: 2.5rem 0;
    }

    .newsletter-content {
        margin-bottom: 2rem;
    }

    .newsletter-content h2 {
        font-size: 1.5rem;
        padding: 0 0.5rem;
    }

    .newsletter-content p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .newsletter-form-wrapper {
        padding: 0 0.5rem;
    }

    .newsletter-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .newsletter-icon {
        width: 60px;
        height: 60px;
    }

    .newsletter-icon svg {
        width: 30px;
        height: 30px;
    }
}

/* Extra small devices optimization */
@media (max-width: 400px) {
    .newsletter-input {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }

    .newsletter-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .timeline-line {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 60px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-dot {
        left: 30px;
    }

    .founder-section {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-header h2 {
        font-size: 2rem;
    }

    .founder-section {
        padding: 2rem;
        margin: 3rem 0;
    }

    .founder-content h3 {
        font-size: 1.75rem;
    }

    .founder-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .timeline-title {
        font-size: 1.75rem;
    }

    .founder-image {
        height: 350px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 3rem 0;
    }

    .mission-vision-card {
        padding: 2rem;
    }

    .founder-section {
        padding: 1.5rem;
    }

    .founder-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .partners-grid {
        gap: 1rem;
    }

    .partner-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .timeline-item {
        padding-left: 50px;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .quote-icon {
        font-size: 2.5rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .program-card-horizontal {
        flex-direction: column;
        min-height: auto;
    }

    .program-image {
        flex: 0 0 200px;
        width: 100%;
    }

    .program-content {
        padding: 2rem 1.5rem;
    }

    .program-content h3 {
        font-size: 1.75rem;
    }

    .programs-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .program-content h3 {
        font-size: 1.5rem;
    }

    .program-content {
        padding: 1.5rem;
    }

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .navbar-nav .nav-link {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .offer-section {
        margin-top: -8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-section {
        min-height: 60vh;
        padding: 3rem 0 10rem 0;
    }

    .offer-title {
        font-size: 2rem;
    }

    .offer-section {
        margin-top: -6rem;
    }

    .offer-card-container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .offer-title {
        font-size: 1.75rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .offer-section {
        margin-top: -5rem;
    }
}
