/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #003D82;
    --secondary-color: #1565C0;
    --accent-color: #E63946;
    --orange-accent: #FF6B35;
    --yellow-accent: #FFA500;
    --neutral-bg: #F5F5F5;
    --text-dark: #2C3E50;
    --text-light: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

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

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--text-light);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text h2 {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 0;
    line-height: 1;
}

.logo-text h2 span {
    color: var(--primary-color);
}

.logo-text p {
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 61, 130, 0.8), rgba(218, 205, 206, 0.7)), 
                url('https://mgx-backend-cdn.metadl.com/generate/images/284257/2026-01-18/9402402e-6261-4d50-909d-b59ebde736ab.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--yellow-accent);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    background: var(--orange-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 18px;
    color: var(--yellow-accent);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--orange-accent), var(--yellow-accent));
    margin: 0 auto 1.5rem;
}

.section-intro {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
}

.section-intro-text {
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 18px;
    line-height: 1.8;
}

.section-intro-text p {
    margin-bottom: 1rem;
}

/* Overview Section (Home) */
.overview-section {
    background: var(--neutral-bg);
}

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

.overview-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-color);
}

.overview-card:nth-child(2) {
    border-top-color: var(--orange-accent);
}

.overview-card:nth-child(3) {
    border-top-color: var(--yellow-accent);
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.overview-icon {
    font-size: 48px;
    margin-bottom: 1rem;
}

.overview-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.overview-card p {
    margin-bottom: 1rem;
}

.card-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* About Section */
.about-section {
    background: var(--text-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text .lead {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.motto-section {
    margin-bottom: 3rem;
}

.motto {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--yellow-accent);
    max-width: 800px;
    margin: 0 auto;
}

.motto h3 {
    color: var(--yellow-accent);
    font-size: 24px;
    margin-bottom: 0.5rem;
}

.values-section h2 {
    text-align: center;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.value-card {
    background: var(--neutral-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid var(--accent-color);
}

.value-card:nth-child(2) {
    border-top-color: var(--orange-accent);
}

.value-card:nth-child(3) {
    border-top-color: var(--yellow-accent);
}

.value-card:nth-child(4) {
    border-top-color: var(--primary-color);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 0.5rem;
}

/* Services Section */
.services-section {
    background: var(--neutral-bg);
}

.subsection-title {
    font-size: 28px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 3rem;
}

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

.service-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid var(--accent-color);
}

.service-card:nth-child(2n) {
    border-top-color: var(--orange-accent);
}

.service-card:nth-child(3n) {
    border-top-color: var(--yellow-accent);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

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

.service-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-dark);
}

/* Detailed Services */
.detailed-services {
    background: var(--text-light);
    padding: 3rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.service-detail {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--neutral-bg);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail h4 {
    font-size: 22px;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-detail p {
    margin-bottom: 1rem;
}

.service-detail ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.service-detail ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail ul li:before {
    content: "▸";
    color: var(--orange-accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-note {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
}

/* Why Choose Us */
.why-choose-us {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 3rem;
    border-radius: 8px;
    margin-top: 3rem;
    text-align: center;
}

.why-choose-us h3 {
    font-size: 28px;
    margin-bottom: 2rem;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-icon {
    font-size: 24px;
    color: var(--yellow-accent);
    font-weight: bold;
}

.benefit-item p {
    font-size: 16px;
    font-weight: 600;
}

/* Projects Section */
.projects-section {
    background: var(--text-light);
}

.projects-content {
    margin-bottom: 3rem;
}

.project-image-large {
    margin-bottom: 3rem;
}

.project-image-large img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.project-highlights {
    display: grid;
    gap: 1.5rem;
}

.highlight-item {
    background: var(--neutral-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.highlight-item:nth-child(2) {
    border-left-color: var(--orange-accent);
}

.highlight-item:nth-child(3) {
    border-left-color: var(--yellow-accent);
}

.highlight-item h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    margin: 0;
    line-height: 1.8;
}

.project-approach {
    margin-top: 4rem;
}

.project-approach h2 {
    text-align: center;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.approach-card {
    background: var(--neutral-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.approach-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--orange-accent));
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.approach-card:nth-child(2) .approach-number {
    background: linear-gradient(135deg, var(--orange-accent), var(--yellow-accent));
}

.approach-card:nth-child(3) .approach-number {
    background: linear-gradient(135deg, var(--yellow-accent), var(--primary-color));
}

.approach-card:nth-child(4) .approach-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.approach-card h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 0.5rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 4rem;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 2rem;
}

/* Contact Section */
.contact-section {
    background: var(--neutral-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    background: var(--text-light);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 3px solid var(--accent-color);
}

.contact-item:nth-child(2) {
    border-left-color: var(--orange-accent);
}

.contact-item:nth-child(3) {
    border-left-color: var(--yellow-accent);
}

.contact-item:nth-child(4) {
    border-left-color: var(--primary-color);
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin: 0.25rem 0;
    color: var(--text-dark);
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-cta {
    background: var(--text-light);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.method-card {
    background: var(--neutral-bg);
    padding: 2rem;
    border-radius: 8px;
    border-top: 3px solid var(--accent-color);
}

.method-card:nth-child(2) {
    border-top-color: var(--orange-accent);
}

.method-card:nth-child(3) {
    border-top-color: var(--yellow-accent);
}

.method-card h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 0.5rem;
}

.method-card p {
    margin-bottom: 1rem;
}

.method-link {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}

.method-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 1rem;
    color: var(--yellow-accent);
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.footer-motto {
    color: var(--yellow-accent);
}

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

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

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--yellow-accent);
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--text-light);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 0.5rem 0;
    }

    .logo img {
        height: 40px;
    }

    .logo-text h2 {
        font-size: 18px;
    }

    .logo-text p {
        font-size: 9px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 16px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 28px;
    }

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

    .values-grid,
    .approach-grid,
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    section {
        padding: 60px 0;
    }

    .page-header {
        padding: 100px 0 40px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--neutral-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-color), var(--orange-accent));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--orange-accent), var(--yellow-accent));
}