/* ===============================
   ROOT COLORS (From Your Logo)
================================= */
:root {
    --teal: #1F6A73;
    --gold: #D1A55A;
    --navy: #0A1A3F;
    --white: #ffffff;
    --light-aqua: #A5D9CC;

    --font-main: "Poppins", sans-serif;
    --font-heading: "Merriweather", serif;
}

/* ===============================
   GLOBAL RESET
================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background: #f7fdfd;
    color: var(--navy);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* ============================
   STICKY NAVBAR
============================ */

.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: var(--white);
}

/* Optional: shadow appears when scrolling */
.sticky-shadow {
    box-shadow: 0 2px 18px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}


/* =======================================
   SUPER MODERN NAVBAR STYLING
======================================== */

.super-navbar {
    background: var(--white);
}

/* LOGO */
.main-logo {
    width: 110px;
    filter: drop-shadow(0 3px 10px rgba(0,0,0,0.1));
    border-radius: 100%;
}

.brand-title {
    font-size: 25px;
    font-weight: 700;
    color: var(--navy);
}

@media (max-width: 991px) {

    .brand-title {
    display: none;
}
}
/* ======================================
   PERFECT CUSTOM TOGGLE BUTTON 
====================================== */

.fancy-toggler {
    border: none !important;
    background: transparent !important;
    padding: 5px;
    width: 40px;
    height: 35px;
    position: relative;
}

/* Common style for bars */
.fancy-toggler .toggler-icon {
    display: block;
    position: absolute;
    height: 3px;
    width: 28px;
    background-color: var(--navy);
    border-radius: 50px;
    left: 6px;
    transition: 0.35s ease-in-out;
}

/* Bars position */
.fancy-toggler .top-bar {
    top: 6px;
}
.fancy-toggler .middle-bar {
    top: 15px;
}
.fancy-toggler .bottom-bar {
    top: 24px;
}

/* ===== WHEN MENU IS OPEN ===== */

/* Animate top bar → rotate */
.fancy-toggler:not(.collapsed) .top-bar {
    top: 15px;
    transform: rotate(45deg);
}

/* Middle bar disappears */
.fancy-toggler:not(.collapsed) .middle-bar {
    opacity: 0;
}

/* Bottom bar → rotate */
.fancy-toggler:not(.collapsed) .bottom-bar {
    top: 15px;
    transform: rotate(-45deg);
}

/* When menu is closed → reset */
.fancy-toggler.collapsed .top-bar,
.fancy-toggler.collapsed .middle-bar,
.fancy-toggler.collapsed .bottom-bar {
    transform: rotate(0);
    opacity: 1;
}

/* ---------------------------------------
   STYLISH MOBILE MENU BACKGROUND
---------------------------------------- */


/* NAV LINKS */
.link-super {
    font-weight: 600;
    font-size: 16px;
    color: var(--navy) !important;
    position: relative;
    padding: 10px 5px;
    transition: 0.3s;
}

/* Hover color */
.link-super:hover {
    color: var(--gold) !important;
}

/* Active color */
.link-super.active {
    color: var(--gold) !important;
}

/* Underline animation */
.link-super::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 3px;
    background: var(--gold);
    transition: 0.4s;
    border-radius: 50px;
}

.link-super:hover::after,
.link-super.active::after {
    width: 100%;
}


