:root {
    --color-white: #FFFFFF;
    --color-red: #D32F2F;
    --color-red-dark: #b71c1c;
    --color-blue: #0D47A1;
    --color-blue-dark: #002171;
    --color-text: #333333;
    --color-text-light: #555555;
    --color-bg-light: #f8f9fa;
    --color-bg-alt: #eaeef3;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Roboto', sans-serif;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-blue);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-blue);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text);
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--color-blue);
    border-bottom-color: var(--color-red);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-blue);
}

.mobile-menu {
    display: none;
    /* JS will toggle this */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid #eee;
}

.mobile-menu.active {
    display: flex;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-red);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-red {
    background-color: var(--color-red);
    color: white;
}

.btn-red:hover {
    background-color: var(--color-red-dark);
    transform: translateY(-2px);
}

.btn-blue {
    background-color: var(--color-blue);
    color: white;
}

.btn-blue:hover {
    background-color: var(--color-blue-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-blue);
    color: var(--color-blue);
}

.btn-outline:hover {
    background-color: var(--color-blue);
    color: white;
}

.btn-white {
    background-color: white;
    color: var(--color-blue);
}

.btn-white:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, white 0%, var(--color-bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(13, 71, 161, 0.1);
    color: var(--color-blue);
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #222;
}

.highlight-text {
    color: var(--color-red);
    position: relative;
    display: inline-block;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.abstract-shape {
    width: 100%;
    height: 100%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(45deg, var(--color-blue), var(--color-red));
    opacity: 0.1;
    animation: blob-bounce 10s infinite ease-in-out alternate;
}

@keyframes blob-bounce {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: scale(0.9);
    }

    100% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        transform: scale(1.1);
    }
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--color-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divider {
    height: 4px;
    width: 80px;
    background: var(--color-red);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    background: white;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-card {
    padding: 40px;
}

.about-card p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 500;
}

.check-list i {
    color: var(--color-blue);
    width: 20px;
}

.about-stat {
    background: var(--color-blue);
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-stat h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-stat p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Areas of Work */
.work-section {
    background-color: var(--color-bg-light);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.work-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 5px solid transparent;
    position: relative;
    overflow: hidden;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-red {
    border-top-color: var(--color-red);
}

.card-blue {
    border-top-color: var(--color-blue);
}

.card-white {
    border-top-color: #aaa;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background-color: #f5f5f5;
}

.card-icon i {
    width: 30px;
    height: 30px;
}

.red-icon {
    background-color: rgba(211, 47, 47, 0.1);
    color: var(--color-red);
}

.blue-icon {
    background-color: rgba(13, 71, 161, 0.1);
    color: var(--color-blue);
}

.white-icon {
    background-color: rgba(0, 0, 0, 0.05);
    color: #333;
}

.work-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #222;
}

.work-card ul li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.work-card ul li::before {
    content: "•";
    color: var(--color-red);
    position: absolute;
    left: 0;
    top: 0;
}

/* Mission & Vision */
.mission-section {
    padding: 80px 0;
    background: linear-gradient(to right, var(--color-blue), var(--color-blue-dark));
    color: white;
}

.mission-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mission-box,
.vision-box {
    padding: 20px;
}

.icon-header {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.mission-box p,
.vision-box p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* Movements */
.movements-section {
    background-color: white;
}

.movements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.movement-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.movement-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.movement-item i {
    width: 40px;
    height: 40px;
    color: var(--color-red);
    margin-bottom: 15px;
}

.movement-item span {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-blue);
}

.movement-footer {
    text-align: center;
    font-style: italic;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery Placeholder */
.gallery-section {
    background-color: #f9f9f9;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.hero-image-container {
    width: 100%;
    height: 100%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: blob-bounce 10s infinite ease-in-out alternate;
    position: relative;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}


/* CTA Section */
.cta-section {
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTAwIDBDNDQuOCAwIDAgNDQuOCAwIDEwMHM0NC44IDEwMCAxMDAgMTAwIDEwMC00NC44IDEwMC0xMDBTMTU1LjIgMCAxMDAgMHptMCAxODBDNTUuOCAxODAgMjAgMTQ0LjIgMjAgMTAwUzU1LjggMjAgMTAwIDIwczgwIDM1LjggODAgODAtMzUuOCA4MC04MCA4MHoiIGZpbGw9IiNEMzJGMkYiIGZpbGwtb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg=='), linear-gradient(135deg, var(--color-red), var(--color-red-dark));
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cta-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cta-step i {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: white;
}

.cta-step span {
    font-weight: 500;
}

/* Quote Section */
.quote-section {
    background-color: white;
    padding: 80px 0;
}

.quote-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.quote-icon {
    width: 50px;
    height: 50px;
    color: var(--color-red);
    opacity: 0.2;
    margin-bottom: 20px;
}

.quote-card p {
    font-size: 2rem;
    font-weight: 300;
    font-family: var(--font-heading);
    color: var(--color-blue);
    line-height: 1.4;
    margin-bottom: 20px;
}

.quote-card cite {
    font-style: normal;
    font-weight: 700;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-blue);
}

.footer-contact h4 {
    color: var(--color-red);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.disclaimer {
    margin-bottom: 15px;
    font-size: 0.8rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .mission-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* News Ticker */
.news-ticker {
    background-color: var(--color-blue-dark);
    color: white;
    font-size: 0.9rem;
    display: flex;
    overflow: hidden;
    height: 40px;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.ticker-title {
    background-color: var(--color-red);
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    flex-shrink: 0;
    letter-spacing: 0.5px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.ticker-content {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker-slide 30s linear infinite;
    padding-left: 20px;
}

.ticker-track span {
    margin-right: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@keyframes ticker-slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Updated Nav for Fixed Handling */
.navbar.sticky-nav {
    top: 40px;
    /* Below ticker */
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.logo-text .name {
    display: block;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--color-blue);
}

.logo-text .designation {
    display: block;
    font-size: 0.75rem;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Floating Action Button (FAB) */
.fab-help {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-red);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(211, 47, 47, 0.4);
    cursor: pointer;
    z-index: 2000;
    transition: var(--transition);
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.fab-help i {
    width: 24px;
    height: 24px;
}

.fab-help:hover {
    background-color: var(--color-red-dark);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.5);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: var(--radius-md);
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border-top: 5px solid var(--color-red);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.modal-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-blue);
    font-size: 1.5rem;
}

.close-modal {
    font-size: 2rem;
    font-weight: 700;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.close-modal:hover {
    color: var(--color-red);
}

.modal-desc {
    margin-bottom: 20px;
    color: #555;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-blue);
    outline: none;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Animations */
.opacity-0 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}


/* Language Toggle */
.lang-switch {
    background: transparent;
    border: 1px solid var(--color-blue);
    color: var(--color-blue);
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 15px;
    transition: var(--transition);
}

.lang-switch:hover {
    background: var(--color-blue);
    color: white;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .lang-switch {
        margin: 0;
        border-color: #ddd;
        width: 100%;
        text-align: center;
    }
}