:root {
    --gold: #D4A043;
    --teal: #3AA7A3;
    --dark: #0D3B4C;
    --light: #F7F7F7;
}

/* Global */
body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--dark);
}

:root {
    --gold:#D4A043;
    --white:#FFF;
    --dark:#0D3B4C;
}

/* MAIN NAVBAR */
.neo-nav {
    width: 100%;
    position: fixed;
    top: 15px;
    z-index: 1300;
    display: flex;
    justify-content: center;
}

/* NAV CONTAINER (BLUE GLASS EFFECT) */
.neo-container {
    width: 92%;
    padding: 14px 35px;
    border-radius: 55px;

    background: rgba(255, 255, 255, 0.35);   /* BLUE GLASS */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.23);

    box-shadow:
        0 8px 25px rgba(12, 69, 110, 0.25),
        0 0 10px rgba(12, 69, 110, 0.20);

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO LEFT */
.neo-logo img {
    width: 150px;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 15px;
}

/* DESKTOP MENU LINKS */
.neo-links {
    list-style: none;
    display: flex;
    gap: 34px;
}

.neo-links li a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding-bottom: 6px;
}

/* GOLD UNDERLINE */
.neo-links li a::after {
    content: "";
    width: 0%;
    height: 3px;
    background: var(--gold);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.35s;
}

.neo-links li a:hover::after,
.neo-links li a.active::after {
    width: 100%;
}

.neo-links li a:hover {
    color: var(--gold);
}

/* MOBILE MENU BUTTON */
.neo-toggle {
    display: none;
    font-size: 38px;
    cursor: pointer;
    color: var(--dark);
}

/* -------------------------------------------------- */
/*           MOBILE SLIDE-UP BLUE GLASS MENU          */
/* -------------------------------------------------- */

.neo-mobile-menu {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;

   background: rgba(255, 255, 255, 0.35);   /* BLUE GLASS */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow: 0 -8px 25px rgba(12, 69, 110, 0.3);
    border-radius: 28px 28px 0 0;

    padding: 30px 22px;
    text-align: center;
    transition: 0.45s ease;
    z-index: 2000;
}

.neo-mobile-menu.open {
    bottom: 0;
}

/* HEADER */
.neo-menu-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 20px;
}

.neo-menu-top h3 {
    color: var(--dark);
    font-size: 22px;
    font-weight: 600;
}

.neo-close {
    font-size: 28px;
    cursor: pointer;
    color: var(--dark);
}

/* MOBILE MENU LINKS */
.neo-mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 20px;
    text-decoration: none;
    color: var(--dark);
    position: relative;
    border-radius: 8px;
}

/* Active link blue background + gold underline */
.neo-mobile-menu a.active {
    background: rgba(255,255,255,0.15);
}

.neo-mobile-menu a.active::after,
.neo-mobile-menu a:hover::after {
    content: "";
    width: 100%;
    height: 3px;
    background: var(--gold);
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Hover color change */
.neo-mobile-menu a:hover {
    background: rgba(255,255,255,0.12);
    color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .neo-links { display: none; }
    .neo-toggle { display: block; }
    .neo-logo img { width: 130px; }
    .neo-container { padding: 14px 25px; }
}







/* HERO CAROUSEL FULLSCREEN */
.hero-carousel {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* SLIDER WRAPPER */
.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

/* EACH SLIDE */
.hero-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

/* SLIDE IMAGES */
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DARK OVERLAY */
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.6)
    );
}

/* CAPTION */
.hero-caption {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    z-index: 20;
}

.hero-caption h1 {
    font-size: 3.2rem;
    font-family: 'Cinzel', serif;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
}

.hero-caption h1 span {
    color: var(--gold);
}

.hero-caption p {
    margin-top: 12px;
    font-size: 20px;
    opacity: 0.95;
}