/* ============================================
   SUPER MODERN MOBILE MENU DESIGN (ONLY MOBILE)
============================================ */
@media (max-width: 991px) {

    /* Mobile Menu Background */
    .stylish-menu {
        background: linear-gradient(135deg, var(--teal), var(--light-aqua));
        border-radius: 0 0 25px 25px;
        padding: 25px 0;
        animation: mobileDrop 0.45s ease;
        text-align: center;
    }

    @keyframes mobileDrop {
        from { opacity: 0; transform: translateY(-20px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    /* Mobile nav links style */
    .stylish-menu .nav-link {
        font-size: 18px;
        font-weight: 600;
        color: var(--white) !important;
        padding: 12px 0;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        position: relative;
        transition: 0.3s ease;
    }

    /* Mobile active link color */
    .stylish-menu .nav-link.active {
        color: var(--gold) !important;
    }

    /* Underline animation in mobile */
    .stylish-menu .nav-link::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 5px;
        width: 0%;
        height: 3px;
        background: var(--gold);
        border-radius: 20px;
        transition: 0.4s ease;
        transform: translateX(-50%);
    }

    .stylish-menu .nav-link:hover::after,
    .stylish-menu .nav-link.active::after {
        width: 45%;
    }

    /* Custom toggle button in mobile */
    .fancy-toggler .bar1,
    .fancy-toggler .bar2,
    .fancy-toggler .bar3 {
        width: 30px;
        height: 3px;
        background: var(--navy);
        border-radius: 50px;
        margin: 6px 0;
        transition: 0.4s ease;
    }

    /* Toggle animation: hamburger → X */
    .fancy-toggler:not(.collapsed) .bar1 {
        transform: translateY(9px) rotate(45deg);
    }
    .fancy-toggler:not(.collapsed) .bar2 {
        opacity: 0;
    }
    .fancy-toggler:not(.collapsed) .bar3 {
        transform: translateY(-9px) rotate(-45deg);
    }
}



/* ========================================
   SUPER MODERN HERO SLIDER
======================================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
}

.slide.active {
    display: block;
    animation: fadeSlide 1s ease-in-out;
}

@keyframes fadeSlide {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Background images */
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(65%);
}

/* Text content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: var(--white);
}

.hero-content h1 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 15px;
    animation: slideUp 1s ease;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 20px;
    animation: slideUp 1.3s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-btn {
    background: var(--gold);
    padding: 12px 28px;
    border-radius: 50px;
    color: var(--navy);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: var(--teal);
    color: var(--white);
}

/* NEXT / PREV BUTTONS */
.slider-btn {
    position: absolute;
    top: 90%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    color: var(--white);
    transition: 0.3s ease;
    backdrop-filter: blur(6px);
    color: var(--navy);
   
}

.slider-btn:hover {
    background: rgba(255,255,255,0.55);
    color: var(--navy);
}

.prev { left: 20px; }
.next { right: 20px; }

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.slider-dots .dot.active {
    background: var(--gold);
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 16px;
    }

    .hero-btn {
        padding: 10px 22px;
    }
}


/* ================================
   HOME ABOUT SECTION
================================ */

.home-about {
    background: #f8fcfc;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
}

/* List with icons */
.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    font-size: 17px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-list li i {
    color: var(--teal);
    font-size: 20px;
}

/* Button */
.about-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.about-btn:hover {
    background: var(--gold);
    color: var(--navy);
}

/* Image box */
.about-img-box img {
    border-radius: 12px;
    object-fit: cover;
}


/* Popular Destinations Updated */

.flag-big {
    font-size: 70px;
    margin-bottom: 15px;
}

.flag-small {
    font-size: 42px;
    margin-bottom: 8px;
    display: block;
}

/* Main big cards */
.main-destination-card {
    background: linear-gradient(135deg, var(--teal), var(--light-aqua));
    color: var(--white);
    padding: 40px 25px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
}

.main-destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Small card */
.destination-small-card {
    background: var(--white);
    padding: 20px 10px;
    border-radius: 14px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.destination-small-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.destination-small-card h5 {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
}


/* ===============================
   SUPER PREMIUM FLAG LOOP DESIGN
================================= */

.flag-super-section {
    background: transparent;
    overflow: hidden;
            padding: 10px 10px !important;

}

.flag-super-wrapper {
    width: 100%;
    overflow: hidden;
        padding: 10px 10px !important;

}

.flag-super-track {
    display: flex;
    gap: 45px;
    align-items: center;
}

/* CARD DESIGN */
.flag-card {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    transition: 0.4s ease;
    border: 1px solid rgba(255,255,255,0.5);
}

/* Hover Effect */
.flag-card:hover {
    transform: translateY(-8px) scale(1.07);
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

/* Flag Image */
.flag-card img {
    width: 70px;
    height: 45px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Name */
.flag-card h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

/* Mobile Design */
@media (max-width: 768px) {
    .flag-card {
        width: 90px;
        height: 95px;
    }
    .flag-card img {
        width: 55px;
        height: 35px;
    }
    .flag-card h6 {
        font-size: 12px;
    }
}


/* ===============================
   VISA SERVICES SECTION
================================ */

.visa-services {
    background: #f8fcfc;
}

.service-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(0,0,0,0.10);
    transition: 0.35s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: var(--teal);
    color: var(--white);
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--navy);
}

.service-card p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #555;
}

