body {
    font-family: 'Segoe UI', sans-serif;
    padding-top: 90px;
}

/* NAVBAR */
.main-navbar {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* LOGO */
.navbar-brand img {
    width: 200px;
}

/* LINKS */
.nav-link {
    color: #002f6c !important;
    font-weight: 600;
    
}

/* ================= PARTNER BUTTON ================= */
.partner-btn {
    display: inline-block;
    padding: 10px 22px;
    background: linear-gradient(90deg, #ffc107, #ffb300);
    color: #000;
    font-weight: 700;
    font-size: 15px;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
}

.partner-btn:hover {
    background: linear-gradient(90deg, #ffb300, #ffa000);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.6);
}


/* MEGA MENU */
.mega-dropdown {
    position: static;
}

.mega-menu {
    width: 100%;
    padding: 30px;
    border: none;
    display: none;
}

.mega-menu h6 {
    font-weight: 700;
    color: #002f6c;
}

.mega-menu ul {
    list-style: none;
    padding: 0;
}

.mega-menu ul li {
    padding: 6px 0;
    font-size: 14px;
}

.mega-menu ul li a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: #0a2b5f;
    text-decoration: none;
}

.mega-menu ul li a:hover {
    color: #0056ff;
    padding-left: 6px;
    transition: 0.3s;
}


/* DESKTOP HOVER */
@media (min-width: 992px) {
    .mega-dropdown:hover .mega-menu {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: #fff;
    }
}

/* 🔥 MOBILE FIX */
@media (max-width: 991px) {

    .mega-menu {
        position: static;
        max-height: 70vh;
        /* 🔑 IMPORTANT */
        overflow-y: auto;
        /* 🔑 SCROLL ENABLE */
        padding: 20px;
        background: #fff;
    }
}


/* ===== QUOTE POPUP ===== */
.quote-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.quote-box {
    width: 90%;
    max-width: 900px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.quote-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 10;
}

/* LEFT */
.quote-left {
    background: linear-gradient(135deg, #4f7cff, #2563eb);
    color: #fff;
    padding: 40px;
}

.quote-left h2 {
    font-weight: 700;
}

.quote-left img {
    max-width: 100%;
    margin-top: 20px;
}

/* RIGHT */
.quote-right {
    padding: 40px;
}

/* MOBILE */
@media (max-width: 768px) {
    .quote-box {
        width: 95%;
    }

    .quote-left {
        display: block;
        /* ✅ SHOW IMAGE */
        padding: 25px;
        text-align: center;
    }

    .quote-left img {
        max-width: 200px;
        /* ✅ Mobile ke liye size control */
        margin: 15px auto 0;
    }

    .quote-right {
        padding: 25px;
    }
}


/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* 🔥 VIDEO BACKGROUND (ONLY NEW PART) */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(6px);
    z-index: 0;
}

/* ORIGINAL OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(3, 28, 63, 0.9) 0%,
            rgba(3, 28, 63, 0.8) 40%,
            rgba(3, 28, 63, 0.4) 70%,
            rgba(3, 28, 63, 0.1) 100%);
    z-index: 1;
}

/* ORIGINAL CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 17px;
    line-height: 1.7;
    max-width: 520px;
    opacity: 0.95;
}

/* BUTTONS */
.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.btn-hero-primary {
    background: #7b001c;
    color: #fff;
}

.btn-hero-primary:hover {
    background: #9b0023;
    color: #fff;
}

.btn-hero-secondary {
    border: 2px solid #7b001c;
    color: #fff;
}

.btn-hero-secondary:hover {
    background: #7b001c;
    color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 15px;
    }
}


/* ===== ABOUT / STATS SECTION ===== */
.about-stats-section {
    padding: 90px 0;
    background: #fff;
}

/* TAG */
.about-tag {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #7b001c;
    margin-bottom: 15px;
}

/* TITLE */
.about-title {
    font-size: 44px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.25;
    margin-bottom: 20px;
}

.about-title span {
    color: #7b001c;
}

/* TEXT */
.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    max-width: 650px;
}