/* BUTTON */
.hero-btn {
    margin-top: 25px;
    padding: 14px 38px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.hero-btn:hover {
    background: var(--white);
    color: var(--dark);
}

/* ARROWS */
.hero-arrow {
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(6px);
    color: var(--white);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s;
    z-index: 30;
}

.hero-prev { left: 30px; }
.hero-next { right: 30px; }

.hero-arrow:hover {
    background: rgba(255,255,255,0.7);
    color: var(--dark);
}

/* DOTS */
.hero-dots {
    position: absolute;
    bottom: 25px;
    width: 100%;
    text-align: center;
    z-index: 30;
}

.hero-dots span {
    width: 15px;
    height: 15px;
    background: rgba(255,255,255,0.5);
    display: inline-block;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: .3s;
}

.hero-dots span.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-caption h1 { font-size: 2rem; }
    .hero-caption p { font-size: 15px; }
}


/* ABOUT SECTION */
.about-section {
    padding: 100px 0;
    background: #f4f8fb;
}

/* FLEX ROW */
.about-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap; /* Ensures perfect mobile stacking */
}

/* LEFT IMAGE */
.about-left {
    flex: 1 1 45%;
    min-width: 290px;
}

.about-img-box {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    box-shadow:
        0 8px 24px rgba(0,0,0,0.12),
        0 0 10px rgba(12,69,110,0.2);
}

.about-img-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* RIGHT CONTENT */
.about-right {
    flex: 1 1 45%;
    min-width: 290px;
}

/* TITLE */
.about-title {
    font-size: 2.5rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 18px;
}

.about-title span {
    color: var(--gold);
}

/* TEXT */
.about-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #2b2b2b;
}

/* BULLET POINTS */
.about-points {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.about-points li {
    font-size: 17px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-points i {
    font-size: 20px;
    color: var(--gold);
}

/* BUTTON */
.about-btn {
    padding: 12px 35px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 35px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.about-btn:hover {
    background: var(--dark);
    color: #fff;
}

/* RESPONSIVE FIXED VERSION */
@media (max-width: 992px) {

    .about-row {
        flex-direction: column;
        text-align: center;
    }

    .about-right {
        text-align: center;
    }

    .about-points {
        margin: 0 auto 20px;
        max-width: 350px;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .about-title {
        font-size: 2rem;
    }
}


/* SERVICES SECTION */
.service-section {
    padding: 110px 0;
    background: #f4f8fb;
}

/* TITLE */
.service-header {
    text-align: center;
    margin-bottom: 55px;
}

.service-header h2 {
    font-size: 2.6rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--dark);
}

.service-header h2 span {
    color: var(--gold);
}

.service-header p {
    font-size: 18px;
    opacity: 0.8;
}

/* GRID — AUTO FIT 8 ITEMS RESPONSIVELY */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 35px;
}

/* SERVICE CARD */
.service-box {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(12px);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow:
        0 8px 20px rgba(0,0,0,0.12),
        0 0 10px rgba(12,69,110,0.2);
    transition: 0.35s ease;
    cursor: pointer;
}

/* HOVER */
.service-box:hover {
    transform: translateY(-10px);
    box-shadow:
        0 12px 28px rgba(0,0,0,0.15),
        0 0 18px rgba(12,69,110,0.25);
}

/* ICON */
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(12,69,110,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon i {
    font-size: 34px;
    color: var(--dark);
}

/* TITLE */
.service-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

/* TEXT */
.service-box p {
    font-size: 16px;
    opacity: 0.8;
}




/* PARALLAX SECTION */
.parallax-section {
    width: 100%;
    height: 65vh;
    background: url('./img/slider2.jpg') no-repeat center center/cover;
    background-attachment: fixed; /* MAIN PARALLAX EFFECT */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* DARK BLUE OVERLAY */
.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 25, 45, 0.55);
}

/* CONTENT BOX */
.parallax-content {
    position: relative;
    text-align: center;
    max-width: 750px;
    padding: 35px 25px;

    /* GLASS EFFECT */
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.25),
        0 0 12px rgba(255,255,255,0.15);
}

.parallax-content h2 {
    font-size: 2.4rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.parallax-content h2 span {
    color: var(--gold);
}

.parallax-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #eaeaea;
    margin-bottom: 25px;
}

/* BUTTON */
.parallax-btn {
    display: inline-block;
    padding: 12px 35px;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 40px;
    transition: .3s ease;
}

.parallax-btn:hover {
    background: #fff;
    color: var(--dark);
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .parallax-section { height: 55vh; }
    .parallax-content h2 { font-size: 2rem; }
}

@media (max-width: 600px) {
    .parallax-section { height: 50vh; }
    .parallax-content h2 { font-size: 1.7rem; }
    .parallax-content p { font-size: 15px; }
}



/* DESTINATION SECTION */
.dest-section {
    padding: 110px 0;
    background: #f4f8fb;
}

/* TITLE */
.dest-header {
    text-align: center;
    margin-bottom: 50px;
}
.dest-header h2 {
    font-size: 2.6rem;
    font-family: 'Cinzel', serif;
    color: var(--dark);
}
.dest-header h2 span {
    color: var(--gold);
}
.dest-header p {
    font-size: 18px;
    opacity: 0.8;
}

/* CAROUSEL WRAPPER */
.dest-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* SLIDER TRACK */
.dest-track {
    display: flex;
    gap: 25px;
    transition: 0.6s;
}

/* CARD */
.dest-card {
    min-width: 280px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.12),
        0 0 12px rgba(12,69,110,0.18);

    transition: .35s ease;
}
.dest-card:hover {
    transform: translateY(-8px);
}

