:root {
    --primary-navy: #1a3a52;
    --secondary-green: #2d5a3d;
    --accent-orange: #c55a2a;
    --accent-blue: #4a7c9e;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --white: #ffffff;

    /* New Premium Variables */
    --bg-soft: #f8fbff;
    --text-primary: #1a3a52;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* Navbar Styling */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-navy);
    letter-spacing: -0.5px;
}

.navbar-brand:hover {
    color: var(--accent-blue);
}

.nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    margin: 0 0.8rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link:hover {
    color: var(--accent-orange);
}

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

.btn-primary-custom {
    background-color: var(--accent-orange);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #a84a22;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 90, 42, 0.3);
}

.btn-login {
    color: var(--primary-navy);
    font-weight: 600;
    margin-right: 1rem;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: rgba(26, 58, 82, 0.05);
    border-color: rgba(26, 58, 82, 0.1);
    color: var(--accent-orange);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.95), rgba(45, 90, 61, 0.9)),
        url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=1600') center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

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

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 600px;
}

.btn-hero-primary {
    background-color: var(--accent-orange);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background-color: #a84a22;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(197, 90, 42, 0.4);
}

.btn-hero-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background-color: var(--white);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

/* Scroll Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.service-icon {
    font-size: 3.5rem;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--secondary-green);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.7;
    flex-grow: 1;
}

.service-link {
    color: var(--accent-orange);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.service-link:hover {
    color: var(--secondary-green);
    gap: 0.5rem;
}

.service-link i {
    margin-left: 0.3rem;
    transition: margin-left 0.3s ease;
}

.service-link:hover i {
    margin-left: 0.6rem;
}

/* Value Proposition Section */
.value-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.value-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(74, 124, 158, 0.3), rgba(45, 90, 61, 0.3)),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=800') center/cover no-repeat;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.value-point {
    display: flex;
    align-items: start;
    margin-bottom: 2rem;
}

.value-point i {
    font-size: 1.8rem;
    color: var(--secondary-green);
    margin-right: 1.5rem;
    margin-top: 0.3rem;
}