/* BUTTONS */
.about-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.about-read-more {
    font-weight: 600;
    color: #111;
    text-decoration: none;
}

.about-read-more:hover {
    color: #7b001c;
}

.about-call-btn {
    background: #7b001c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.about-call-btn:hover {
    background: #9b0023;
    color: #fff;
}

/* STATS */
.stat-box h3 {
    font-size: 38px;
    font-weight: 800;
    color: #7b001c;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 15px;
    color: #4b5563;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {
    .about-title {
        font-size: 30px;
    }

    .about-stats-section {
        padding: 60px 0;
    }

    .stat-box h3 {
        font-size: 32px;
    }
}


/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 90px 0;
    background: #fff;
}

/* HEADING */
.services-heading h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
}

.services-heading h2 span {
    color: #7b001c;
}

.services-heading p {
    margin-top: 8px;
    color: #6b7280;
}

/* CARD */
.service-card {
    background: #fff;
    border: 1px solid #fde68a;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: 0.3s;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

/* ICON */
.service-icon {
    width: 80px;
    height: 80px;
    background: #fff7ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon img {
    width: 42px;
}

/* TEXT */
.service-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #7b001c;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card a {
    font-weight: 600;
    color: #7b001c;
    text-decoration: none;
}

.service-card a:hover {
    text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
    .services-heading h2 {
        font-size: 30px;
    }
}


/* ===== INDUSTRIES SECTION ===== */
.industries-section {
    position: relative;
    padding: 31px 0;
    background: url("images/industries-bg.jpg") center/cover no-repeat;
    color: #fff;
}

.industries-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    /* same blue theme */
    z-index: 1;
}

.industries-section .container {
    position: relative;
    z-index: 2;
}

/* HEADING */
.industries-heading h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.industries-heading h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #fff;
    display: block;
    margin: 12px auto 0;
}

/* ITEMS */
.industry-item i {
    font-size: 40px;
    margin-bottom: 12px;
    display: inline-block;
}

.industry-item p {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
}

/* HOVER */
.industry-item:hover i {
    transform: scale(1.2);
    transition: 0.3s;
}

/* MOBILE */
@media (max-width: 768px) {
    .industries-heading h2 {
        font-size: 28px;
    }

    .industry-item i {
        font-size: 34px;
    }
}


/* ===== MOU SECTION ===== */
.mou-section {
    padding: 90px 0;
    background: #fff;
}

/* HEADING */
.mou-heading h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 50px;
}

/* CARD */
.mou-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
    transition: 0.3s;
}

.mou-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.mou-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* CONTENT */
.mou-content {
    padding: 25px;
}

.mou-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.mou-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
}

/* MOBILE */
@media (max-width: 768px) {
    .mou-heading h2 {
        font-size: 28px;
    }

    .mou-card img {
        height: 180px;
    }
}


/* ===== TECHNOLOGIES SECTION ===== */
.tech-section {
    padding: 90px 0;
    background: #fff;
}

.tech-heading h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 40px;
}

/* TABS */
.tech-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tech-tab {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    color: #374151;
}

.tech-tab.active {
    color: #7b001c;
}

.tech-tab.active::after {
    content: "";
    width: 100%;
    height: 2px;
    background: #7b001c;
    position: absolute;
    left: 0;
    bottom: -1px;
}

/* CONTENT */
.tech-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
}

.tech-grid.active {
    display: grid;
}

/* CARD */
.tech-card {
    background: #f9fafb;
    border-radius: 14px;
    padding: 30px 10px;
    text-align: center;
    font-weight: 600;
    color: #374151;
    transition: 0.3s;
}

.tech-card:hover {
    background: #7b001c;
    color: #fff;
    transform: translateY(-5px);
}

/* MOBILE */
@media (max-width: 768px) {
    .tech-heading h2 {
        font-size: 28px;
    }

    .tech-tabs {
        gap: 15px;
    }
}


