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

:root {
    --primary-red: #e10600;
    --secondary-black: #000000;
    --background-white: #ffffff;
    --accent-blue: #000000;
    --accent-link: #e10600;
    --accent-gold: #ffcc00;
    --accent-orange: #ff6600;
    --text-gray: #333;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-gray);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-symbol {
    color: var(--primary-red);
    letter-spacing: -2px;
}

.logo-text {
    color: var(--secondary-black);
    font-weight: 600;
    font-size: 1rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-links a:hover {
    color: var(--primary-red);
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--secondary-black) 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(225, 6, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 123, 255, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    z-index: 1;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.hero-navigation {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 2;
}

.hero-nav-btn {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.hero-nav-btn:hover {
    background: rgba(225, 6, 0, 0.8);
    transform: scale(1.1);
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 2;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover,
.dot.active {
    background: var(--primary-red);
    border-color: white;
    transform: scale(1.2);
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-highlight {
    color: var(--primary-red);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--primary-red);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(225, 6, 0, 0.3);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(225, 6, 0, 0.4);
}

/* Stats Banner */
.stats-banner {
    background: var(--secondary-black);
    padding: 3rem 2rem;
    color: white;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    animation: countUp 1s ease;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-red);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: var(--light-gray);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-black);
}

.section-highlight {
    color: var(--primary-red);
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

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

/* Timeline Section */
.timeline {
    padding: 2rem 2rem;
    background: white;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--secondary-black);
}

.timeline-items {
    position: relative;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 40px 1fr;
    gap: 2rem;
    margin-bottom: 0;
    position: relative;
    align-items: flex-start;
}

.timeline-year {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-red);
    text-align: left;
    padding-top: 0.3rem;
}

.timeline-marker {
    position: relative;
    display: flex;
    transform: translateY(25%);
    flex-direction: column;
    align-items: center;
}

.timeline-line {
    width: 3px;
    height: 100%;
    min-height: 100px;
    background: var(--accent-link);
    flex-grow: 1;
}

.timeline-item:last-child .timeline-line {
    display: none;
}

.timeline-dot {
    width: 18px;
    height: 18px;
    background: white;
    border: 4px solid var(--accent-link);
    border-radius: 50%;
    margin-bottom: 0;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px white;
}

.timeline-content {
    padding-left: 0;
    padding-bottom: 2rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-black);
    font-weight: 700;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Projects Section */
.projects {
    padding: 6rem 2rem;
    background: var(--light-gray);
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
}

.projects-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--secondary-black);
}

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

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: var(--light-gray);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

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

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-black);
}

.project-content p {
    color: #666;
    margin-bottom: 1rem;
}

.project-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-red);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Locations Section */
.locations {
    padding: 2rem 2rem;
    background: white;
}

.locations-container {
    max-width: 1200px;
    margin: 0 auto;
}

.locations-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-black);
}

.map-container {
    margin-bottom: 4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-container img {
    width: 40rem;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.map-wrapper {
    width: 50rem;
    height: 54rem;
    max-width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.map-note {
    text-align: center;
    margin-top: 1rem;
    color: #666;
    font-style: italic;
    font-size: 0.95rem;
}

.locations-subtitle {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-black);
    font-weight: 600;
}

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

.location-card {
    background: white;
    border-radius: 15px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.location-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

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

.location-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    color: var(--primary-red);
}

.location-card p {
    padding: 0 1rem;
    color: #666;
    margin-bottom: 1rem;
}

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

.location-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.4rem 1rem;
    background: var(--accent-blue);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.location-badge.hq {
    background: var(--primary-red);
}

/* Career Section */
.career {
    padding: 6rem 2rem;
    background: white;
    color: var(--text-gray);
    text-align: center;
}

.career-container {
    max-width: 900px;
    margin: 0 auto;
}

.career-container h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-black);
}

.career-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

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

.benefit-item {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    border: 2px solid var(--accent-blue);
    transition: all 0.3s ease;
}

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

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-red);
    font-weight: 700;
}

.benefit-item p {
    color: #666;
}

/* Footer */
footer {
    background: var(--secondary-black);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-link);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .logo-image {
        height: 40px;
    }

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

    .hero-nav-btn {
        font-size: 1.5rem;
        padding: 0.8rem 1.2rem;
    }

    .hero-navigation {
        padding: 0 1rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
    }

    .hero-navigation {
        display: none;
    }

    .timeline-item {
        grid-template-columns: 80px 30px 1fr;
        gap: 1rem;
    }

    .timeline-year {
        font-size: 2rem;
    }

    .map-wrapper {
        width: 100%;
        height: 400px;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 80px;
}