.service-btn {
    text-decoration: none;
    font-weight: 600;
    color: var(--teal);
    transition: 0.3s ease;
}

.service-btn:hover {
    color: var(--gold);
}


.parallax-cta {
    background-image: url('./img/bg.jpg');
    background-size: cover;
    background-position: center;
    height: 380px;
    position: relative;
    overflow: hidden;
}

.parallax-overlay {
    background: rgba(0,0,0,0.55);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-cta {
    background-attachment: fixed;
}
.parallax-overlay {
    background: rgba(0, 0, 0, 0.55);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.parallax-title {
    color: var(--white);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.parallax-subtitle {
    color: #e6e6e6;
    font-size: 18px;
    margin-bottom: 20px;
}

.parallax-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.parallax-btn:hover {
    background: var(--teal);
    color: var(--white);
}



/* ===========================================
   LEFT CONTENT - RIGHT IMAGE SECTION
=========================================== */

.content-img-section {
    background: #ffffff;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
}

.section-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* LIST */
.content-list {
    list-style: none;
    padding: 0;
}

.content-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    margin-bottom: 10px;
    color: #333;
}

.content-list li i {
    color: var(--teal);
    font-size: 20px;
}

/* BUTTON */
.content-btn {
    display: inline-block;
    background: var(--teal);
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.content-btn:hover {
    background: var(--gold);
    color: var(--navy);
}

/* IMAGE BOX */
.content-img-box img {
    border-radius: 12px;
}


/* ================================
   VISA PROCESS (SUPER DESIGN)
================================ */

.visa-process-new {
    background: #f9fdfd;
}

.process-line-wrapper {
    position: relative;
    margin-top: 40px;
}

/* Main Horizontal track (desktop) */
.process-line-wrapper::before {
    content: "";
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    height: 5px;
    background: #d8e8e8;
    border-radius: 50px;
    z-index: 1;
}

/* Animated Progress Line */
.process-progress {
    position: absolute;
    top: 45px;
    left: 0;
    height: 5px;
    width: 0%;
    background: var(--teal);
    border-radius: 50px;
    transition: width 1s ease-in-out;
    z-index: 2;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    position: relative;
    z-index: 3;
}

/* Step Boxes */
.process-step {
    text-align: center;
    width: 25%;
}

.process-icon {
    width: 75px;
    height: 75px;
    background: var(--teal);
    color: #fff;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: 0.4s ease;
}

.process-step.active .process-icon {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.15);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.process-step h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: #555;
}

/* ===========================================
   PERFECT MOBILE VISA PROCESS DESIGN
=========================================== */
@media (max-width: 768px) {

    .process-line-wrapper {
        position: relative;
        padding-left: 40px;
        margin-top: 30px;
    }

    /* VERTICAL LINE */
    .process-line-wrapper::before {
        content: "";
        position: absolute;
        left: 20px;
        top: 0;
        width: 4px;
        height: 100%;
        background: #d3e4e4;
        border-radius: 10px;
        z-index: 1;
        display: block !important;
    }

    /* Progress line animation (vertical) */
    .process-progress {
        position: absolute;
        left: 20px;
        top: 0;
        width: 4px;
        height: 0%;
        background: var(--teal);
        border-radius: 10px;
        transition: height 1s ease-in-out;
        display: block !important;
    }

    /* Steps become vertical */
    .process-steps {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
        position: relative;
        z-index: 2;
    }

    .process-step {
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
        position: relative;
    }

    /* Icon alignment */
    .process-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
        flex-shrink: 0;
        border: 3px solid #fff;
        z-index: 3;
    }

    /* Text alignment */
    .process-step h4, 
    .process-step p {
        text-align: left;
        margin: 0;
        padding: 0;
    }

    .process-step h4 {
        font-size: 17px;
        margin-bottom: 4px;
    }

    .process-step p {
        font-size: 14px;
        color: #666;
    }
}


/* ================================
   TESTIMONIAL SUPER SLIDER
================================ */
.testimonial-super {
    background: #f8fcfc;
}

.testimonial-slider-container {
    position: relative;
    overflow: hidden;
    padding: 10px 0 40px;
}

.testimonial-track {
    display: flex;
    gap: 25px;
    transition: 0.6s ease;
}

/* Card Design */
.testimonial-card {
    min-width: 330px;
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
    transition: 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

/* Client Image */
.client-img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 12px;
}

.testimonial-card h4 {
    font-size: 18px;
    margin-bottom: 2px;
    color: var(--navy);
}

.testimonial-card span {
    font-size: 14px;
    color: var(--teal);
}

/* Buttons */
.testimonial-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: var(--teal);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: 0.3s ease;
    z-index: 10;
}

