
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fff;
    color: #0E2A5A;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* HEADER */
.header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    height: 60px;
}

nav a {
    margin-left: 18px;
    text-decoration: none;
    color: #0E2A5A;
}

.btn {
    background: #F7941D;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.lang-btn {
    margin-left: 10px;
    border: 1px solid #F7941D;
    background: transparent;
    color: #F7941D;
    padding: 5px 10px;
    cursor: pointer;
}

/* ACTIVITIES */
.activities {
    padding: 80px 0;
    background: #fff;
}

.activities-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.activities-header h2 {
    font-size: 26px;
    color: #0b2a4a;
}

.nav-arrows span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #e6edf6;
    margin-left: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.25s ease;
}

.nav-arrows span:hover {
    background: #f7941d;
    color: #fff;
    border-color: #f7941d;
}

/* GRID */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 boxes in one row */
    gap: 24px;
    margin-bottom: 60px;
}
@media (max-width: 1024px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .activities-grid {
        grid-template-columns: 1fr;
    }
}


/* CARD */
.activity-card {
    cursor: pointer;
}

.activity-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.activity-card h4 {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #0b2a4a;
}

.activity-card p {
    font-size: 13px;
    color: #f7941d;
}

/* HOVER – SIMPLE */
.activity-card:hover img {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(11,42,74,0.18);
}

/* WHY CHOOSE SECTION */
.why-choose {
    background: #cfeeff;
    padding: 90px 0;
    text-align: center;
}

/* MAKE CONTAINER FULL WIDTH ONLY HERE */
.why-choose .container {
    max-width: 100%;
    padding: 0 60px;
}

/* HEADING */
.why-choose h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0E2A5A;
}

/* DESCRIPTION TEXT */
.why-text {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 15px;
    color: #1f2937;
    line-height: 1.8;
}

/* GRID – FORCE 4 IN ONE ROW */
.why-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.why-card {
    background: rgba(255, 255, 255, 0.65);
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ICON */
.why-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #0E2A5A;
}

/* TITLE */
.why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0E2A5A;
}

/* TEXT */
.why-card p {
    font-size: 14px;
    color: #374151;
}

/* HOVER EFFECT (PREMIUM) */
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .why-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-box {
        grid-template-columns: 1fr;
    }

    .why-choose .container {
        padding: 0 20px;
    }
}




/* HERO */
.hero-slider {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.slider {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slide 18s linear infinite;
}

.slider img {
    width: 100%;
    object-fit: cover;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-66.66%); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14,42,90,0.7);
}

.hero-content {
    position: absolute;
    inset: 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* SERVICES */
.services {
    padding: 80px 0;
    text-align: center;
    background: #f9fbff;
}
.services h2 {
    font-size: 32px;
    margin-bottom: 50px;   /* THIS centers it visually */
    color: #0E2A5A;
}


.service-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 30px;
}

/* CARD */
.service-card {
    background: #ffffff;
    padding: 34px 30px;
    border-radius: 14px;
    border: 1px solid #e6edf6;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}

/* ICON */
.service-card .icon {
    font-size: 38px;
    margin-bottom: 14px;
    color: #0b2a4a; /* dark blue */
    transition: color 0.25s ease;
}

/* TITLE */
.service-card h3 {
    margin-bottom: 8px;
    color: #0b2a4a;
}

/* TEXT */
.service-card p {
    font-size: 14px;
    color: #555;
}

/* HOVER – SIMPLE POP */
.service-card:hover {
    transform: translateY(-5px);
    border-color: #f7941d; /* orange */
    box-shadow: 0 14px 30px rgba(11,42,74,0.12);
}

.service-card:hover .icon {
    color: #f7941d;
}

/* ABOUT US */
.about-us {
    padding: 90px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

/* TEXT CONTENT */
.about-content h2 {
    font-size: 32px;
    margin-bottom: 18px;
    color: #0E2A5A;
}

.about-lead {
    font-size: 16px;
    font-weight: 500;
    color: #F7941D;
    margin-bottom: 18px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 14px;
}

/* HIGHLIGHTS */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.highlight-card {
    background: #f9fbff;
    border: 1px solid #e6edf6;
    padding: 16px 22px;
    border-radius: 14px;

    display: flex;
    align-items: center;
    gap: 14px;

    height: 60px;                 /* SAME HEIGHT */
    white-space: nowrap;          /* NO TEXT WRAP */
    overflow: hidden;
    text-overflow: ellipsis;

    font-size: 15px;
    font-weight: 500;
    color: #0E2A5A;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}


.highlight-card span {
    display: inline-block;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(11,42,74,0.12);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .about-us {
        padding: 70px 0;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }
}


/* CONTACT */
.contact {
    background: #f9f9f9;
    padding: 70px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px,1fr));
    gap: 30px;
}

.contact-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.contact-card iframe {
    width: 100%;
    border: 0;
    border-radius: 8px;
    margin-top: 15px;
}

/* MODAL OVERLAY */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(14, 42, 90, 0.75);
    backdrop-filter: blur(4px);
    z-index: 9999;
}

/* MODAL BOX */
.modal-content {
    background: #ffffff;
    max-width: 820px;
    margin: 6% auto;
    padding: 45px 50px 40px;
    border-radius: 18px;
    position: relative;
    box-shadow: 0 40px 90px rgba(0,0,0,0.35);
}

/* CLOSE BUTTON */
.close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 26px;
    color: #0E2A5A;
    cursor: pointer;
}

/* TITLE */
.modal-title {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #0E2A5A;
    margin-bottom: 8px;
}

/* SUBTITLE */
.modal-subtitle {
    text-align: center;
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 35px;
}

/* FORM GRID */
.quote-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
}

/* INPUTS */
.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 14px 14px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #cfd8e3;
    outline: none;
    transition: all 0.25s ease;
}

/* TEXTAREA */
.quote-form textarea {
    grid-column: span 2;
    min-height: 140px;
    resize: vertical;
}

/* FOCUS */
.quote-form input:focus,
.quote-form textarea:focus {
    border-color: #F7941D;
    box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.15);
}

/* SUBMIT BUTTON */
.submit-btn {
    grid-column: span 2;
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
}

/* MOBILE */
@media (max-width: 640px) {
    .modal-content {
        margin: 12% 18px;
        padding: 30px 24px;
    }

    .quote-form {
        grid-template-columns: 1fr;
    }

    .quote-form textarea,
    .submit-btn {
        grid-column: span 1;
    }
}



/* CLOSE */
.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 26px;
    cursor: pointer;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    width: 55px;
    height: 55px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    font-size: 26px;
    text-decoration: none;
    z-index: 9999;          /* IMPORTANT */
}


/* FOOTER */
footer {
    background: #0E2A5A;
    color: #fff;
    text-align: center;
    padding: 18px;
}

/* FORCE FULL-WIDTH BACKGROUND */
.why-choose {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* FULL-BLEED CONTACT SECTION */
.contact {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}
/* FULL-BLEED FOOTER */
footer {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #0E2A5A;
    color: #fff;
    text-align: center;
    padding: 18px;
}