/* Clients Section */
.clients {
    padding: 6rem 2rem;
    background: var(--light-gray);
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.clients-container h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-black);
}

.clients-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    align-items: center;
}

.client-logo {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.client-logo:hover img {
    transform: scale(1.1);
}

.client-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-gray);
}

/* Testimonials Section */
.testimonials {
    padding: 2rem 2rem;
    background: white;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--secondary-black);
}

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

.testimonial-card {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
    border-left: 5px solid var(--primary-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.quote-icon {
    font-size: 4rem;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

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

.testimonial-author h4 {
    font-size: 1.3rem;
    color: var(--secondary-black);
    margin-bottom: 0.3rem;
}

.testimonial-author .designation {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-author .journey,
.testimonial-author .location {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

/* Work Culture Section */
.culture {
    padding: 2rem 2rem;
    background: var(--light-gray);
}

.culture-container {
    max-width: 1200px;
    margin: 0 auto;
}

.culture-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--secondary-black);
}

.culture-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

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

.culture-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    border-top: 4px solid var(--accent-blue);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.culture-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-top-color: var(--primary-red);
}

.culture-item h3 {
    font-size: 1.3rem;
    color: var(--secondary-black);
    margin-bottom: 1rem;
}

.culture-item p {
    color: #666;
    line-height: 1.6;
}

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

.culture-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    height: 300px;
}

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

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

/* Training & Safety Section */
.training {
    padding: 6rem 2rem;
    background: white;
}

.training-container {
    max-width: 1200px;
    margin: 0 auto;
}

.training-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--secondary-black);
}

.training-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

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

.training-feature {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--accent-blue);
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.training-feature h3 {
    font-size: 1.3rem;
    color: var(--secondary-black);
    margin-bottom: 1rem;
}

.training-feature p {
    color: #666;
    line-height: 1.6;
}

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

.training-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 250px;
}

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

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

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .culture-images,
    .training-gallery {
        grid-template-columns: 1fr;
    }

    .culture-image,
    .training-image {
        height: 250px;
    }
}

/* ========== NEW STYLES - ADD AT THE END ========== */

/* Contact Modal Styles */
.contact-trigger {
    background: var(--primary-red);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.contact-trigger:hover {
    background: var(--accent-link);
    transform: translateY(-2px);
}

.contact-trigger::after {
    display: none;
}

.contact-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.contact-modal.show {
    display: flex;
}

.contact-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.contact-modal-content {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    max-width: 650px;
    width: 90%;
    position: relative;
    z-index: 10000;
    animation: modalSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.7) translateY(-50px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.contact-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
}

.contact-close:hover {
    background: var(--light-gray);
    color: var(--primary-red);
    transform: rotate(90deg);
}

.contact-modal-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--secondary-black);
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    border-left: 5px solid var(--primary-red);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    background: #fff;
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.3rem;
    color: var(--secondary-black);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

.contact-details a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent-blue);
}

/* Typewriter Effect */
.typewriter-text {
    display: inline-block;
    border-right: 3px solid var(--primary-red);
    animation: blink 0.7s step-end infinite;
    min-width: 280px;
    text-align: left;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* Flipable Benefit Cards */
.benefit-flip-card {
    perspective: 1000px;
    height: 180px;
}

.benefit-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.benefit-flip-card:hover .benefit-flip-inner {
    transform: rotateY(180deg);
}

.benefit-flip-front,
.benefit-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.benefit-flip-front {
    background: var(--light-gray);
    border: 2px solid var(--accent-blue);
}

.benefit-flip-back {
    background: linear-gradient(135deg, var(--primary-red) 0%, #b00500 100%);
    color: white;
    transform: rotateY(180deg);
    padding: 1.5rem;
}

.benefit-flip-front h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-red);
    font-weight: 700;
}

.benefit-flip-front p {
    color: #666;
}

.benefit-flip-back h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.benefit-flip-back p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-trigger-btn {
    display: inline-block;
    margin-top: 2rem;
}