/* IMAGE */
.dest-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* TEXT */
.dest-info {
    padding: 15px 20px;
    text-align: center;
}
.dest-info h3 {
    font-size: 20px;
    font-weight: 700;
}
.dest-info p {
    opacity: 0.75;
}

/* ARROWS */
.dest-prev, .dest-next {
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(6px);
    color: var(--dark);
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 28px;
    box-shadow: 0 0 8px rgba(0,0,0,0.15);
}

.dest-prev { left: -20px; }
.dest-next { right: -20px; }

.dest-prev:hover, .dest-next:hover {
    background: var(--white);
}

/* MOBILE */
@media (max-width: 768px) {
    .dest-card { min-width: 240px; }
}


/* VISA SECTION */
.visa-section {
    padding: 110px 0;
    background: #ffffff;
}

/* TITLE */
.visa-header {
    text-align: center;
    margin-bottom: 55px;
}
.visa-header h2 {
    font-size: 2.6rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--dark);
}
.visa-header h2 span {
    color: var(--gold);
}
.visa-header p {
    font-size: 18px;
    opacity: 0.8;
}

/* VISA GRID */
.visa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 35px;
}

/* VISA CARD */
.visa-box {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(12px);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.12),
        0 0 10px rgba(12,69,110,0.2);

    transition: 0.35s ease;
    cursor: pointer;
}

.visa-box:hover {
    transform: translateY(-8px);
    box-shadow:
        0 12px 28px rgba(0,0,0,0.15),
        0 0 18px rgba(12,69,110,0.25);
}

/* ICON */
.visa-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(12,69,110,0.15);

    display: flex;
    justify-content: center;
    align-items: center;
}
.visa-icon i {
    font-size: 38px;
    color: var(--dark);
}

/* TEXT */
.visa-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}
.visa-box p {
    font-size: 16px;
    opacity: 0.8;
}


/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 110px 0;
    background: #f6f9fc;
}

/* TITLE */
.test-header {
    text-align: center;
    margin-bottom: 50px;
}
.test-header h2 {
    font-size: 2.6rem;
    font-family: 'Cinzel', serif;
}
.test-header h2 span {
    color: var(--gold);
}
.test-header p {
    opacity: 0.8;
    font-size: 18px;
}

/* CAROUSEL */
.test-carousel {
    position: relative;
    overflow: hidden;
}

/* TRACK */
.test-track {
    display: flex;
    gap: 25px;
    transition: 0.6s ease;
}

/* CARD */
.test-card {
    min-width: 350px;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(12px);
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;

    box-shadow:
        0 6px 18px rgba(0,0,0,0.12),
        0 0 12px rgba(12,69,110,0.18);

    transition: .3s;
}
.test-card:hover {
    transform: translateY(-8px);
}

/* USER IMAGE */
.test-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

/* NAME */
.test-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* RATING */
.stars {
    color: #ffcc00;
    font-size: 18px;
    margin-bottom: 10px;
}

/* ARROWS */
.test-prev, .test-next {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);

    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.test-prev { left: -20px; }
.test-next { right: -20px; }

