* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #111;
    line-height: 1.6;
}

.container {
    /* width: 95%;
    max-width: 1200px;
    margin: auto; */
    width: 100%;
    padding: 0 50px;
    margin: 0 auto;
}

.navbar {
    padding: 5px 0;
    background: #ffffff;
    height: 100px; /* control total navbar height here */
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 250px;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #111;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #2f5fa7;
}

.btn-nav {
    background: #2f5fa7;
    color: white !important;
    padding: 10px 18px;
    border-radius: 4px;
}

.btn-nav:hover {
    background: #1f4174;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    bottom: 100px;
    left: 75%;
    transform: translateX(-50%);
}

.btn-primary {
    background: #2f5fa7;
    color: white;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #1f4174;
}

/* SECTIONS */
.section {
    padding: 80px 0;
    text-align: center;
}

.section h2 {
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 700;
}

.section p {
    max-width: 800px;
    margin: auto;
    color: #555;
}

.features {
    list-style: none;
    margin-top: 30px;
}

.features li {
    margin-bottom: 15px;
    font-weight: 600;
}

/* ================= SERVICES ================= */

.services-section {
    background: #f3f4f6;
    padding: 80px 0;
}

.services-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 80px;
}

.services-left {
    flex: 1;
}

.services-right {
    flex: 1;
}

.services-left h2 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2f5fa7;
}

.services-intro {
    margin-bottom: 40px;
    color: #444;
    line-height: 1.7;
}

.service-image {
    width: 100%;
    height: 400px;
    background: #ddd;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT SIDE LIST */

.services-list {
    border-left: 1px solid #ccc;
    padding-left: 40px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s ease;
}

.service-item.active {
    opacity: 1;
}

.service-number {
    width: 45px;
    height: 45px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.service-item.active .service-number {
    background: #2f5fa7;
    color: white;
    border-color: #2f5fa7;
}

.service-content h4 {
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 600;
}

.service-content p {
    color: #555;
    font-size: 16px;   /* slightly bigger */
    line-height: 1.7;
}

.service-content p {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    margin-top: 0;
}

.service-item.active .service-content p {
    max-height: 200px;
    opacity: 1;
    margin-top: 8px;
}

/* ================= ABOUT US SECTION ================= */
.about-section {
    background: #f3f4f6;
    padding: 80px 0;
}

.about-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.about-left {
    flex: 1.2;
}

.about-right {
    flex: 1;
    max-width: 520px;
}

.about-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}

.about-line {
    width: 50px;
    height: 2px;
    background: #111;
}

.about-label span:last-child {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #111;
}

.about-left h2 {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.05;
    color: #2f5fa7;
}

.about-right p {
    font-size: 18px;
    line-height: 1.9;
    color: #444;
}

/* ================= WHY SECTION ================= */

.why-section {
    background: #f3f4f6;
    padding: 80px 0 100px 0;
}

/* Top layout */

.why-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 90px;
    gap: 60px;
}

.why-left {
    flex: 1;
}

.why-right {
    flex: 1;
    max-width: 520px;
    align-self: flex-end;
}

.why-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
}

.why-label .line {
    width: 50px;
    height: 2px;
    background: #111;
}

.why-label span:last-child {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.why-left h2 {
    font-size: 50px;
    font-weight: 600;
    color: #2f5fa7;
    line-height: 1.1;
}

.why-right p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

/* Stats grid */

.why-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.why-item {
    padding: 0 40px 0 40px;
    border-left: 1px solid #dcdcdc;
}

.why-item:first-child {
    border-left: none;
    padding-left: 0;
}

.why-number {
    font-size: 80px;
    font-weight: 800;
    margin-bottom: 30px;
}

.why-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f4174;
}

.why-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    max-width: 280px;
}

/* Responsive */

@media (max-width: 1100px) {

    .why-top {
        flex-direction: column;
    }

    .why-left h2 {
        font-size: 44px;
    }

    .why-stats {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-item {
        border-left: none;
        padding-left: 0;
    }

    .why-number {
        font-size: 56px;
    }
}

/* GRID */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    padding-right: 40px;
    border-right: 1px solid #ddd;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
}

.stat-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .stats-top {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stats-heading h2 {
        font-size: 36px;
    }

    .stat-number {
        font-size: 48px;
    }
}

/* ================= CTA ================= */

.cta-section {
    background: #2f5fa7;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 50px;
    font-weight: 600;
}

