/* Global Styles */
:root {
    --primary-color: #0c2444;
    /* Deep Navy Blue */
    --secondary-color: #c5a059;
    /* Gold/Bronze */
    --accent-color: #f4f6f8;
    /* Light Grey */
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 14px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #b08d4b;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.text-center {
    text-align: center;
}

.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header .divider {
    height: 3px;
    width: 80px;
    background-color: var(--secondary-color);
    margin: 0 auto 20px;
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.logo-text h1 {
    font-size: 1.4rem;
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links .btn-primary {
    padding: 10px 24px;
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 36, 68, 0.85);
    /* Dark blue overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero .badge {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Info Banner */
.info-banner {
    background-color: var(--secondary-color);
    padding: 30px 0;
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.info-banner .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-color);
}

.info-item i {
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 50%;
}

.info-item span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.8;
}

.info-item p {
    font-weight: 700;
    font-size: 1rem;
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-item {
    display: flex;
    gap: 20px;
}

.value-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 5px;
}

.value-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.value-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-cards .card {
    background-color: var(--accent-color);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.about-cards .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Services Section */
.services {
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-bottom-color: var(--secondary-color);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(197, 160, 89, 0.1);
    /* Light gold bg */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background-color: var(--secondary-color);
}

.icon-box i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.service-card:hover .icon-box i {
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Team Section */
.team {
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
}

.team-member:hover {
    box-shadow: var(--shadow);
    border-color: transparent;
}

.member-img {
    height: 200px;
    background-color: #e0e5ec;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.placeholder-img {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #aebacf;
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.member-info .role {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.member-info .qualifications {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 15px;
    font-style: italic;
}

.member-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Stats/Divider */
.stats-divider {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
}

.stats-divider .container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item h2 {
    color: var(--secondary-color);
    font-size: 3rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    background-color: #f8f9fa;
}

.contact-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.contact-card {
    text-align: center;
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-card h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Footer */
footer {
    background-color: #051224;
    /* Darker than primary */
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.footer-brand p {
    opacity: 0.7;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Add JS toggle for mobile later if needed, simple logic below */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--primary-color);
        margin: 5px 0;
    }

    .hero-content {
        padding-top: 50px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .info-banner {
        margin-top: 0;
    }

    .info-item {
        width: 100%;
        justify-content: flex-start;
    }

    .stats-divider .container {
        flex-direction: column;
        gap: 40px;
    }
}