/* RESPONSIVE BREAKPOINTS */

/* Tablet – 2 cards */
@media (max-width: 992px) {
    .test-card {
        min-width: 300px;
    }
}

/* Mobile – 1 card */
@media (max-width: 600px) {
    .test-card {
        min-width: 260px;
    }
}

/* FOOTER MAIN */
.super-footer {
    background: linear-gradient(#001a2d, #00101d);
    color: #fff;
    padding-top: 80px;
    font-family: 'Poppins', sans-serif;
}

/* TOP AREA */
.footer-top {
    padding-bottom: 60px;
}

/* GRID WRAPPER */
.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 45px;
}

/* LOGO */
.footer-logo {
    width: 100px;
    margin-bottom: 20px;
    background-color: #FFF;
    padding: 10px;
    border-radius: 10px;
}

/* ABOUT TEXT */
.footer-about {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* SOCIAL ICONS */
.footer-social a {
    color: #fff;
    margin-right: 12px;
    font-size: 22px;
    transition: 0.3s;
}
.footer-social a:hover {
    color: var(--gold);
}

/* TITLES */
.footer-title {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--gold);
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a, .footer-links li {
    color: #fff;
    opacity: 0.85;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}
.footer-links a:hover {
    color: var(--gold);
    opacity: 1;
}

/* CONTACT TEXT */
.footer-contact {
    margin-bottom: 12px;
    opacity: 0.9;
    display: flex;
    gap: 12px;
    font-size: 15px;
}
.footer-contact i {
    font-size: 18px;
    color: var(--gold);
    margin-top: 3px;
}

/* SUBSCRIBE BOX */
.subscribe-box {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}
.subscribe-box input {
    width: 70%;
    padding: 10px;
    border-radius: 6px;
    border: none;
    outline: none;
}
.subscribe-box button {
    padding: 10px 18px;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.subscribe-box button:hover {
    background: #fff;
}

/* COPYRIGHT BAR */
.footer-bottom {
    background: #000c14;
    padding: 15px 10px;
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
}
.footer-bottom a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
}
.footer-bottom a:hover {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .subscribe-box input {
        width: 100%;
    }
    .subscribe-box {
        flex-direction: column;
    }
}



/* ABOUT PARALLAX SECTION */
.about-parallax {
    width: 100%;
    height: 65vh;
    background: url("./img/bg.jpg") center center/cover no-repeat;
    background-attachment: fixed; /* MAIN PARALLAX EFFECT */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* DARK BLUE OVERLAY */
.about-parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 20, 40, 0.55),
        rgba(0, 10, 20, 0.75)
    );
}

/* CONTENT */
.about-parallax-content {
    position: relative;
    text-align: center;
    padding: 25px 40px;

    /* GLASS BOX */
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 18px;
    box-shadow:
        0 8px 22px rgba(0,0,0,0.20),
        0 0 12px rgba(255,255,255,0.18);
}

.about-parallax-content h1 {
    font-size: 3rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.about-parallax-content h1 span {
    color: var(--gold);
}

.about-parallax-content p {
    font-size: 18px;
    color: #e6e6e6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-parallax { height: 50vh; }
    .about-parallax-content h1 { font-size: 2.3rem; }
}
@media (max-width: 600px) {
    .about-parallax { height: 80vh; }
    .about-parallax-content h1 { font-size: 1.8rem; }
    .about-parallax-content p { font-size: 15px; }
}



/* ABOUT MAIN SECTION */
.about-main {
    padding: 120px 0;
    background: #f4f8fb;
}

/* WRAPPER */
.about-main-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* LEFT IMAGE */
.about-main-img {
    flex: 1 1 45%;
}
.about-img-box {
    border-radius: 22px;
    overflow: hidden;

    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    box-shadow:
        0 8px 25px rgba(12,69,110,0.15),
        0 0 12px rgba(12,69,110,0.18);
}
.about-img-box img {
    width: 100%;
    border-radius: 22px;
    display: block;
}

/* RIGHT CONTENT */
.about-main-content {
    flex: 1 1 45%;
}

/* TITLE */
.about-main-content h2 {
    font-size: 2.6rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}
.about-main-content h2 span {
    color: var(--gold);
}

/* TEXT */
.about-main-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #2c2c2c;
}