/* Testimonials Marquee */
.testimonials-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: scroll 60s linear infinite;
    width: fit-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card-marquee {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid var(--primary-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    min-width: 450px;
    max-width: 450px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

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

.testimonial-card-marquee .quote-icon {
    font-size: 4rem;
    color: var(--primary-red);
    line-height: 0;
    margin-bottom: 0rem;
    margin-top: 1rem;
    font-family: Georgia, serif;
}

.testimonial-card-marquee .testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-card-marquee .testimonial-author h4 {
    font-size: 1.2rem;
    color: var(--secondary-black);
    margin-bottom: 0.3rem;
}

.testimonial-card-marquee .testimonial-author .designation {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.testimonial-card-marquee .testimonial-author .journey,
.testimonial-card-marquee .testimonial-author .location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .contact-modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
        max-height: 85vh;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }

    .nav-links .contact-trigger {
        display: none;
    }

    .typewriter-text {
        min-width: 200px;
        font-size: 1.5rem;
    }

    .benefit-flip-card {
        height: 200px;
    }

    .testimonial-card-marquee {
        min-width: 320px;
        max-width: 320px;
        padding: 2rem;
    }

    .testimonials-track {
        animation: scroll 40s linear infinite;
    }
}

/* ========== FIXES - ADD AT THE VERY END ========== */

/* Contact Modal Z-Index Fix */
.contact-modal {
    z-index: 999999 !important;
}

.contact-modal-overlay {
    z-index: 999998 !important;
}

.contact-modal-content {
    z-index: 1000000 !important;
}

/* Typewriter Effect Fix */
#typewriter-text {
    display: inline-block;
    min-width: 300px;
    text-align: left;
}

.typewriter-cursor {
    display: inline-block;
    animation: blink 0.7s step-end infinite;
    color: var(--primary-red);
    font-weight: 400;
}

@keyframes blink {

    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

/* Benefit Flip Cards - Increased Height & White Text */
.benefit-flip-card {
    height: 300px !important;
}

.benefit-flip-back {
    background: linear-gradient(135deg, #e10600 0%, #b00500 100%) !important;
    color: white !important;
}

.benefit-flip-back h4 {
    color: white !important;
    font-size: 1.15rem !important;
    margin-bottom: 1rem !important;
}

.benefit-flip-back p {
    color: white !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    opacity: 0.95;
}

/* Get In Touch Button Fix */
.contact-trigger-btn {
    cursor: pointer;
}

/* Footer Contact Link - Remove Button Styling */
.footer-column a.contact-trigger {
    background: none !important;
    color: white !important;
    padding: 0 !important;
    border-radius: 0 !important;
    display: inline !important;
}

.footer-column a.contact-trigger:hover {
    color: var(--accent-link) !important;
    transform: none !important;
    background: none !important;
}

/* Testimonials Gradients */
.testimonials-marquee {
    position: relative;
}

.testimonials-gradient-left,
.testimonials-gradient-right {
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.testimonials-gradient-left {
    left: 0;
    background: linear-gradient(to right, #f8f9fa 0%, rgba(248, 249, 250, 0) 100%);
}

.testimonials-gradient-right {
    right: 0;
    background: linear-gradient(to left, #f8f9fa 0%, rgba(248, 249, 250, 0) 100%);
}

/* Read More Button */
.read-more-btn {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    margin: 1rem 0;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.read-more-btn:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Testimonial Modal */
.testimonial-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.testimonial-modal.show {
    display: flex;
}

.testimonial-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 999998;
}

.testimonial-modal-content {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    position: relative;
    z-index: 1000000;
    animation: modalSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.testimonial-modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    z-index: 10;
}

.testimonial-modal-close:hover {
    background: var(--light-gray);
    color: var(--primary-red);
    transform: rotate(90deg);
}

.testimonial-modal-body {
    margin: 2rem 0;
}

.testimonial-modal-body p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
    font-style: italic;
}

#testimonialModalAuthor {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

/* Responsive Fixes */
@media (max-width: 768px) {
    #typewriter-text {
        min-width: 200px;
        font-size: 1.2rem;
    }

    .benefit-flip-card {
        height: 270px !important;
    }

    .testimonial-modal-content {
        padding: 2rem 1.5rem;
        max-height: 85vh;
    }

    .testimonials-gradient-left,
    .testimonials-gradient-right {
        width: 80px;
    }
}

/* ========== FIXES - REPLACE EXISTING FIXES SECTION ========== */

/* Hero Typewriter Mobile Fix */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem !important;
        line-height: 1.3;
    }
    
    #typewriter-text {
        font-size: 2.2rem !important;
        min-width: 100% !important;
        text-align: center !important;
        display: block !important;
    }
    
    .hero-content {
        padding: 1.5rem !important;
    }
    
    .hero p {
        font-size: 1rem !important;
    }
}

/* Map Width Increase */
.map-wrapper {
    width: 900px !important;
    max-width: 95% !important;
}

/* Testimonial Cards - Reduced Size */
.testimonial-card-marquee {
    min-width: 380px !important;
    max-width: 380px !important;
    padding: 2rem !important;
}