.value-point h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.value-point p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* CTA Form Section (Now Merged with Footer) */
.cta-strip {
    background: var(--primary-navy);
    padding: 5rem 0 3rem;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.cta-strip h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.cta-strip p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.btn-cta-primary {
    background-color: var(--accent-orange);
    color: var(--white);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    background-color: #a84a22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 90, 42, 0.4);
    color: var(--white);
}

.btn-cta-secondary {
    background-color: transparent;
    color: var(--white);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.form-card {
    background: var(--white);
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    margin: 0 auto;
}

.form-card h3 {
    color: var(--primary-navy);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.form-label {
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    padding: 0.8rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 0.2rem rgba(197, 90, 42, 0.15);
}

.btn-submit {
    background-color: var(--accent-orange);
    color: var(--white);
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #a84a22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 90, 42, 0.4);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card::before {
    content: '\f10d';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 5rem;
    color: rgba(26, 58, 82, 0.05);
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.author-info h5 {
    font-size: 1rem;
    margin: 0;
    font-weight: 700;
    color: var(--primary-navy);
}

.author-info span {
    font-size: 0.85rem;
    color: #888;
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2c5270 100%);
    color: var(--white);
    text-align: center;
}

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

.newsletter-section h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-input-group {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    padding-right: 140px;
    /* Space for button */
}

.newsletter-input-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.newsletter-input-group button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background-color: var(--accent-orange);
    color: var(--white);
    border: none;
    border-radius: 40px;
    padding: 0 1.5rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.newsletter-input-group button:hover {
    background-color: #a84a22;
}

/* About Content (Split Layout) */
.about-section {
    padding: 6rem 0;
    margin-top: 80px;
    /* To account for fixed navbar */
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-text h2 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-orange);
}

.about-text p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-navy);
    padding: 4rem 0;
    color: var(--white);
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* Mission & Vision Strip */
.mission-vision-strip {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.mission-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-top: 4px solid var(--primary-navy);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-card h4 {
    margin: 1.5rem 0 1rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.mission-icon {
    font-size: 2.5rem;
    color: var(--primary-navy);
}

/* Values Section (Refined) */
.values-section-custom {
    padding: 6rem 0;
    background-color: var(--white);
}

.value-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: transparent;
}

.value-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(15, 35, 52, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-navy);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon-wrapper {
    background-color: var(--primary-navy);
    color: var(--white);
}

.value-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.value-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mega Footer */
.footer {
    background-color: #0f2334;
    /* Deep Navy */
    color: #b0c4d6;
    /* Soft Blue-Gray */
    padding: 5rem 0 2rem;
    font-size: 0.95rem;
}

.footer h5 {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-brand p {
    margin-top: 1rem;
    line-height: 1.6;
    max-width: 300px;
}

.contact-info p {
    margin: 0;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 90, 42, 0.3);
}

.contact-info i {
    margin-right: 0.8rem;
    color: var(--accent-orange);
}

.contact-info a:hover i {
    color: var(--white);
}

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

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

.footer-links a {
    color: #b0c4d6;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

/* Cinematic Hero */
.hero-small {
    background: linear-gradient(rgba(15, 35, 52, 0.7), rgba(15, 35, 52, 0.7)), url('../images/hero-about-new.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 10rem 0 6rem;
    color: var(--white);
    text-align: center;
    margin-top: -80px;
    /* Counteract navbar */
}

.hero-small h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-small p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Timeline Section */
.timeline-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--accent-orange);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--white);
    border: 4px solid var(--accent-orange);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::after {
    right: -10px;
}

.right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--white);
    position: relative;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-content .year {
    color: var(--accent-orange);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
}

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

.team-card {
    border: none;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid var(--light-gray);
    position: relative;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.team-card h4 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.team-card span {
    color: var(--accent-blue);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.team-social a {
    color: var(--dark-gray);
    margin: 0 5px;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: var(--accent-orange);
}

/* Quality Section */
.quality-section {
    padding: 6rem 0;
    background-color: var(--primary-navy);
    color: var(--white);
}

.quality-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quality-card i {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.quality-card h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.quality-card p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Partner Strip */
.partner-strip {
    padding: 3rem 0;
    background-color: #f1f4f8;
    text-align: center;
}

.partner-logo {
    font-weight: 800;
    color: #cbd5e1;
    font-size: 1.5rem;
    margin: 0 2rem;
    text-transform: uppercase;
    display: inline-block;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.8rem;
    border-radius: 5px;
    margin-bottom: 0.8rem;
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-orange);
    box-shadow: none;
}

.newsletter-form .btn {
    width: 100%;
    background-color: var(--accent-orange);
    color: var(--white);
    font-weight: 600;
    border: none;
    padding: 0.8rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background-color: #a84a22;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    padding-top: 2rem;
}

.social-icons a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

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

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

.footer-bottom-links a:hover {
    color: var(--white);
}

/* Responsive Design & Mobile Menu */
@media (max-width: 991.98px) {

    /* Custom Toggler */
    .navbar-toggler {
        border: none;
        padding: 0;
        color: var(--primary-navy);
    }

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

    /* Mobile Menu Container */
    .navbar-collapse {
        background-color: var(--white);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 15px 15px;
    }

    /* Mobile Nav Links */
    .navbar-nav {
        text-align: center;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 0.8rem 0;
        display: block;
    }

    /* Mobile Buttons */
    .navbar-nav .ms-lg-3 {
        margin-top: 1.5rem;
        margin-left: 0 !important;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .btn-login,
    .btn-primary-custom {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-right: 0;
        display: flex;
        align-items: center;
    }

    .btn-login {
        border: 1px solid var(--primary-navy);
        padding: 0.8rem;
    }

    /* Hero Responsive */
    .hero-section h1 {
        font-size: 2.5rem;
    }

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

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }

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

    .value-image {
        height: 300px;
        margin-bottom: 2rem;
    }

    .form-card {
        padding: 2rem 1.5rem;
    }
}

/* =========================================
   Modern SaaS Design Overrides (Over Ons Page)
   ========================================= */

/* Typography & General */
.tracking-tight {
    letter-spacing: -0.5px;
}

.lh-lg {
    line-height: 1.8;
}

.text-primary-navy {
    color: var(--primary-navy);
}

.bg-soft {
    background-color: #f8fbff;
}

.ls-2 {
    letter-spacing: 2px;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Feature Cards (Global) */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Counter Animation Helpers */
.counter {
    font-variant-numeric: tabular-nums;
}


/* =========================================
   Premium Navigation Upgrades
   ========================================= */

.premium-nav {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.2rem 0;
    transition: all 0.4s ease;
}

.premium-nav.scrolled {
    padding: 0.8rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.brand-text {
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(45deg, var(--primary-navy), #2c5270);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-dot {
    color: var(--accent-orange);
    font-size: 2.5rem;
    line-height: 0;
    position: relative;
    top: 5px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: 0.5rem 0;
    margin: 0 1rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: width 0.3s ease;
    opacity: 0;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
    opacity: 1;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-navy);
}





/* Premium Buttons */
.btn-login-outline {
    color: var(--primary-navy);
    border: 1px solid rgba(26, 58, 82, 0.2);
    border-radius: 50px;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-login-outline:hover {
    border-color: var(--primary-navy);
    background-color: var(--bg-soft);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

.btn-nav-cta {
    border-radius: 50px;
    padding: 0.6rem 1.6rem;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(197, 90, 42, 0.25);
}

.btn-nav-cta:hover {
    box-shadow: 0 6px 20px rgba(197, 90, 42, 0.35);
    transform: translateY(-2px);
}