﻿:root {
    --blue-dark: #003B73;
    --blue: #1F6FB2;
    --green-dark: #5B7F29;
    --green: #8BC743;
    --gray-light: #F5F7FA;
    --gray-dark: #333;
    --white: #fff;
}

/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", Arial, sans-serif;
}

body {
    background: linear-gradient(135deg,#eef3f9,#dbe9ff);
}

/* SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}

/* ----------------------------------------------
   HEADER / NAVIGATION
   ---------------------------------------------- */
/* HEADER */
header {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 15px 60px;
    background: rgba(255,255,255,0.95);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    backdrop-filter: blur(8px);
}

    header img {
        height: 65px;
    }

nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    white-space: nowrap;
}

    nav a {
        margin: 0 20px;
        text-decoration: none;
        color: var(--gray-dark);
        font-weight: 600;
        font-size: 15px;
        position: relative;
        transition: 0.3s;
        display: inline-flex;
        align-items: center;
        line-height: 1;
    }

        nav a:hover {
            color: var(--blue);
        }

        nav a::after {
            content: "";
            width: 0%;
            height: 3px;
            background: var(--blue);
            position: absolute;
            bottom: -5px;
            left: 0;
            transition: 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

/* HAMBURGER ICON */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    margin-left: auto;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {

    header {
        padding: 15px 20px;
    }

        header img {
            height: 55px;
        }

    /* SHOW HAMBURGER */
    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
    }

    /* NAV MOBILE STYLE */
    nav {
        position: absolute;
        top: 80px;
        left: 0;
        transform: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        display: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

        nav.active {
            display: flex;
        }

        nav a {
            margin: 12px 0;
            font-size: 16px;
        }
}

/* CTA BUTTON */
.btn-primary {
    background: linear-gradient(to right, var(--blue), var(--green-dark));
    color: white !important;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
    pointer-events:none;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* ----------------------------------------------
   HERO SLIDER
   ---------------------------------------------- */
.hero-slider {
    width: 100%;
    height: 90vh;
    position: relative;
    margin-top: 95px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none; /* hide all slides */
}

    .slide.active {
        display: block; /* show only active slide */
    }


.slide-overlay {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
}

.slide-content {
    position: absolute;
    z-index: 2;
    color: white;
    bottom: 30%;
    left: 7%;
    max-width: 500px;
    animation: fadeUp 1.2s ease-in-out;
}

.slide-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.slide-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.slide-content a {
    pointer-events: auto;
    z-index: 3;
}

/* Fade-up animation */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(40px);}
    100% { opacity: 1; transform: translateY(0);}
}

/* ----------------------------------------------
   SECTION TITLES
   ---------------------------------------------- */
.section-title {
    text-align: center;
    font-size: 36px;
    margin-top: 80px;
    margin-bottom: 15px;
    color: var(--blue-dark);
    font-weight: 700;
    animation: fadeUp 1s ease;
}
.section-p {
    text-align: center;
    font-size: 15px;
    color: var(--blue-dark);
    font-weight: 700;
    animation: fadeUp 1s ease;
}
.section-title p {
    color: #666;
    margin-bottom: 50px;
    font-size: 15px;
}


/* ----------------------------------------------
   SERVICES SECTION
   ---------------------------------------------- */