.cta-link {
    display: inline-block;
    margin-top: 10px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 20px;
    border: 2px solid white;
    transition: 0.3s ease;
}

.cta-link:hover {
    background: white;
    color: #2f5fa7;
}

/* ================= FOOTER ================= */
.main-footer {
    background: #f3f4f6;
    padding: 60px 0;
    border-top: 1px solid #dcdcdc;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* SITEMAP ROW */
.footer-sitemap {
    display: flex;
    justify-content: center;
    gap: 50px;
    font-weight: 600;
}

.footer-sitemap a {
    text-decoration: none;
    color: #111;
    font-size: 16px;
    transition: 0.3s;
}

.footer-sitemap a:hover {
    color: #2f5fa7;
}

/* BOTTOM ROW */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT SIDE (SOCIAL + LEGAL) */
.footer-left-group {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    text-decoration: none;
    color: #111;
    font-size: 15px;
    transition: 0.3s;
}

.footer-legal a:hover {
    color: #2f5fa7;
}

.footer-social {
    display: flex;
    gap: 18px;
}

.footer-social a {
    color: #111;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #2f5fa7;
}

/* COPYRIGHT */
.footer-copy {
    font-size: 15px;
    color: #111;
}

/* Responsive */
@media (max-width: 900px) {

    .footer-bottom {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-left-group {
        flex-direction: column;
        gap: 20px;
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}

/* ================= LEGAL PAGES ================= */

.legal-page {
    background: #ffffff;
    padding: 5px 0 120px 0;
}

.legal-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-header img {
    height: 200px;
}

.legal-content h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.legal-content h2 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 10px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

/* ================= CONTACT PAGE START ================= */
.contact-hero {
    position: relative;
    height: 80vh;
    background: url("/images/hero-contact.jpeg") center/cover no-repeat;
    display: flex;
    align-items: center;
}

.contact-hero-content {
    max-width: 600px;
    text-align: left;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(218, 218, 218, 0.5);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;              /* content above overlay */
}

.contact-hero h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-buttons {
    margin-top: 25px;
    display: flex;
    gap: 20px;
}

.btn-secondary {
    background: white;
    color: #111;
    padding: 14px 25px;
    text-decoration: none;
    font-weight: 600;
}

.contact-intro {
    text-align: left;   /* override .section */
}

.contact-intro-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;   /* THIS centers vertically */
    gap: 80px;
}

.contact-intro h2 {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.1;
    color: #2f5fa7;
}

.contact-intro p {
    font-size: 20px;
    line-height: 1.8;
}

.contact-form-wrapper {
    display: flex;
    gap: 80px;
}

.contact-form-section {
    text-align: left;   /* override global center */
}

.contact-form-section h2 {
    font-size: 50px;
    font-weight: 600;
    color: #2f5fa7;
}

.form-left p {
    font-size: 20px;
    line-height: 1.9;
    max-width: 600px;
}

.form-right {
    flex: 1;
    text-align: left;
}

.form-right label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
}

.form-right input,
.form-right textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #d0d0d0;
    background: #fff;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-right textarea {
    min-height: 220px;
    resize: vertical;
}

.form-right input:focus,
.form-right textarea:focus {
    outline: none;
    border-color: #2f5fa7;
    box-shadow: 0 0 0 2px rgba(47, 95, 167, 0.1);
}

.form-right form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-right button {
    margin-top: 10px;
    padding: 14px 30px;
    font-weight: 600;
    background: #2f5fa7;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.form-right button:hover {
    background: #1f4174;
}

/* ===== SUCCESS MODAL ===== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-box {
    background: #ffffff;
    padding: 40px 45px;
    border-radius: 10px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease;
}

.modal-box h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #2f5fa7;
}

.modal-box p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 22px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.modal-close:hover {
    color: #2f5fa7;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-location {
    text-align: left;
}

.location-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;   /* keeps map vertically balanced */
    gap: 100px;
}

.location-left {
    flex: 1;
}

.location-left h2 {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.1;
}

.location-left p {
    font-size: 20px;
    margin: 25px 0 35px 0;
}

.location-right {
    flex: 1;
}

.location-right iframe {
    width: 100%;
    height: 480px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
@media (max-width: 992px) {
    .location-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .location-right iframe {
        height: 350px;
    }
}
/* ================= CONTACT PAGE END ================= */