.testimonial-card-marquee .testimonial-text {
    font-size: 0.95rem !important;
    -webkit-line-clamp: 4 !important;
    line-clamp: 4 !important;
}

.testimonial-card-marquee .testimonial-author .journey,
.testimonial-card-marquee .testimonial-author .location {
    display: none !important;
}

/* Contact Modal - Better Styling */
.contact-modal-content {
    max-width: 550px !important;
    padding: 2.5rem !important;
    max-height: 85vh !important;
}

.contact-modal-content h2 {
    font-size: 2rem !important;
    margin-bottom: 2rem !important;
}

.contact-item {
    padding: 1.2rem !important;
    gap: 1.2rem !important;
}

.contact-icon {
    font-size: 2rem !important;
}

.contact-details h4 {
    font-size: 1.1rem !important;
}

.contact-details p {
    font-size: 0.95rem !important;
}

/* Timeline Mobile Fix */
@media (max-width: 768px) {
    .timeline-container h2 {
        font-size: 2rem !important;
        margin-bottom: 2.5rem !important;
    }
    
    .timeline-item {
        grid-template-columns: 70px 25px 1fr !important;
        gap: 1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .timeline-year {
        font-size: 1.8rem !important;
        padding-top: 0.2rem !important;
    }
    
    .timeline-dot {
        width: 14px !important;
        height: 14px !important;
        border-width: 3px !important;
    }
    
    .timeline-line {
        width: 2px !important;
        min-height: 80px !important;
    }
    
    .timeline-content {
        padding-bottom: 1.5rem !important;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .timeline-content p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
}

/* Mobile - Reduce Overall Card Sizes */
@media (max-width: 768px) {
    /* Project Cards */
    .project-card {
        margin-bottom: 1.5rem;
    }
    
    .project-image {
        height: 200px !important;
    }
    
    .project-content {
        padding: 1.5rem !important;
    }
    
    .project-content h3 {
        font-size: 1.3rem !important;
    }
    
    .project-content p {
        font-size: 0.95rem !important;
    }
    
    /* Location Cards */
    .location-card h3 {
        font-size: 1.3rem !important;
    }
    
    .location-card p {
        font-size: 0.9rem !important;
    }
    
    .location-image {
        height: 180px !important;
    }
    
    /* Stats Banner */
    .stat-number {
        font-size: 2.2rem !important;
    }
    
    .stat-label {
        font-size: 0.85rem !important;
    }
    
    /* About Section */
    .about-content h2 {
        font-size: 2rem !important;
    }
    
    .about-content p {
        font-size: 1rem !important;
    }
    
    /* Section Headings */
    section h2 {
        font-size: 2rem !important;
    }
    
    section h3 {
        font-size: 1.5rem !important;
    }
}

/* Mobile Flip Card Button */
.mobile-flip-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-red);
    color: white;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(225, 6, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
}

@media (max-width: 768px) {
    .mobile-flip-btn {
        display: flex !important;
    }
    
    .benefit-flip-card {
        height: 320px !important;
    }
    
    .benefit-flip-card.flipped .benefit-flip-inner {
        transform: rotateY(180deg);
    }
    
    .benefit-flip-inner {
        transition: transform 0.6s;
    }
    
    .benefit-flip-front,
    .benefit-flip-back {
        padding: 1.5rem 1.5rem 4rem 1.5rem !important;
    }
}

.mobile-flip-btn:active {
    transform: scale(0.95);
    background: #b00500;
}

/* Contact Modal Mobile Fix */
@media (max-width: 768px) {
    .contact-modal-content {
        padding: 2rem 1.2rem !important;
        max-width: 92% !important;
    }
    
    .contact-modal-content h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .contact-item {
        padding: 1rem !important;
        gap: 1rem !important;
    }
    
    .contact-icon {
        font-size: 1.8rem !important;
    }
    
    .contact-details h4 {
        font-size: 1rem !important;
    }
    
    .contact-details p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
}

/* Testimonial Mobile Sizing */
@media (max-width: 768px) {
    .testimonial-card-marquee {
        min-width: 300px !important;
        max-width: 300px !important;
        padding: 1.5rem !important;
    }
    
    .testimonial-card-marquee .quote-icon {
        font-size: 3rem !important;
    }
    
    .testimonial-card-marquee .testimonial-text {
        font-size: 0.9rem !important;
        -webkit-line-clamp: 4 !important;
    }
    
    .testimonial-card-marquee .testimonial-author h4 {
        font-size: 1rem !important;
    }
    
    .testimonial-card-marquee .testimonial-author .designation {
        font-size: 0.85rem !important;
    }
}

/* Hero Dots Mobile Fix */
@media (max-width: 768px) {
    .hero-dots {
        bottom: 1rem !important;
    }
    
    .dot {
        width: 12px !important;
        height: 12px !important;
    }
}

/* --- Gallery Teaser Section (Homepage) --- */
.gallery-teaser-section {
    padding: 6rem 2rem;
    background: var(--secondary-black); /* Dark theme for contrast */
    color: white;
    overflow: hidden;
}

.gallery-teaser-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.gallery-teaser-content {
    flex: 1;
    z-index: 2;
}

.gallery-teaser-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.gallery-teaser-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.view-gallery-btn {
    background: var(--primary-red);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.view-gallery-btn:hover {
    background: white;
    color: var(--primary-red);
    transform: translateY(-3px);
}

/* --- Fading Image Frame --- */
.gallery-frame-wrapper {
    flex: 1.2;
    height: 450px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 8px solid rgba(255,255,255,0.1); /* The "Frame" look */
}

.gallery-fade-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Smooth fade effect */
}

.gallery-fade-image.active {
    opacity: 1;
}

/* Responsive Teaser */
@media (max-width: 900px) {
    .gallery-teaser-container {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-frame-wrapper {
        width: 100%;
        height: 350px;
    }
    
    .gallery-teaser-content {
        margin-bottom: 2rem;
    }
}
/* --- Gallery Teaser Section (Homepage) --- */
.gallery-teaser-section {
    padding: 6rem 2rem;
    background-color: #000000; /* Explicit fallback */
    background: var(--secondary-black); /* Dark theme for contrast */
    color: white;
    overflow: hidden;
    position: relative; /* Ensure z-index works */
}

.gallery-teaser-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2; /* Bring content above any potential overlays */
}

.gallery-teaser-content {
    flex: 1;
    z-index: 3;
}

.gallery-teaser-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.gallery-teaser-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.view-gallery-btn {
    background: var(--primary-red);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--primary-red); /* Added border for structure */
}

