:root {
    --navy: #0b2545;
    --gold: #c9a23a;
    --ivory: #ffffff;
    --muted: #6b7280;
    --max-width: 1100px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    color: var(--navy);
    background: var(--ivory);
    line-height: 1.6;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 14px 0;
    transition: background 0.25s;
}

.header.solid {
    background: var(--navy);
    box-shadow: 0 8px 30px rgba(11, 37, 69, 0.08);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
}

/* Logo */
.brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 100px; /* new height */
    width: auto;  /* maintain aspect ratio */
    margin-right: 12px;
}
.brand-name {
    font-weight: 700;
    font-size: 1.4rem;
    color: #c9a23a;
}

/* Navigation */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: var(--navy); /* solid dark/navy */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 0px 20px;
}

/* Nav list - your existing style */
.nav-list {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.nav-list li a {
    text-decoration: none;
    color: #f5f5f5; /* light color for readability on dark header */
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-list li a:hover {
    color: var(--gold);
}

/* Call-to-action button */
.nav-list li a.cta {
    background: var(--gold);
    color: var(--navy);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
}

.nav-list li a.cta:hover {
    background: darkorange;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    background: url('../images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

.hero .content {
    position: relative;
    text-align: center;
    max-width: 900px;
    padding: 20px;
    z-index: 1;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.hero-tagline {
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.hero-cta {
    display: inline-block;
    padding: 14px 28px;
    background: var(--navy);
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-cta:hover {
    background: darkorange;
    transform: translateY(-2px);
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(11,37,69,0.08);
}

.about-text {
    max-width: 700px;
    text-align: justify;
}

.section.about .section-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
}

.section.about .title-main {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
}

/* Responsive layout */
@media (min-width: 900px) {
    .about-container {
        flex-direction: row;
        align-items: center;
    }

    .about-text {
        flex: 1;
    }

    .about-image {
        flex: 1;
    }
}


/* Sections */
.section {
    padding: 56px 0;
}

.section .section-title {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 8px;
    margin-bottom: 22px;
}

.section .title-main {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--navy);
}

/* Certifications */
.certs {
    background: linear-gradient(90deg, rgba(201,162,58,0.06), rgba(255,250,246,1));
    padding: 48px 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
}

.cert-card {
    background: var(--ivory);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 26px rgba(11, 37, 69, 0.06);
    text-align: center;
}

.cert-card img {
    width: 30%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.view-btn {
    margin-top: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--navy);
    background: transparent;
    color: var(--navy);
    cursor: pointer;
}

/* Services */
.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.service-card {
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(11, 37, 69, 0.05);
}

/* Partners */
.partner-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(11, 37, 69, 0.06);
    text-align: center;
}

/* Contact Section */
.contact {
    background: #f9fafb;
    padding: 60px 20px;
}

.contact .section-title .title-main {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: #fff;
    padding: 28px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(11,37,69,0.05);
}

.contact-card form label {
    display: block;
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.contact-card form input,
.contact-card form textarea {
    width: 100%;
    padding: 10px 14px;
    margin-top: 6px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
form #checkbox{
    width: 10%;
}
.contact-card form input:focus,
.contact-card form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201,162,58,0.2);
}
form #checkbox:focus{
    outline: none;
    border-color: none;
    box-shadow: none;
    
}
.contact-card form .cta {
    margin-top: 16px;
    background: var(--navy);
     color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-card form .cta:hover {
    background: darkorange;
    transform: translateY(-1px);
    border-color: var(--gold);
}

/* Contact Info Card */
.contact-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--navy);
}

.contact-card a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: darkorange;
}

/* Google Maps */
.contact-card iframe {
    border-radius: 8px;
    width: 100%;
    height: 220px;
}

/* Responsive */
@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Footer Links */
.footer-links h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links ul li {
    margin-bottom: 6px;
}

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

.footer-links ul li a:hover {
    color: var(--gold);
}

/* Responsive for Desktop */
@media (min-width: 900px) {

    .footer-links ul {
        text-align: left;
    }
}


.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* spacing between logos */
    margin-bottom: 12px;
}

.footer-logo {
    height: 80px;   /* main logo height */
    width: auto;    /* maintain aspect ratio */
}

.footer-partner-logo {
    height: 38px;   /* partner logo height */
    width: auto;    /* maintain aspect ratio */
}

.footer-copy {
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.footer-design {
    text-align: center;
    font-size: 0.9rem;
}

.footer-design a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
}

.footer-design a:hover {
    color: var(--gold);
}


/* Footer */
.footer {
    background: #f6f7f9;
    padding: 24px 0;
    text-align: center;
    color: var(--muted);
}

/* Responsive */
@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    .nav {
        gap: 24px;
    }
}