/* ================= CLIENT SECTION ================= */
.client-section {
    background: linear-gradient(135deg, #0a2540, #020b1a);
    overflow: hidden;
    padding: 4rem;
}

.text-gradient {
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Slider Wrapper */
.client-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Track */
.client-track {
    display: flex;
    gap: 30px;
    animation: scrollClients 35s linear infinite;
    width: max-content;
    /* ✅ IMPORTANT FIX */
}

/* Logo Card */
.client-logo {
    min-width: 220px;
    height: 120px;
    background: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.client-logo img {
    max-width: 140px;
    max-height: 70px;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Animation */
@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover (PRO FEATURE) */
.client-slider:hover .client-track {
    animation-play-state: paused;
}

/* Mobile */
@media (max-width: 768px) {
    .client-track {
        animation-duration: 50s;
        /* slower on mobile */
    }

    .client-logo {
        min-width: 160px;
        height: 100px;
    }

    .client-logo img {
        max-width: 110px;
    }
}

/* ================= CONTACT QUOTE ================= */
.contact-quote {
    position: relative;
    padding: 70px 0;
    /* 🔽 height reduced */
    background: url("images/office-bg.jpg") center/cover no-repeat;
}

.contact-quote-overlay {
    position: absolute;
    inset: 0;
    background: rgba(34, 55, 130, 0.92);
}

.contact-quote .container {
    position: relative;
    z-index: 2;
}

/* LEFT INFO */
.contact-info {
    color: #fff;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    /* 🔽 reduced gap */
}

.info-item span {
    font-size: 13px;
    opacity: 0.85;
}

.info-item p {
    background: #fff;
    color: #111;
    padding: 12px 16px;
    /* 🔽 reduced padding */
    border-radius: 12px;
    margin-top: 6px;
    font-weight: 600;
}

/* FORM CARD */
.quote-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    /* 🔽 reduced */
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.quote-card h2 {
    font-weight: 800;
    margin-bottom: 22px;
}

/* INPUTS */
.quote-card input,
.quote-card select,
.quote-card textarea {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    outline: none;
    font-size: 15px;
}

.quote-card input:focus,
.quote-card select:focus,
.quote-card textarea:focus {
    border-color: #7b001c;
}

/* CHECKBOX */
.check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

/* BUTTON */
.submit-btn {
    width: 100%;
    padding: 14px;
    border-radius: 40px;
    border: none;
    background: linear-gradient(90deg, #5b0014, #7b001c);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.submit-btn:hover {
    opacity: 0.95;
}

/* PRIVACY */
.privacy-text {
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    color: #666;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-quote {
        padding: 45px 0;
    }

    .info-grid {
        grid-template-columns: 1fr;
        margin-bottom: 30px;
    }

    .quote-card {
        padding: 25px;
    }
}



/* ================= TESTIMONIALS ================= */
.testimonial-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #0a2540, #021933);
    color: #fff;
    overflow: hidden;
}

/* HEADER */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.testimonial-header h2 {
    font-size: 36px;
    font-weight: 800;
}

/* NAV BUTTONS */
.testimonial-nav button {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 10px;
}

.testimonial-nav button:hover {
    background: #fff;
    color: #0a3a7e;
}

/* SLIDER */
.testimonial-slider {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}

/* CARD */
.testimonial-card {
    background: #fff;
    color: #333;
    min-width: 340px;
    max-width: 340px;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    position: relative;
}

/* STARS */
.stars {
    color: #2563eb;
    font-size: 18px;
    margin-bottom: 15px;
}

/* PROFILE */
.profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #2563eb;
}

.profile h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
}

.profile span {
    font-size: 14px;
    color: #555;
}

/* TEXT */
.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

/* MOBILE */
@media (max-width: 768px) {
    .testimonial-header h2 {
        font-size: 28px;
    }

    .testimonial-card {
        min-width: 280px;
    }
}

/* ================= MILESTONES ================= */
.milestone-section {
    padding: 80px 0;
    background: #fff;
}

/* HEADER */
.milestone-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.milestone-header h2::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #3b82f6;
    display: block;
    margin: 12px auto 0;
}

/* BOX */
.milestone-box {
    padding: 30px 20px;
}