.view-gallery-btn:hover {
    background: transparent; /* Transparent on hover for style */
    color: white;
    transform: translateY(-3px);
}

/* --- Fading Image Frame --- */
.gallery-frame-wrapper {
    flex: 1.2;
    height: 450px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 8px solid rgba(255,255,255,0.1); /* The "Frame" look */
    background: #000; /* Fallback black behind images */
    z-index: 2;
}

.gallery-fade-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Smooth fade effect */
}

.gallery-fade-image.active {
    opacity: 1;
}

/* Responsive Teaser */
@media (max-width: 900px) {
    .gallery-teaser-container {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-frame-wrapper {
        width: 100%;
        height: 350px;
    }
    
    .gallery-teaser-content {
        margin-bottom: 2rem;
    }
}
/* Vertical Timeline Fix for Mobile */
@media screen and (max-width: 768px) {
    .timeline-marker {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 100%;
    }
}
.download-pdf-btn{
    margin-bottom: 1rem;
}
/* ========== COMPANY STRUCTURE / ORGANIZATION CHART ========== */

.company-structure {
    padding: 2rem 2rem;
    background: white;
}

.structure-container {
    max-width: 1200px;
    margin: 0 auto;
}

.structure-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-black);
}

.org-chart-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.org-chart-image {
    max-width: 100%;
    height: auto;
    width: 100%;
    max-width: 1000px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.org-chart-image:hover {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
    .company-structure {
        padding: 4rem 1.5rem;
    }

    .structure-container h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .org-chart-image-wrapper {
        padding: 1.5rem;
    }
}
/* ========== MISSION & POLICIES SECTION ========== */

.mission-policies {
    padding: 2rem 2rem;
    background: white;
}

.mission-policies-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-section,
.policy-section {
    margin-bottom: 3.5rem;
}

.mission-section h2,
.policy-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-black);
    font-weight: 700;
}

.mission-section p,
.policy-section p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.mission-list,
.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li,
.policy-list li {
    font-size: 1rem;
    color: #333;
    line-height: 1;
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
}

.mission-list li::before,
.policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .mission-policies {
        padding: 3rem 1.5rem;
    }

    .mission-section,
    .policy-section {
        margin-bottom: 2.5rem;
    }

    .mission-section h2,
    .policy-section h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .mission-section p,
    .policy-section p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .mission-list li,
    .policy-list li {
        font-size: 0.95rem;
        margin-bottom: 0.7rem;
        padding-left: 1.6rem;
    }
}