.testimonial-btn:hover {
    background: var(--gold);
    color: var(--navy);
}

.prev { left: 0; }
.next { right: 0; }

/* ============================
   PERFECT MOBILE CENTER SLIDER
=============================== */
@media (max-width: 768px) {

    .testimonial-slider-container {
        overflow: hidden;
        position: relative;
        padding: 20px 0;
    }

    .testimonial-track {
        display: flex;
        transition: 0.5s ease;
    }

    .testimonial-card {
        min-width: 80%;
        max-width: 80%;
        margin: 0 auto;
    }

    .testimonial-btn {
        top: 90%;
        transform: translateY(-50%);
    }
}


/* =============================
         NEW PREMIUM FOOTER
============================= */

.new-footer {
    background: #0d1f33;
    color: #cfdbea;
    padding-bottom: 25px;
}

/* LOGO */
.footer-logo {
    width: 140px;
    filter: brightness(1.15);
    border-radius: 100%;
}

/* ABOUT TEXT */
.footer-text {
    font-size: 15px;
    line-height: 1.7;
    color: #b8c9d9;
}

/* Titles */
.footer-title {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.footer-sub {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-top: 12px;
}

/* Links */
.footer-links {
    padding: 0;
    list-style: none;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    text-decoration: none;
    color: #cfdbea;
    font-size: 15px;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* Contact */
.footer-contact {
    padding: 0;
    list-style: none;
    margin: 0;
}

.footer-contact li {
    font-size: 15px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--gold);
    font-size: 18px;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-bottom p {
    color: #b8c9d9;
    font-size: 14px;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-logo {
        width: 110px;
    }
    .footer-title {
        font-size: 17px;
    }
}



/* =======================================
       ABOUT HEADER WITH BREADCRUMB
======================================= */

.about-header {
    background-image: url('./img/bg.jpg'); /* Change your image */
    background-size: cover;
    background-position: center;
    height: 320px;
    position: relative;
    overflow: hidden;
}

.about-overlay {
    background: rgba(0,0,0,0.55);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Breadcrumb */
.breadcrumb-box .breadcrumb-item a {
    color: #f2f2f2;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-box .breadcrumb-item + .breadcrumb-item::before {
    color: #f2f2f2;
}

.breadcrumb-item.active {
    color: #ffdd78 !important; /* Gold */
    font-weight: 600;
}

/* Title */
.about-header-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    margin-top: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
    .about-header {
        height: 250px;
    }

    .about-header-title {
        font-size: 30px;
    }

    .breadcrumb-box .breadcrumb-item a {
        font-size: 14px;
    }
}


/* =====================================
   ABOUT HEADER FIXED BACKGROUND
===================================== */

.about-header {
    background-image: url('./img/bgs.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* FIXED ON DESKTOP */
    height: 340px;
    position: relative;
}

.about-overlay {
    background: rgba(0,0,0,0.55);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.about-header-title {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
}


/* =============================
      ABOUT MAIN CONTENT
============================= */

.about-main-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--navy);
}

.about-main-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* List */
.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.about-list li i {
    color: var(--teal);
    font-size: 20px;
}

/* Image box */
.about-img-box img {
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-main-title {
        font-size: 26px;
    }
    .about-main-text {
        font-size: 15px;
    }
}


/* =============================
      MISSION & VISION
============================= */

.mission-vision-section {
    background: #f5fafc;
}

.mv-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.35s ease;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* ICON */
.mv-icon {
    width: 60px;
    height: 60px;
    background: var(--teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
}

.vision-icon {
    background: var(--gold);
    color: #000;
}

/* TITLE & TEXT */
.mv-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.mv-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
    .mv-title {
        font-size: 20px;
    }
    .mv-text {
        font-size: 15px;
    }
}


/* Visa Parent Card */
.visa-card {
    background: #ffffff;
    padding: 0;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    overflow: hidden;
}

/* Header (Click Area) */
.visa-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px;
    cursor: pointer;
}

.visa-header h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

/* Icon box */
.visa-icon {
    width: 55px;
    height: 55px;
    background: var(--teal);
    color: #fff;
    border-radius: 12px;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Arrow rotate */
.arrow {
    font-size: 22px;
    transition: 0.3s;
}

.expandable.active .arrow {
    transform: rotate(180deg);
}

/* Expand Box */
.visa-expand {
    max-height: 0;
    opacity: 0;
    padding: 0 22px;
    transition: 0.45s ease;
}

.expandable.active .visa-expand {
    max-height: 600px;
    opacity: 1;
    padding: 22px;
}

/* Expanded Image */
.visa-expand-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 14px;
}

/* List Items */
.visa-expand ul {
    padding: 0;
    list-style: none;
}

.visa-expand ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #444;
}