.services-box {
    padding: 50px 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.service-card {
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    background: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
    cursor: pointer;
}
.service-text p{
    margin-bottom: 18px;
    line-height: 1.3;

}
.service-text h2 {
    margin-bottom: 15px;
    color: #0c3c78;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.service-icon {
    font-size: 55px;
    color: var(--green-dark);
}

/* ----------------------------------------------
   TRACKING BOX
   ---------------------------------------------- */
.tracking-section {
    background: var(--gray-light);
    padding: 60px 40px;
    text-align: center;
}

.tracking-section input {
    width: 330px;
    padding: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-right: 10px;
}

.tracking-section button {
    padding: 14px 22px;
    border: none;
    background: var(--green-dark);
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.tracking-section button:hover {
    background: var(--green);
}

/* ----------------------------------------------
                   NETWORK
   ---------------------------------------------- */
.network img {
    width: 75%;
    margin: 30px auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.network-hero {
    margin-top: 100px;
    background: linear-gradient(135deg,#0f4c81,#1e88e5);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

    .network-hero h1 {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .network-hero p {
        font-size: 18px;
    }

.services-box {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 25px;
    padding: 40px 80px;
}

.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* ----------------------------------------------
   Branch card
   ---------------------------------------------- */

.branch-card {
    position: relative;
    overflow: hidden;
    padding: 25px;
    border-radius: 12px;
    background: linear-gradient(145deg,#ffffff,#eef4ff);
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    border: 1px solid rgba(31,111,178,0.25);
}

    .branch-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.15);
        background: linear-gradient(135deg, #ffffff, #eef5ff);
    }
    .branch-card h3 {
        color: #0f4c81;
        transition: 0.3s;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .branch-card:hover h3 {
        color: #1e88e5;
    }

    .branch-card p {
        font-size: 14px;
        margin: 6px 0;
    }

    .branch-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient( 120deg, transparent, rgba(255,255,255,0.7), transparent );
        transform: skewX(-25deg);
    }

    .branch-card:hover::before {
        animation: shine 0.9s ease;
    }

    @keyframes shine {
    100% {
        left: 125%;
         }
    }

/* ----------------------------------------------
   GALLERY GRID
   ---------------------------------------------- */
.gallery-grid {
    padding: 50px 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* ----------------------------------------------
   FOOTER
   ---------------------------------------------- */
footer {
    background: var(--blue-dark);
    color: white;
    padding: 50px 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer div {
    width: 30%;
    margin-bottom: 20px;
}

footer a {
    color: #d4e8ff;
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
}

footer a:hover {
    color: var(--green);
}

/* ----------------------------------------------
   RESPONSIVE ADJUSTMENTS
   ---------------------------------------------- */
@media (max-width: 900px) {
    header {
        flex-direction: column;
        padding: 15px;
    }

    nav a {
        margin: 10px;
        display: inline-block;
    }

    .slide-content h1 {
        font-size: 36px;
    }

    .slide-content p {
        font-size: 16px;
    }

    footer div {
        width: 100%;
    }
}

/*----FTL----*/
.service-hero {
    margin-top: 100px;
    background: linear-gradient(135deg,#1F6FB2,#5B7F29);
    color: white;
    text-align: center;
    padding: 70px 20px;
}

    .service-hero h1 {
        font-size: 40px;
        margin-bottom: 10px;
    }

.service-details {
    display: flex;
    gap: 50px;
    padding: 60px 80px;
    align-items: center;
}

.service-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-text {
    max-width: 500px;
}

    .service-text h2 {
        color: #003B73;
        margin-bottom: 15px;
    }

    .service-text ul {
        margin-top: 15px;
        line-height: 2;
    }

/*----whatsapp----*/
.whatsapp-container {
    position: fixed;
    bottom: 25px;
    right: 10px;
    display: flex;
    align-items: center;
    z-index: 999;
}

.whatsapp-btn {
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

    .whatsapp-btn img {
        width: 40px;
    }

.whatsapp-text {
    background: #fff;
    color: #333;
    padding: 8px 12px;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateX(20px);
    transition: 0.3s;
}

.whatsapp-container:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(10px);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 60px;
    background: #0c3c78;
    color: white;
    text-align: center;
    flex-wrap: wrap;
}

.stats-box h2 {
    font-size: 40px;
    margin-bottom: 10px;
}
.directors {
    padding: 40px 3%;
    background: #eef5ff;
    text-align: center;
}

.director-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 30px;
    margin-top: 40px;
}

.director-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

    .director-card img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 10px;
    }

.why-us {
    padding: 30px 5%;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 20px;
    margin-top: 40px;
}

.why-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* PREMIUM TIMELINE */

.premium-timeline {
    padding: 10px 10%;
    background: #eef5ff;
    text-align: center;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

    .timeline-container::before {
        content: '';
        position: absolute;
        left: 50%;
        width: 4px;
        height: 100%;
        background: linear-gradient(#0c3c78,#1e73be);
        transform: translateX(-50%);
    }

.timeline-card {
    width: 45%;
    padding: 28px;
    border-radius: 14px;
    position: relative;
    margin: 35px 0;
    background: linear-gradient(#ffffff,#ffffff) padding-box, linear-gradient(135deg,#6fb1fc,#a0d8ff) border-box;
    border: 2px solid #0c3c78;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}


    .timeline-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    }

    .timeline-card:nth-child(odd) {
        left: 0;
    }

    .timeline-card:nth-child(even) {
        left: 55%;
    }

.timeline-year {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #0c3c78;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.timeline-card::after {
    content: '';
    position: absolute;
    top: 25px;
    width: 16px;
    height: 16px;
    background: #0c3c78;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(12,60,120,0.7);
}

.timeline-card:nth-child(odd)::after {
    right: -34px;
}

.timeline-card:nth-child(even)::after {
    left: -34px;
}

/* MOBILE DESIGN */

@media(max-width:768px) {

    .timeline-container::before {
        left: 20px;
    }

    .timeline-card {
        width: 100%;
        left: 0 !important;
        padding-left: 60px;
    }

        .timeline-card::after {
            left: 12px;
        }
}
/* ABOUT PAGE STYLING */

.about-hero {
    margin-top: 100px;
    background: linear-gradient(135deg,#0f4c81,#1e88e5);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

    .about-hero h1 {
        font-size: 40px;
        margin-bottom: 10px;
    }

.about-container {
    
    width: 85%;
    margin: auto;
    padding: 20px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-box {
    background: #fff;
    background: linear-gradient(#fff,#fff) padding-box, linear-gradient(135deg,#6fb1fc,#a0d8ff) border-box;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

    .about-box h2 {
        margin-bottom: 15px;
        color: #0c3c78;
    }

    .about-box p {
        margin-bottom: 18px;
        line-height: 1.7;
    }

.director-section {
    padding: 60px 0;
    background: #eef5ff;
}

.director-card {
    background: linear-gradient(135deg,#8ec5fc,#e0f3ff);
    padding: 30px 25px;
    text-align: center;
    border-radius: 15px;
    border: 1.5px solid rgba(255,255,255,0.6);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12), 0 0 0 2px rgba(255,255,255,0.4);
    transition: 0.4s;
}

    .director-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.2), 0 0 15px rgba(30,136,229,0.5);
    }

    /* Glow Border Effect */

    .director-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 15px;
        background: linear-gradient(120deg,transparent,rgba(255,255,255,0.5),transparent);
        opacity: 0;
        transition: 0.5s;
    }

    .director-card:hover::before {
        opacity: 1;
    }

    /* Director Name */

    .director-card h3 {
        margin-top: 15px;
        font-size: 18px;
        color: #0c3c78;
    }

    /* Director Role */

    .director-card p {
        font-size: 14px;
        color: #444;
    }

.timeline {
    width: 85%;
    margin: auto;
    padding: 60px 0;
}

.timeline-box {
    background: white;
    padding: 25px;
    border-left: 5px solid #0c3c78;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* PAGE TITLE */

.page-title {
    text-align: center;
    padding: 80px 20px 40px;
}

    .page-title h1 {
        font-size: 42px;
        color: #111;
    }

    .page-title p {
        color: #666;
    }



/* CLIENT SECTION */
.client-container {
    width: 85%;
    margin: auto;
    padding: 80px 0;
  
}

/* GRID */
.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

/* CLIENT CARD */
.client-card {
    position: relative;
    background: rgba(255,255,255,0.9);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    overflow: hidden;
    /* FIX ALIGNMENT */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

    /* Gradient Neon Border Animation */
    .client-card::before {
        content: "";
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        border-radius: 20px;
        background: linear-gradient(45deg, #ff7e5f, #feb47b, #6a11cb, #2575fc);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.5s ease;
        filter: blur(12px);
    }

    /* Hover Effect - 3D Float + Neon Glow */
    .client-card:hover {
        transform: translateY(-15px) rotateX(4deg) rotateY(4deg) scale(1.06);
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
    }

        .client-card:hover::before {
            opacity: 1;
        }

    /* CLIENT LOGO */
    .client-card img {
        width: 120px;
        height: 60px;
        object-fit: contain;
        margin-bottom: 15px;
        filter: grayscale(100%);
        transition: 0.4s;
    }

    /* Logo Hover Effect - Reveal & Zoom */
    .client-card:hover img {
        filter: grayscale(0%);
        transform: scale(1.12);
    }

    /* Optional: Brand Name */
    .client-card h3 {
        font-weight: 600;
        color: #0f4c81;
        font-size: 16px;
        margin-top: auto;
        text-align: center;
    }
/* COUNTER SECTION */
.counter-section {
    padding: 20px 0;
    background: linear-gradient(135deg,#0f2027,#203a43,#2c5364);
}

.counter-container {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.counter-card {
    flex: 1;
    min-width: 220px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    color: white;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.2);
}

    .counter-card:hover {
        transform: translateY(-10px);
        background: rgba(255,255,255,0.2);
    }

    .counter-card i {
        font-size: 35px;
        margin-bottom: 15px;
        color: #f4c430;
    }

    .counter-card h2 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .counter-card p {
        color: #ddd;
        font-size: 16px;
    }

.agency-form-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.agency-form-container {
    max-width: 900px;
    margin: auto;
    position: center;
    padding: 25px;
    border-radius: 12px;
    background: linear-gradient(145deg,#ffffff,#eef4ff);
    border: 1px solid rgba(31,111,178,0.25);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    
}

.agency-form-container h2{
text-align:center;
margin-bottom:30px;
}

form input,
form textarea,
form select{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ccc;
border-radius:6px;
}

table{
width:100%;
border-collapse:collapse;
margin-bottom:20px;
}

table th, table td{
border:1px solid #ddd;
padding:8px;
}

button{
background:#1F6FB2;
color:white;
padding:12px 25px;
border:none;
border-radius:6px;
cursor:pointer;
}
/* PHOTO UPLOAD CONTAINER */

.passport-upload{
margin:20px 0;
}

.passport-upload label{
font-weight:600;
color:#0f4c81;
display:block;
margin-bottom:8px;
}

/* Passport Photo Box */

.passport-box{
position:relative;
width:150px;
height:180px;
border:2px solid #0f4c81;
border-radius:6px;
display:flex;
align-items:center;
justify-content:center;
background:#f9fbff;
overflow:hidden;
cursor:pointer;
}

/* Image Preview */

.passport-box img{
width:100%;
height:100%;
object-fit:cover;
display:none;
}

/* Hidden Input */

.passport-box input{
position:absolute;
width:100%;
height:100%;
opacity:0;
cursor:pointer;
}

/* Upload Text */

.upload-text{
position:absolute;
font-size:13px;
color:#666;
text-align:center;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f4f7fb;
}

/* Section */

.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg,#f6f9ff,#eef2f9);
}

/* Container */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Title */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title h2 {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .section-title p {
        color: #666;
    }

/* Grid */

.team-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 40px;
}

/* Card */

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: 0.4s;
}

    .team-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    }

/* Image */

.team-img {
    height: 260px;
    overflow: hidden;
}

    .team-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
    }

.team-card:hover img {
    transform: scale(1.1);
}

/* Info */

.team-info {
    padding: 25px;
    text-align: center;
}

    .team-info h3 {
        margin: 0;
        font-size: 22px;
    }

    .team-info span {
        display: block;
        color: #888;
        margin-top: 5px;
    }

/* Social */

.social {
    margin-top: 15px;
}

    .social a {
        display: inline-block;
        margin: 0 6px;
        font-size: 18px;
        color: #555;
        transition: 0.3s;
    }

        .social a:hover {
            color: #ff6b00;
        }

/* Group Photo */

.team-gallery {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.gallery-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
}

.teamSwiper {
    width: 90%;
    max-width: 1000px;
    margin: auto;
}

.swiper-slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.map-section {
    padding: 80px 60px;
    background: linear-gradient(135deg, #f8fafc, #eef3f8);
    text-align: center;
}

    /* TITLE */
    .map-section h2 {
        font-size: 32px;
        font-weight: 700;
        color: var(--blue-dark);
        margin-bottom: 10px;
    }

    .map-section p {
        font-size: 16px;
        color: #64748b;
        margin-bottom: 40px;
    }

.map-section {
    padding: 80px 60px;
    background: linear-gradient(135deg, #f8fafc, #eef3f8);
    text-align: center;
}

/* MAP BOX */
.map-container {
    max-width: 1100px;
    margin: 40px auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

    /* IFRAME FIX */
    .map-container iframe {
        width: 100%;
        height: 450px;
        border: 0;
        display: block;
    }
@media (max-width: 768px) {

    .map-section {
        padding: 50px 20px;
    }

    .map-container iframe {
        height: 300px;
    }
}