* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-blue: #1a3a5c;
    --navy-blue: #0d2a47;
    --white: #ffffff;
    --light-beige: #f5f1e8;
    --yellow: #ffd700;
    --text-dark: #333333;
    --text-gray: #666666;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.nav-menu li:first-child a,
.nav-menu li.active a {
    background: var(--light-beige);
    color: var(--text-dark);
}

.nav-menu a:hover {
    background: var(--light-beige);
    color: var(--text-dark);
}

.dropdown {
    position: relative;
}

.dropdown span {
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    list-style: none;
    min-width: 150px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 5px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 12px;
    background: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(26, 58, 92, 0.5), rgba(13, 42, 71, 0.6));
    z-index: 2;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: 'Arial', sans-serif;
}

.hero-content .highlight {
    font-size: 4.5rem;
    font-weight: 700;
    display: block;
    margin: 15px 0;
    letter-spacing: 2px;
}

.arrow-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 3;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.arrow-down:hover {
    background: rgba(255,255,255,0.3);
}

.arrow-down svg {
    color: var(--white);
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-blue);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Arial', sans-serif;
}

/* Services Section */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--white);
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--light-gray);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    padding: 25px;
    text-align: center;
    font-size: 1.4rem;
    color: var(--dark-blue);
    font-weight: 400;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all {
    text-align: center;
    margin-top: 50px;
}

.btn {
    display: inline-block;
    padding: 12px 35px;
    background: var(--dark-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 3px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn:hover {
    background: var(--navy-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* About Section */
.about {
    background: var(--light-gray);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.about-content .lead {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--dark-blue);
    margin-bottom: 30px;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    margin-top: 25px;
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.read-more:hover {
    color: var(--navy-blue);
    text-decoration: underline;
}

/* Projects Section */
.projects {
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.project-item {
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    border: 1px solid #e0e0e0;
}

.project-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.project-item img,
.project-item video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.project-item-hidden {
    display: none;
}

.project-item-visible {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.view-more-container {
    text-align: center;
    margin-top: 50px;
}

.view-more {
    text-align: center;
    margin-top: 50px;
}

#viewMoreBtn.hidden {
    display: none;
}

/* Partners Section */
.partners {
    background: var(--light-gray);
    min-height: 300px;
}

.partners-content {
    text-align: center;
    padding: 40px 0;
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
    padding: 40px 0;
    margin-bottom: 40px;
}

.partner-logo {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 250px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3,
.locations h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--dark-blue);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info p {
    margin-bottom: 30px;
    color: var(--text-gray);
    line-height: 1.8;
}

.contact-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 3px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.locations {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 3px;
}

.location-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #d0d0d0;
}

.location-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.location-item strong {
    color: var(--dark-blue);
    display: block;
    margin-bottom: 12px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-item {
    color: var(--text-gray);
    line-height: 1.8;
}

.location-item a {
    color: var(--dark-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-item a:hover {
    color: var(--navy-blue);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 968px) {
    .services-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .nav-menu a {
        display: block;
        padding: 12px 20px;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content .highlight {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content .lead {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content .highlight {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .nav-wrapper {
        padding: 15px 0;
    }

    .logo img {
        height: 45px;
    }

    .partners-logos {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .partner-logo {
        max-width: 100%;
        height: 120px;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(rgba(26, 58, 92, 0.8), rgba(13, 42, 71, 0.9)),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    padding: 150px 0 100px;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.page-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Team Page Styles */
.team-section {
    padding: 100px 0;
    background: var(--white);
}

.team-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.team-member {
    text-align: center;
    background: var(--light-gray);
    padding: 30px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-image {
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.team-image img {
    width: 100%;
    max-width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
    display: block;
}

.team-placeholder {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 50%;
    overflow: hidden;
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-weight: 400;
}

.team-role {
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.team-member p {
    color: var(--text-gray);
    line-height: 1.6;
}

.team-values {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #e0e0e0;
}

.team-values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 50px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 5px;
}

.value-item h4 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-weight: 400;
}

.value-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* About Page Styles */
.about-page {
    padding: 100px 0;
    background: var(--white);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 60px 0;
    padding: 40px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-weight: 300;
}

.stat-item p {
    color: var(--text-gray);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px;
    background: var(--light-gray);
    border-radius: 5px;
}

.about-cta h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 300;
}

.about-cta p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* Services Page Styles */
.service-card p {
    padding: 0 20px 25px;
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.additional-services {
    padding: 100px 0;
    background: var(--light-gray);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-item {
    background: var(--white);
    padding: 30px;
    border-radius: 5px;
    border-left: 4px solid var(--dark-blue);
}

.service-item h4 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-weight: 400;
}

.service-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Projects Page Styles */
.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 58, 92, 0.9), transparent);
    color: var(--white);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-item {
    position: relative;
    overflow: hidden;
}

.project-item:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 400;
}

.project-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

.projects-description {
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.projects-description h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 25px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.projects-description p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.project-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.project-list li {
    padding: 12px 0;
    padding-left: 30px;
    color: var(--text-gray);
    position: relative;
    font-size: 1.1rem;
}

.project-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--dark-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Partners Page Styles */
.partners-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.partners-content h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 30px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.partners-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 50px;
    max-width: 700px;
}

.partners-list li {
    padding: 15px 0;
    padding-left: 30px;
    color: var(--text-gray);
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.partners-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--dark-blue);
    font-weight: bold;
    font-size: 1.5rem;
}

.partners-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.partner-type {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 5px;
}

.partner-type h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-weight: 400;
}

.partner-type p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Locations Page Styles */
.locations-page {
    padding: 100px 0;
    background: var(--white);
}

.locations-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.location-card {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 5px;
    border-top: 4px solid var(--dark-blue);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.location-card h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-details {
    color: var(--text-gray);
    line-height: 1.8;
}

.location-details strong {
    color: var(--dark-blue);
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.location-details a {
    color: var(--dark-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-details a:hover {
    color: var(--navy-blue);
    text-decoration: underline;
}

.locations-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px;
    background: var(--light-gray);
    border-radius: 5px;
}

.locations-cta h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 300;
}

.locations-cta p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* Logo Link */
.logo a {
    text-decoration: none;
    display: inline-block;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .team-grid,
    .values-grid,
    .about-stats,
    .services-list,
    .partners-types,
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .projects-description h2,
    .partners-content h2,
    .locations-cta h2,
    .about-cta h2 {
        font-size: 2rem;
    }
}