.visa-expand ul li i {
    color: var(--teal);
}


/* NEW VISA TYPES GRID */
.visa-types-new {
    padding: 0;
    margin: 0;
}

.visa-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;  /* NO GAP */
}

/* Single box */
.visa-box-new {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.visa-box-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* Overlay */
.visa-overlay-new {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    color: #fff;
}

.visa-overlay-new::before {
    content: "";
    position: absolute;
    inset: 0;
}

/* Text styles */
.visa-small {
    font-size: 14px;
    display: block;
    opacity: 0.9;
}

.visa-overlay-new h3 {
    margin-top: 6px;
    font-size: 22px;
    font-weight: 700;
}

/* Soft dark overlay */
.visa-box-new::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.7)
    );
}

/* Hover zoom */
.visa-box-new:hover img {
    transform: scale(1.05);
    transition: 0.4s ease;
}

/* Responsive */
@media(max-width: 768px) {
    .visa-grid-new {
        grid-template-columns: 1fr;
    }
    .visa-box-new {
        height: 220px;
        margin-bottom: 10px;
    }
}


/* ============================
        WORK VISA SECTION
============================ */

.work-visa-section {
    background: #f6fbfd;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
}

.section-sub {
    font-size: 16px;
    color: #666;
}

/* IMAGE */
.work-visa-img-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

.work-visa-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.work-visa-img-wrapper:hover .work-visa-img {
    transform: scale(1.05);
}

/* CONTENT */
.work-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.work-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* LIST */
.work-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.work-list li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.work-list li i {
    font-size: 20px;
    color: var(--teal);
}

/* BUTTON */
.work-btn {
    display: inline-block;
    background: var(--teal);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.work-btn:hover {
    background: var(--navy);
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .section-title { font-size: 26px; }
    .work-title { font-size: 22px; }
}


/* ============= TOURIST VISA ============= */

.tourist-visa-section { background: #fbfeff; }

.tourist-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}

.tourist-text {
  font-size: 16px;
  color: #555;
  line-height: 1.75;
}

.tourist-features {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}

.tourist-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
}

.tourist-features li i { color: var(--teal); font-size: 18px; }

/* Image wrapper */
.tourist-img-wrapper {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.tourist-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform .45s ease;
}

.tourist-img-wrapper:hover .tourist-img {
  transform: scale(1.04);
}

/* Buttons (reuse .work-btn if present) */
.work-btn.btn { display: inline-flex; align-items: center; gap: 8px; }

/* Responsive */
@media (max-width: 991px) {
  .tourist-img { height: 300px; }
}
@media (max-width: 576px) {
  .tourist-img { height: 220px; }
  .tourist-title { font-size: 20px; }
}