/* LIST */
.about-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
.about-list li {
    font-size: 17px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-list li i {
    color: var(--gold);
    font-size: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-main-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .about-list {
        margin: 0 auto;
        text-align: left;
        max-width: 340px;
    }
}
@media (max-width: 600px) {
    .about-main-content h2 {
        font-size: 2rem;
    }
}



/* VALUES SECTION */
.values-section {
    padding: 120px 0;
    background: #ffffff;
}

/* TITLE */
.values-header {
    text-align: center;
    margin-bottom: 55px;
}
.values-header h2 {
    font-size: 2.6rem;
    font-family: 'Cinzel', serif;
}
.values-header h2 span {
    color: var(--gold);
}
.values-header p {
    font-size: 18px;
    opacity: 0.8;
}

/* GRID */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 35px;
}

/* CARD */
.value-card {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.12),
        0 0 12px rgba(12,69,110,0.2);

    transition: .35s ease;
    cursor: pointer;
}
.value-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 12px 30px rgba(0,0,0,0.15),
        0 0 18px rgba(12,69,110,0.25);
}

/* ICON */
.value-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(12,69,110,0.15);

    display: flex;
    justify-content: center;
    align-items: center;
}
.value-icon i {
    font-size: 40px;
    color: var(--gold);
}

/* HEADINGS */
.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

/* TEXT */
.value-card p {
    font-size: 16px;
    opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .values-header h2 { font-size: 2rem; }
}



/* MISSION & VISION SECTION */
.mission-section {
    padding: 120px 0;
    background: #f4f7fb;
}

/* WRAPPER */
.mission-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
}

/* BOX STYLE */
.mission-box {
    flex: 1 1 45%;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 40px 35px;

    box-shadow:
        0 10px 28px rgba(0,0,0,0.12),
        0 0 12px rgba(12,69,110,0.2);

    transition: .35s ease;
}
.mission-box:hover {
    transform: translateY(-10px);
    box-shadow:
        0 15px 35px rgba(0,0,0,0.15),
        0 0 18px rgba(12,69,110,0.25);
}

/* ICON */
.mission-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgba(12,69,110,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.mission-icon i {
    font-size: 38px;
    color: var(--gold);
}

/* TITLES */
.mission-box h2 {
    font-size: 2rem;
    font-family: 'Cinzel', serif;
    margin-bottom: 15px;
    color: var(--dark);
}
.mission-box h2 span {
    color: var(--gold);
}

/* TEXT */
.mission-box p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .mission-wrapper {
        flex-direction: column;
    }
    .mission-box {
        flex: 1 1 100%;
        text-align: center;
    }
    .mission-icon {
        margin: 0 auto 18px;
    }
}
@media (max-width: 600px) {
    .mission-box h2 {
        font-size: 1.8rem;
    }
}



/* SERVICES GRID SECTION */
.services-grid-section {
    padding: 120px 0;
    background: #f5f8fb;
}

/* TITLE */
.services-grid-header {
    text-align: center;
    margin-bottom: 50px;
}
.services-grid-header h2 {
    font-size: 2.6rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
}
.services-grid-header h2 span {
    color: var(--gold);
}
.services-grid-header p {
    font-size: 18px;
    opacity: 0.8;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 35px;
}

/* CARD */
.service-card {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(12px);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.12),
        0 0 12px rgba(12,69,110,0.2);

    transition: .35s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 12px 28px rgba(0,0,0,0.15),
        0 0 18px rgba(12,69,110,0.25);
}

/* ICON */
.service-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    margin: 0 auto 18px;

    background: rgba(12,69,110,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
}
.service-icon i {
    font-size: 38px;
    color: var(--gold);
}

/* TITLE */
.service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 700;
}

/* TEXT */
.service-card p {
    font-size: 16px;
    opacity: 0.8;
}

/* MOBILE */
@media (max-width: 600px) {
    .services-grid-header h2 {
        font-size: 2rem;
    }
}


/* VISA CATEGORIES SECTION */
.visa-categories-section {
    padding: 120px 0;
    background: #f4f8fb;
}