.milestone-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.milestone-box h3 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.milestone-box p {
    font-size: 14px;
    letter-spacing: 1px;
    color: #6b7280;
}

/* ===== MILESTONES MOBILE: 1 CARD PER ROW ===== */
@media (max-width: 768px) {

    .milestone-section .row {
        flex-wrap: wrap;
        /* normal wrap */
    }

    .milestone-section .col-md-6,
    .milestone-section .col-lg-3 {
        width: 100%;
        max-width: 100%;
    }

    .milestone-box {
        padding: 20px 10px;
    }
}


/* ================= OUR SERVICES TAGS ================= */
.services-tags-section {
    padding: 80px 0;
    background: #fff;
}

.services-title {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #111;
}

/* TAG WRAPPER */
.services-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* TAG */
.services-tags span {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #111;
    transition: 0.3s;
    cursor: default;
}

/* HOVER */
.services-tags span:hover {
    background: #7b001c;
    color: #fff;
    border-color: #7b001c;
    transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
    .services-title {
        font-size: 28px;
    }

    .services-tags span {
        font-size: 14px;
        padding: 9px 14px;
    }
}


/* ================= OFFICE LOCATIONS ================= */
.office-location-section {
    padding: 90px 0;
    background: #f9fafb;
}

/* SECTION TITLE */
.section-title h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 50px;
}

/* CARD */
.location-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

/* HEAD OFFICE HIGHLIGHT */
.location-card.highlight {
    border: 2px solid #7b001c;
}

/* ICON */
.location-card .icon {
    font-size: 34px;
    margin-bottom: 15px;
}

/* TITLE */
.location-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #7b001c;
    margin-bottom: 10px;
}

.location-card h3 span {
    font-size: 13px;
    font-weight: 500;
    color: #475569;
}

/* TEXT */
.location-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
}

/* HOVER EFFECT */
.location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* MOBILE */
@media (max-width: 768px) {
    .office-location-section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .location-card {
        padding: 24px;
    }
}



/* ================= FOOTER ================= */
.main-footer {
    background: #2f313a;
    color: #cbd5e1;
    padding: 70px 0 30px;
    font-size: 15px;
}

/* TOP GRID */
.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-list,
.footer-links,
.footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li,
.footer-links li,
.footer-social li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* SOCIAL */
.footer-social li {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* MAP */
.footer-map iframe {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    border: none;
}

/* BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand img {
    width: 160px;
    margin-bottom: 8px;
}

.stars {
    color: #facc15;
    font-size: 18px;
}

/* BUTTON */
.enquiry-btn {
    background: linear-gradient(90deg, #5b0014, #7b001c);
    color: #fff;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.enquiry-btn:hover {
    opacity: 0.9;
}

/* COPYRIGHT */
.footer-copy {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    color: #94a3b8;
}

/* ===== FOOTER MOBILE IMPROVEMENT ===== */
@media (max-width: 768px) {

    .main-footer {
        padding: 50px 0 25px;
        text-align: center;
    }

    /* STACK ALL COLUMNS */
    .footer-top {
        text-align: center;
    }

    .footer-col {
        margin-bottom: 35px;
    }

    .footer-col h4 {
        font-size: 17px;
        margin-bottom: 14px;
    }

    /* CONTACT INFO */
    .footer-list li {
        font-size: 14px;
        line-height: 1.8;
    }

    /* LINKS & SOCIAL */
    .footer-links li,
    .footer-social li {
        justify-content: center;
        font-size: 14px;
    }

    /* MAP */
    .footer-map iframe {
        height: 220px;
        border-radius: 12px;
    }

    /* FOOTER BOTTOM */
    .footer-bottom {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-brand img {
        width: 140px;
    }

    .stars {
        font-size: 16px;
    }

    /* BUTTON */
    .enquiry-btn {
        width: 100%;
        max-width: 260px;
        padding: 14px 0;
        font-size: 15px;
    }

    /* COPYRIGHT */
    .footer-copy {
        font-size: 13px;
        line-height: 1.6;
        padding-top: 15px;
    }
}