/* ============================
        STUDENT VISA SECTION
============================ */

.student-visa-section {
    background: #f4faff;
}

.student-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 15px;
}

.student-text {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
}

.student-features {
    list-style: none;
    padding: 0;
    margin: 18px 0;
}

.student-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
}

.student-features li i {
    font-size: 18px;
    color: var(--teal);
}

/* Image container */
.student-img-wrapper {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.student-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: .45s ease;
}

.student-img-wrapper:hover .student-img {
    transform: scale(1.04);
}

/* Buttons */
.student-btn {
    background: var(--teal);
    color: #fff;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.student-btn:hover {
    background: var(--navy);
}

/* Responsive */
@media(max-width: 992px) {
    .student-img { height: 320px; }
}

@media(max-width: 576px) {
    .student-img { height: 220px; }
    .student-title { font-size: 20px; }
}


/* =============================
      PR & IMMIGRATION
============================= */

.pr-visa-section {
    background: #f7faff;
}

.pr-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
}

.pr-text {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
}

/* Features List */
.pr-features {
    list-style: none;
    padding: 0;
    margin: 18px 0;
}

.pr-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
}

.pr-features li i {
    font-size: 18px;
    color: var(--teal);
}

/* Image Preview */
.pr-img-wrapper {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.pr-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: .45s ease;
}

.pr-img-wrapper:hover .pr-img {
    transform: scale(1.04);
}

/* Button */
.pr-btn {
    background: var(--teal);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
}

.pr-btn:hover {
    background: var(--navy);
}

/* Responsive */
@media(max-width: 992px) {
    .pr-img { height: 320px; }
}

@media(max-width: 576px) {
    .pr-img { height: 220px; }
    .pr-title { font-size: 20px; }
}


/* ===============================
        BUSINESS VISA SECTION
=============================== */

.business-visa-section {
    background: #f9fcff;
}

.business-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 15px;
}

.business-text {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
}

.business-features {
    list-style: none;
    padding: 0;
    margin: 18px 0;
}

.business-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
}

.business-features li i {
    font-size: 18px;
    color: var(--teal);
}

/* Image */
.business-img-wrapper {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.business-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: .45s ease;
}

.business-img-wrapper:hover .business-img {
    transform: scale(1.04);
}

/* CTA */
.business-btn {
    background: var(--teal);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
}

.business-btn:hover {
    background: var(--navy);
}

/* Responsive */
@media(max-width: 992px) {
    .business-img { height: 320px; }
}

@media(max-width: 576px) {
    .business-img { height: 220px; }
    .business-title { font-size: 20px; }
}


/* ===========================
        FAMILY VISA SECTION
=========================== */

.family-visa-section {
    background: #fefcff;
}

.family-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 15px;
}

.family-text {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
}

.family-features {
    list-style: none;
    padding: 0;
    margin: 18px 0;
}

.family-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
}

.family-features li i {
    font-size: 18px;
    color: var(--teal);
}

/* Image styling */
.family-img-wrapper {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.family-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: .45s ease;
}

.family-img-wrapper:hover .family-img {
    transform: scale(1.04);
}

/* Button */
.family-btn {
    background: var(--teal);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
}

.family-btn:hover {
    background: var(--navy);
}

/* Responsive */
@media(max-width: 992px) {
    .family-img { height: 320px; }
}

@media(max-width: 576px) {
    .family-img { height: 220px; }
    .family-title { font-size: 20px; }
}


/* =============================
      PREMIUM DESTINATIONS
============================= */

.destinations-premium {
    background: #f4faff;
}

/* Main Card */
.dest-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.45s ease;
}

.dest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* Image */
.dest-img {
    height: 240px;
    overflow: hidden;
}

.dest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .45s;
}

.dest-card:hover .dest-img img {
    transform: scale(1.08);
}

/* Floating Flag */
.dest-flag {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
    background: rgba(255,255,255,0.9);
    padding: 6px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.dest-flag img {
    width: 36px;
    height: auto;
    border-radius: 4px;
}

/* Country Name Box */
.dest-info {
    padding: 18px 20px;
    text-align: left;
}

.dest-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: var(--navy);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .dest-img {
        height: 200px;
    }
    .dest-info h4 {
        font-size: 18px;
    }
}


