/* ================= GENERAL ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    line-height: 1.6;
    background: #ffffff;
}


/* ================= HEADER ================= */

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 7%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    width: 220px; /* Sized for optimal clarity of small logo text */
    height: auto;
    display: block;
}


/* ================= NAVIGATION ================= */

nav a {
    text-decoration: none;
    color: #222222;
    font-weight: bold;
    margin-left: 25px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #1268b3;
}


/* ================= HERO / BANNER ================= */

.hero {
    min-height: 600px;
    background-image:
        linear-gradient(
            rgba(0, 47, 100, 0.70),
            rgba(0, 47, 100, 0.70)
        ),
        url("images/banner.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 60px 10%;
}

.hero-content {
    max-width: 850px;
}

.company-name {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
}

.region {
    font-size: 16px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 25px;
}

.intro {
    font-size: 19px;
    max-width: 700px;
    margin: 0 auto 35px;
}


/* ================= BUTTONS ================= */

.button {
    display: inline-block;
    padding: 13px 28px;
    background: #1268b3;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.button:hover {
    background: #084d8c;
    transform: translateY(-2px);
}

.button.second {
    background: #ffffff;
    color: #1268b3;
}


/* ================= SECTIONS GENERAL ================= */

.section {
    padding: 90px 10%;
}

.heading-small {
    color: #1268b3;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.section h2 {
    font-size: 40px;
    margin-bottom: 25px;
}


/* ================= DELEGATE / AGENT SECTION ================= */

.delegate-section {
    background-color: #ffffff;
}

.delegate-container {
    max-width: 1050px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

.delegate-photo {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Perfect Circular Image Frame - No Border */
.photo-frame {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    overflow: hidden;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    box-sizing: border-box;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    display: block;
}

.delegate-info {
    flex: 1;
}

.delegate-info h2 {
    font-size: 40px;
    color: #12385a;
    margin-bottom: 15px;
}

.delegate-info h3 {
    font-size: 30px;
    color: #12385a;
    margin-bottom: 5px;
}

.delegate-info .position {
    color: #1268b3;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
}

.delegate-info p {
    margin-bottom: 15px;
}


/* ================= SERVICES ================= */

.services {
    background: #f3f7fb;
    text-align: center;
}

.services-container {
    max-width: 1200px;
    margin: 40px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-card {
    background: #ffffff;
    width: 260px;
    min-height: 220px;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-number {
    color: #1268b3;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 21px;
    color: #12385a;
    margin-bottom: 12px;
}


/* ================= ORGANIZATION ================= */

.organization {
    background: #ffffff;
}

.organization-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.organization-text {
    flex: 1;
}

.organization-text h2 {
    margin-bottom: 5px;
}

.location {
    color: #1268b3;
    font-weight: bold;
    margin-bottom: 20px;
}

.organization-box {
    flex: 1;
    background: #1268b3;
    color: #ffffff;
    padding: 50px 35px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.organization-box h3 {
    font-size: 35px;
}

.organization-box hr {
    margin: 25px 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}


/* ================= CONTACT ================= */

.contact-section {
    background: #f3f7fb;
    padding: 90px 8%;
    text-align: center;
}

.contact-section h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-intro {
    max-width: 650px;
    margin: 0 auto 40px;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.contact-box {
    background: #ffffff;
    width: 300px;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.contact-box h3 {
    color: #1268b3;
    margin-bottom: 10px;
}

.contact-box a {
    color: #1268b3;
    text-decoration: none;
    word-break: break-word;
}


/* ================= FOOTER ================= */

footer {
    background: #092f52;
    color: #ffffff;
    text-align: center;
    padding: 40px 10%;
}

footer img {
    width: 200px;
    height: auto;
    margin-bottom: 15px;
}

.footer-copy {
    color: #b9c8d5;
    margin-top: 20px;
    font-size: 14px;
}


/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 768px) {

    /* HEADER & NAV */
    header {
        flex-direction: column;
    }

    .logo img {
        width: 190px;
    }

    nav {
        margin-top: 15px;
        text-align: center;
    }

    nav a {
        display: inline-block;
        margin: 5px 8px;
    }

    /* HERO */
    .hero {
        min-height: 550px;
        padding: 50px 7%;
    }

    .hero h1 {
        font-size: 38px;
    }

    .company-name {
        font-size: 15px;
    }

    .intro {
        font-size: 17px;
    }

    /* GENERAL SECTIONS */
    .section {
        padding: 60px 7%;
    }

    .section h2 {
        font-size: 32px;
    }

    /* AGENT SECTION */
    .delegate-section {
        padding: 60px 7%;
    }

    .delegate-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .photo-frame {
        width: 260px;
        height: 260px;
        border: none;
    }

    .delegate-info h2 {
        font-size: 32px;
    }

    .delegate-info h3 {
        font-size: 25px;
    }

    /* SERVICES */
    .service-card {
        width: 100%;
        max-width: 350px;
    }

    /* ORGANIZATION */
    .organization-container {
        flex-direction: column;
    }

    .organization-text {
        text-align: center;
    }

    .organization-box {
        width: 100%;
    }

    /* CONTACT */
    .contact-section {
        padding: 60px 7%;
    }

    .contact-section h2 {
        font-size: 32px;
    }

    .contact-box {
        width: 100%;
        max-width: 350px;
    }

    /* FOOTER */
    footer {
        padding: 35px 7%;
    }
}