/* HEADER */
.visa-cat-header {
    text-align: center;
    margin-bottom: 55px;
}
.visa-cat-header h2 {
    font-size: 2.6rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
}
.visa-cat-header h2 span {
    color: var(--gold);
}
.visa-cat-header p {
    font-size: 18px;
    opacity: .8;
}

/* GRID */
.visa-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 35px;
}

/* CARD */
.visa-cat-card {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.12),
        0 0 12px rgba(12,69,110,0.2);

    transition: .35s ease;
}

.visa-cat-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 12px 28px rgba(0,0,0,0.15),
        0 0 18px rgba(12,69,110,0.25);
}

/* ICON */
.visa-cat-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    margin: 0 auto 18px;

    background: rgba(12,69,110,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
}
.visa-cat-icon i {
    font-size: 38px;
    color: var(--gold);
}

/* TITLE */
.visa-cat-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--dark);
}

/* TEXT */
.visa-cat-card p {
    font-size: 16px;
    opacity: .8;
}

/* MOBILE */
@media (max-width: 600px) {
    .visa-cat-header h2 {
        font-size: 2rem;
    }
}


/* CREATIVE VISA TIMELINE SECTION */
.visa-timeline-section {
    padding: 120px 0;
    background: #f5f8fc;
}

/* TITLE */
.visa-timeline-header {
    text-align: center;
    margin-bottom: 60px;
}
.visa-timeline-header h2 {
    font-size: 2.6rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
}
.visa-timeline-header h2 span {
    color: var(--gold);
}
.visa-timeline-header p {
    font-size: 18px;
    opacity: 0.8;
}

/* TIMELINE WRAPPER */
.visa-timeline {
    position: relative;
    margin: 0 auto;
    max-width: 850px;
}

/* TIMELINE ITEM */
.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 40px;
}

/* BADGE */
.timeline-badge {
    min-width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #fff2b3);
    color: #000;
    font-size: 26px;
    font-weight: 700;
    font-family: 'Cinzel', serif;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* CONTENT */
.timeline-content {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    border-radius: 16px;
    flex: 1;

    box-shadow:
        0 6px 20px rgba(0,0,0,0.12),
        0 0 12px rgba(12,69,110,0.18);

    transition: .3s;
}
.timeline-content:hover {
    transform: translateY(-6px);
}

/* CONTENT TITLE */
.timeline-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* CONTENT TEXT */
.timeline-content p {
    font-size: 16px;
    opacity: 0.8;
}

/* LINE BETWEEN STEPS */
.timeline-line {
    width: 2px;
    height: 50px;
    background: rgba(12,69,110,0.35);
    margin: 0 auto 40px;
    border-radius: 5px;

    transition: .4s ease;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    .timeline-badge {
        margin: 0 auto;
    }
    .timeline-content {
        text-align: center;
    }
}


/* COUNTRIES VISA SECTION */
.visa-countries-section {
    padding: 120px 0;
    background: #f4f8fb;
}

/* HEADER */
.countries-header {
    text-align: center;
    margin-bottom: 50px;
}
.countries-header h2 {
    font-size: 2.6rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
}
.countries-header h2 span {
    color: var(--gold);
}
.countries-header p {
    font-size: 18px;
    opacity: .8;
}

/* GRID */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 30px;
}

/* COUNTRY CARD */
.country-card {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 25px;
    text-align: center;

    box-shadow:
        0 6px 20px rgba(0,0,0,0.12),
        0 0 12px rgba(12,69,110,0.18);

    transition: .35s;
    cursor: pointer;
}

.country-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 12px 28px rgba(0,0,0,0.15),
        0 0 15px rgba(12,69,110,0.25);
}

/* FLAG */
.country-card img {
    width: 70px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* TITLE */
.country-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

/* MOBILE */
@media (max-width: 600px) {
    .countries-header h2 {
        font-size: 2rem;
    }
}



/* MAIN WRAPPER */
.contact-super-section {
    padding: 120px 0;
    background: #f4f8fb;
}

.contact-super-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* SUPER CARD DESIGN */
.contact-card {
    flex: 1 1 45%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(16px);
    border-radius: 22px;
    padding: 40px 30px;

    border: 1px solid rgba(255,255,255,0.25);
    box-shadow:
        0 10px 30px rgba(0,0,0,0.2),
        0 0 25px rgba(0,140,255,0.25);

    transition: .4s ease;
    position: relative;
    overflow: hidden;
}

/* HOVER EFFECT */
.contact-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 18px 50px rgba(0,0,0,0.25),
        0 0 40px rgba(0,140,255,0.35);
}