/* =============================
     SUPER CONTACT SECTION
============================= */

.contact-premium {
    background: #f4f9ff;
}

/* LEFT SIDE CONTACT BOXES */
.contact-box {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #fff;
    padding: 20px 24px;
    border-radius: 16px;
    margin-bottom: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: .3s ease;
}

.contact-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.contact-box .icon {
    background: var(--teal);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
}

.contact-box h4 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
}

.contact-box p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* FORM CARD */
.contact-form-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.form-heading {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 18px;
    font-size: 20px;
}

.input-field {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #d5e3ef;
    font-size: 15px;
}

.input-field:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0,150,136,0.15);
}

.btn-submit {
    width: 100%;
    padding: 13px;
    background: var(--teal);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    transition: .3s ease;
}

.btn-submit:hover {
    background: var(--navy);
}



/* =============================
   RESPONSIVE MAP SECTION
============================= */

.map-responsive-section {
    background: #f4f9ff;
}

/* MAP CARD HOLDER */
.map-container {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* Correct responsive iframe */
.map-container iframe {
    border: 0;
    width: 100%;
    height: 100%;
    display: block;
    filter: brightness(90%);
}

/* Mobile styling */
@media (max-width: 768px) {
    .map-container {
        height: 320px;
        border-radius: 14px;
    }
}

@media (max-width: 576px) {
    .map-container {
        height: 260px;
        border-radius: 12px;
    }
}


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: .3s ease;
    animation: floaty 2.2s infinite ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

/* Floating Air Animation */
@keyframes floaty {
    0% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
    100% { transform: translateY(0); }
}


/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--teal);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
}

/* Show button on scroll */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Hover effect */
.back-to-top:hover {
    background: var(--navy);
    transform: translateY(-5px);
}


/* =============================
   UAE FREELANCE VISA SECTION
============================= */

.freelance-visa-section {
    background: linear-gradient(120deg, #e8f3ff, #f4f9ff);
}

.visa-heading {
    font-size: 38px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.visa-heading span {
    color: var(--teal);
}

.visa-sub {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* LIST */
.visa-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.visa-list li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #333;
    font-weight: 500;
}

.visa-list i {
    color: var(--teal);
    font-size: 20px;
    margin-right: 10px;
}

/* BUTTON */
.cta-btn {
    padding: 12px 32px;
    background: var(--teal);
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: .3s;
}

.cta-btn:hover {
    background: var(--navy);
}

/* IMAGE BOX */
.visa-image-box {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.visa-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease;
}

.visa-image-box:hover img {
    transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
    .visa-heading { font-size: 30px; }
}


/* ======================================
   PERFECT RESPONSIVE CIRCLE SECTION
====================================== */

.business-circle-sec {
    background: #f3f8ff;
}

/* FLEX WRAPPER (keeps circle centered always) */
.circle-flex {
    position: relative;
    width: 100%;
    max-width: 620px;
    height: 620px;
    margin: auto;
}

/* CENTER CIRCLE */
.center-circle-final {
    position: absolute;
    top: 50%;
    left: 56%;
    width: 240px;
    height: 240px;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    border: 6px solid var(--teal);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.center-circle-final h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.4;
}

/* PILL BUTTONS */
.pill {
    position: absolute;
    padding: 12px 26px;
    background: var(--teal);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 40px;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* PERFECT ORBIT POSITIONS */
.pill1 { top: 40px; left: 50%; transform: translateX(-50%); }
.pill2 { top: 180px; right: -15px; }
.pill3 { top: 180px; left: -15px; }
.pill4 { bottom: 180px; right: -15px; }
.pill5 { bottom: 40px; left: 50%; transform: translateX(-50%); }
.pill6 { bottom: 180px; left: -15px; }

/* MOBILE – AUTO STACK ALL ITEMS */
@media (max-width: 768px) {

    .circle-flex {
        height: auto;
        max-width: 100%;
    }

    .center-circle-final {
        position: relative;
        transform: none;
        margin: 0 auto 20px;
            left: 2%;

    }

    .pill {
        position: relative;
        display: block;
        margin: 12px auto;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
    }
}
