/* Global & Reset */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #004a7c;
}

.logo .accent {
    color: #00a8e8;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #00a8e8;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 74, 124, 0.85), rgba(0, 74, 124, 0.85)), 
                url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 8int: 80px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content .slogan {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #00a8e8;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.3s, background-color 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #0086b8;
    transform: translateY(-3px);
}

.cta-button.secondary {
    background-color: #2ecc71;
}

.cta-button.secondary:hover {
    background-color: #27ae60;
}

/* Services Section */
.services {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #004a7c;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    padding: 3rem 2rem;
    background: #fdfdfd;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #004a7c;
}

/* PV Highlight Section */
.pv-highlight {
    background-color: #f0f9f4;
    padding: 5rem 5%;
}

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

.pv-text h2 {
    font-int: 2.5rem;
    color: #004a7c;
    margin-bottom: 1.5rem;
}

.pv-accent {
    color: #27ae60;
    font-weight: 700;
}

.pv-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pv-features li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.pv-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* TEAM SECTION SCROLLING ANIMATION */
.team-section {
    padding: 5rem 0;
    background-color: #fff;
    overflow: hidden;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    color: #004a7c;
    margin: 3rem 0;
    text-align: center;
}

.marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    animation: scroll 30s linear infinite;
}

/* GALLERY MARQUEE ANIMATION */
.gallery-scroll {
    animation: scroll 40s linear infinite !important;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 3rem;
    min-width: 250px;
    text-align: center;
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: #f0f9f4;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.member-info {
    display: flex;
    flex-direction: column;
}

.member-name {
    font-weight: 700;
    color: #004a7c;
    font-size: 1.2rem;
}

.member-role {
    color: #666;
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gallery h2 {
    font-size: 2.5rem;
    color: #004a7c;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: none; /* Transitioning to marquee-based structure */
}

.gallery-item {
    padding: 0 1rem;
    flex-shrink: 0;
}

.gallery-item img {
    width: 350px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    background-color: #004a7c;
    color: white;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.info-list .info-item {
    margin-bottom: 1.5rem;
}

.info-list .info-item strong {
    display: block;
    color: #00a8e8;
    margin-bottom: 0.3rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    color: #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-form h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #004a7c;
}

.form-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    box-sizing: border-box;
}

.contact-form .cta-button {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: #003355;
    color: rgba(255,215,255,0.6);
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-info {
        text-align: center;
    }
    .info-list {
        margin: 0 auto;
        display: inline-block;
        text-align: left;
    }
    .pv-container {
        grid-template-columns: 1fr;
    }
    .pv-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
}