/* TITLE */
.contact-card h2 {
    font-size: 2.2rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    margin-bottom: 25px;
}
.contact-card h2 span {
    color: var(--gold);
}

/* INDIVIDUAL ITEMS */
.contact-card-item {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}
.contact-card-item i {
    font-size: 22px;
    color: var(--gold);
}
.contact-card-item p {
    font-size: 17px;
    opacity: .9;
    margin: 0;
}

/* FORM CARD */
.super-form input,
.super-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    font-size: 16px;
}

.super-form button {
    width: 100%;
    padding: 12px;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}
.super-form button:hover {
    background: #fff;
    color: #000;
}

/* MAP */
.map-super-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    margin-top: -20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-super-wrapper {
        flex-direction: column;
    }
}


/* WHATSAPP FLOATING BUTTON */
.wa-float {
    position: fixed;
    right: 25px;    /* change to left: 25px; if you want left side */
    bottom: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: #fff;

    border-radius: 50%;
    font-size: 32px;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow:
        0 10px 20px rgba(0,0,0,0.25),
        0 0 20px rgba(37,211,102,0.45);

    z-index: 999;
    transition: .3s ease;
    animation: waFloat 2.5s infinite ease-in-out;
}

/* FLOATING ANIMATION */
@keyframes waFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.wa-float:hover {
    transform: scale(1.12);
    box-shadow:
        0 15px 30px rgba(0,0,0,0.3),
        0 0 28px rgba(37,211,102,0.6);
}

/* ICON */
.wa-float i {
    font-size: 32px;
}


/* DESTINATION CARD */
.dest-card {
    width: 260px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25), 0 0 12px rgba(0,140,255,0.25);
    transition: .3s ease;
}

.dest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.35), 0 0 25px rgba(0,140,255,0.35);
}

/* IMAGE */
.dest-img img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

/* MIDDLE INFO */
.dest-info {
    padding: 15px 18px;
}
.dest-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}
.dest-info p {
    font-size: 15px;
    opacity: 0.8;
}

/* FLAG BOTTOM */
.dest-flag-row {
    margin-top: auto;
    padding: 12px 18px;
    background: rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dest-flag-row img {
    width: 45px;
    height: 30px;
    border-radius: 5px;
    object-fit: cover;
}

.dest-flag-row span {
    font-size: 14px;
    opacity: .8;
}


/* DEST GRID WRAPPER */
.dest-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(4, 1fr); /* Desktop */
    justify-items: center;
    margin-top: 40px;
}

/* TABLET VIEW (2 CARDS) */
@media (max-width: 992px) {
    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }
}

/* MOBILE VIEW (1 CARD CENTERED) */
@media (max-width: 600px) {
    .dest-grid {
        grid-template-columns: repeat(1, 1fr); /* only 1 card */
        justify-items: center;  /* CENTER */
    }
}

/* EXTRA SMALL MOBILE */
@media (max-width: 400px) {
    .dest-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}
.dest-header h2 {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
}

.dest-header p {
    font-size: 18px;
    text-align: center;
    opacity: .8;
}

/* Mobile title */
@media (max-width: 600px) {
    .dest-header h2 {
        font-size: 28px;
    }
    .dest-header p {
        font-size: 12px;
    }
}

.footer-social{
    display: flex;
    align-items: center;
    
}
.footer-social a img {
    width: 24.5px;
    height: 24.5px;
    filter: invert(1); /* white icon */
    align-items: center;
        display: flex;
    align-items: center;
    justify-content: center;
}

.meta-icon{
        width: 25.3px;
    height: 25.3px;
   
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* CARD */
.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.35s ease;

  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* TOP IMAGE */
.service-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

/* CONTENT */
.service-card-content {
  padding: 22px;
  text-align: center;
  flex-grow: 1;
}

.service-card-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card-content p {
  font-size: 15px;
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
