/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@500;600;700&display=swap');

/* ---------- ROOT VARIABLES (LOGO COLORS) ---------- */
:root {
    --primary-blue: #1A4C89;
    --light-blue: #3FA9F5;
    --gold: #D4A037;
    --dark-gold: #A8742A;
    --white: #ffffff;

    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

/* ---------- GLOBAL RESET ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background: #f7f9fc;
    color: #333;
    overflow-x: hidden;
}



/* LOGO FONT */
.brand-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
}

/* NAVBAR */
.navbar {
    background: #ffffff;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.05);
    position: static;
}

/* Make Navbar Fixed to Top */
.sticky-nav {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #ffffff;
    transition: all 0.3s ease-in-out;
}

/* Navbar Shadow Appears on Scroll */
.sticky-nav.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    padding-top: 10px;
    padding-bottom: 10px;
}


/* NAV LINKS */
.nav-link {
    position: relative;
    font-weight: 500;
    font-size: 17px;
    color: var(--primary-blue) !important;
    padding: 8px 12px;
    transition: color .3s ease;
}

/* UNDERLINE ANIMATION */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 3px;
    background: var(--gold);
    border-radius: 10px;
    transition: width .35s ease-in-out;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
}

/* MOBILE NAV */
.offcanvas {
    background: #ffffff;
}

.offcanvas .nav-link {
    font-size: 20px;
    padding: 12px 0;
}


/* SUPER NAV ITEM DESIGN */
.navbar-nav .nav-item {
    margin: 0 6px;
    padding: 4px 0;
    position: relative;
}

/* NAV LINK */
.navbar-nav .nav-link {
    position: relative;
    font-weight: 600;
    font-size: 17px;
    padding: 10px 18px;
    border-radius: 8px;
    color: var(--primary-blue) !important;
    transition: all 0.35s ease-in-out;
}

/* HOVER EFFECT - LIFT + SHADOW */
.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
    transform: translateY(-3px);
}

/* UNDERLINE ANIMATION */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    transform: translateX(-50%);
    width: 0%;
    height: 3px;
    background: var(--gold);
    border-radius: 20px;
    transition: all .35s ease;
}

/* HOVER & ACTIVE UNDERLINE */
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

/* ACTIVE MENU */
.navbar-nav .nav-link.active {
    color: var(--gold) !important;
    background: rgba(212,160,55,0.12);
    box-shadow: 0 5px 14px rgba(212,160,55,0.25);
    transform: translateY(-2px);
}

/* MOBILE NAV STYLE */
.offcanvas .nav-link {
    padding: 16px 10px;
    font-size: 20px;
    border-bottom: 1px solid #eee;
}

.offcanvas .nav-link:hover {
    background: rgba(26,76,137,0.06);
    padding-left: 18px;
    border-radius: 6px;
}



/* HERO SLIDE STYLE */
.hero-slide {
    height: 92vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* DARK OVERLAY */
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

/* HERO TEXT */
.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 600px;
    color: #fff;
    z-index: 10;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0px 4px 12px rgba(0,0,0,0.45);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #f1f1f1;
}

@media (max-width: 768px) {
    .hero-slide {
        height: 70vh;
        background-position: top;
    }

    .hero-content {
        left: 5%;
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 1.9rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-btn,
    .hero-btn-outline {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}
@media (max-width: 576px) {
    .hero-slide {
        height: 60vh;
    }

    .hero-content {
        top: 50%;
        transform: translateY(-50%);
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .hero-btn,
    .hero-btn-outline {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}


/* BUTTONS */
.hero-btn,
.hero-btn-outline {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.hero-btn {
    background: var(--gold);
    color: #fff;
}

.hero-btn:hover {
    background: var(--dark-gold);
}

.hero-btn-outline {
    border: 2px solid var(--gold);
    color: #fff;
}

.hero-btn-outline:hover {
    background: var(--gold);
}

/* CAROUSEL INDICATORS */
.carousel-indicators [data-bs-target] {
    width: 13px;
    height: 13px;
    border-radius: 100%;
    background-color: var(--gold);
}

.icon-box {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(212,160,55,0.2), rgba(212,160,55,0.1));
    box-shadow: 0px 6px 12px rgba(0,0,0,0.08);
}

.service-card:hover .icon-box {
    transform: scale(1.08);
    transition: 0.3s ease;
}


/* ABOUT SECTION */
.about-section {
    background: #f9fbff;
}

.about-img-box img {
    border-radius: 18px;
    box-shadow: 0px 15px 35px rgba(0,0,0,0.18);
}

/* TAG */
.about-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212,160,55,0.15);
    color: var(--gold);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* TITLE */
.about-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* TEXT */
.about-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* LIST */
.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.about-list li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.about-list li i {
    color: var(--gold);
    margin-right: 8px;
    font-size: 1.2rem;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gold);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: 600;
}

.about-btn:hover {
    background: var(--dark-gold);
}


.services-section {
    background: #ffffff;
}

.section-desc {
    color: #666;
    font-size: 1.05rem;
}

/* SERVICE CARD */
.service-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all .35s ease;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-light);
    box-shadow: 0px 15px 40px rgba(0,0,0,0.15);
}

/* ICON BOX */
.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-blue);
    font-size: 42px;
    box-shadow: 0 12px 30px rgba(0, 162, 255, 0.35);
    transition: 0.3s ease-in-out;
}

.service-card:hover .service-icon {
    transform: scale(1.12) rotate(4deg);
}

/* TEXT */
.service-card h4 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: #444;
}


/* PARALLAX SECTION */
.parallax-section {
    background-image: url('./images/hero33.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    height: 60vh;
    position: relative;
    display: flex;
    justify-content: center;
    color: #fff;
}

/* DARK GRADIENT OVERLAY */
.parallax-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 91, 187, 0.6),
        rgba(0, 162, 255, 0.5)
    );
    z-index: 1;
}

/* CONTENT */
.parallax-section .container {
    z-index: 2;
    max-width: 700px;
}

.parallax-title {
    font-size: 2.7rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.parallax-subtitle {
    font-size: 1.1rem;
    color: #f6f6f6;
    margin-bottom: 25px;
}

/* BUTTON */
.parallax-btn {
    background: var(--gold);
    padding: 12px 32px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    transition: .3s ease;
    font-weight: 600;
}

.parallax-btn:hover {
    background: var(--dark-gold);
}


/* INFO SECTION */
.info-section {
    background: #ffffff;
}

/* IMAGE */
.info-img {
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

/* SUBTITLE */
.info-subtitle {
   display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 160, 55, 0.15);
    color: var(--gold);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* TITLE */
.info-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.info-title span {
    color: var(--primary-blue);
}

/* TEXT */
.info-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 18px;
}

/* LIST ITEMS */
.info-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.info-list li {
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #333;
    font-weight: 500;
}

.info-list i {
    font-size: 20px;
    color: var(--primary-light);
    margin-right: 10px;
}

/* BUTTON */
.info-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.info-btn:hover {
    opacity: .85;
    color: #fff;
}
@media (max-width: 768px) {
    .info-title {
        font-size: 1.8rem;
    }
    .info-text {
        font-size: 0.95rem;
    }
    .info-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .info-title {
        font-size: 1.6rem;
    }
}


.testimonial-slider-section {
    background: #f8fbff;
}

.testimonial-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* CLIENT IMAGE */
.client-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 12px;
}

/* NAME */
.testimonial-card h5 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 8px;
}

/* RATING */
.rating i {
    color: var(--primary-light);
}

/* TEXT */
.testimonial-card p {
    color: #666;
    font-size: 0.95rem;
    margin-top: 10px;
}
@media (max-width: 768px) {
    .carousel-item .col-lg-4 {
        margin-bottom: 20px;
    }
}


/* TESTIMONIAL BLOCK MASTER STYLE */
.testimonial-block {
    background: #f1f6ff;
}

/* LEFT BOX */
.left-box {
    background: #0a3d91;
    color: #fff;
    padding: 40px;
    border-radius: 18px;
}

.left-box h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.left-box p {
    font-size: 1rem;
    line-height: 1.6;
}

.quote-icon i {
    font-size: 45px;
    color: #ffffff;
    opacity: 0.5;
    margin-bottom: 15px;
}

/* TESTIMONIAL CARDS */
.t-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    border-left: 4px solid #0a3d91;
}

.t-card:hover {
    transform: translateY(-5px);
}

/* User Icon */
.t-icon i {
    font-size: 30px;
    color: #0a3d91;
    margin-bottom: 12px;
}

.t-text {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 15px;
}

/* USER INFO */
.t-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.t-user h5 {
    font-size: 1rem;
    margin: 0;
    font-weight: 700;
}

.t-user small {
    font-size: 0.8rem;
    color: #777;
}



/* TESTIMONIAL BLOCK */
.testimonial-block {
    background: #f0f6ff;
}

/* LEFT BOX */
.left-box {
    background: #0a3d91;
    padding: 40px;
    border-radius: 16px;
    color: #fff;
}

.left-box h2 {
    font-weight: 700;
    margin-bottom: 12px;
}

.left-box p {
    font-size: 1rem;
    line-height: 1.6;
}

.quote-icon i {
    font-size: 50px;
    opacity: .6;
    margin-bottom: 12px;
}

/* TESTIMONIAL CARD */
.t-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 14px;
    border-left: 4px solid #0a3d91;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
    height: 100%;
    transition: .3s ease;
}

.t-card:hover {
    transform: translateY(-5px);
}

/* TEXT */
.t-text {
    color: #444;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* USER SECTION */
.t-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-icon {
    font-size: 42px;
    color: #0a3d91;
}

.t-user h5 {
    margin: 0;
    font-weight: 700;
}

.t-user small {
    font-size: 0.85rem;
    color: #777;
}

/* ARROWS */
.arrow-btn {
    font-size: 40px;
    color: #0a3d91;
    transition: 0.3s;
}

.arrow-btn:hover {
    color: #005bd1;
}

.carousel-control-prev,
.carousel-control-next {
    top: 90%;
    transform: translateY(-50%);
}

/* MOBILE: show only 1 card in each slide */
@media (max-width: 576px) {
    .single-card:nth-child(2) {
        display: none;
    }
}

/* TOP RIGHT ARROWS */
.arrow-group {
    position: absolute;
    top: -70px;             /* adjust height */
    right: 0;
    display: flex;
    gap: 10px;
    text-decoration: none;
    border: none;
}

.t-arrow i {
    font-size: 38px;
    color: #0a3d91;
    cursor: pointer;
    transition: 0.3s ease;
}

.t-arrow i:hover {
    color: #005bd1;
    transform: scale(1.1);
}

/* Remove default arrows */
.carousel-control-prev,
.carousel-control-next {
    display: none !important;
}
@media (max-width: 576px) {
    .t-arrow i {
        font-size: 30px;
    }
    .arrow-group {
        top: -25px;
    }
}


/* FOOTER MAIN */
.footer-section {
    background: #0a1c3b;
    color: #dce4f3;
    font-size: 0.95rem;
}

/* LOGO */
.footer-logo {
    filter: brightness(1.1);
}

.footer-about {
    line-height: 1.6;
    font-size: 0.95rem;
    color: #cbd6ea;
}

/* TITLES */
.footer-title {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

/* QUICK LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #cbd6ea;
    transition: 0.3s;
}

.footer-links i {
    font-size: 14px;
    margin-right: 6px;
    color: var(--primary-light);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* CONTACT DETAILS */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-contact i {
    margin-right: 8px;
    color: var(--primary-light);
}

/* COPYRIGHT */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    color: #cbd6ea;
    margin-top: 30px;
}

.footer-bottom a {
    color: #66b3ff;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffffff;
}

.designer {
    margin-left: 5px;
    font-size: 0.95rem;
}
@media (max-width: 768px) {
    .footer-title { margin-top: 20px; }
    .footer-section { text-align: center; }
    .footer-links a:hover { padding-left: 0; }
}


/* ABOUT HEADER PARALLAX */
.about-header {
    height: 50vh;
    background-image: url('./images/bg1.jpg'); /* Change your image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

/* DARK GRADIENT OVERLAY */
.about-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 39, 97, 0.7),
        rgba(0, 98, 189, 0.55)
    );
    z-index: 1;
}

/* TEXT STYLING */
.about-header .container {
    position: relative;
    z-index: 2;
}

.about-heading {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 0px 4px 20px rgba(0,0,0,0.6);
}

.about-subtitle {
    color: #e0e7f5;
    font-size: 1.15rem;
    margin-top: 10px;
    letter-spacing: 1px;
}


/* ABOUT MAIN SECTION */
.about-main-section {
    background: #ffffff;
}

/* SMALL TAG */
.about-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 98, 189, 0.12);
    color: var(--primary);
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* TITLE */
.about-main-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0a3d91;
    margin-bottom: 15px;
}

/* PARAGRAPH */
.about-main-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

/* POINTS */
.about-points {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.about-points li {
    margin-bottom: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    color: #333;
}

.about-points i {
    color: var(--primary-light);
    font-size: 1.2rem;
    margin-right: 8px;
}

/* IMAGE BOX */
.about-img-box img {
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .about-main-title {
        font-size: 1.6rem;
    }
    .about-main-text {
        font-size: 0.95rem;
    }
}


/* MISSION & VISION SECTION */
.mission-vision-section {
    background: #f4f8ff;
}

/* BOX DESIGN */
.mv-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
    text-align: left;
    transition: 0.3s ease-in-out;
    border-bottom: 4px solid #0a3d91;
}

.mv-box:hover {
    transform: translateY(-8px);
}

/* ICON */
.mv-icon {
    width: 60px;
    height: 60px;
    background: #0a3d91;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.mv-icon i {
    font-size: 30px;
    color: #fff;
}

/* TITLE */
.mv-title {
    color: #0a3d91;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* TEXT */
.mv-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}


/* SERVICES PAGE SECTION */
.services-page-section {
    background: #ffffff;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0a3d91;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--primary-light);
    font-weight: 600;
}

.section-desc {
    color: #666;
    max-width: 650px;
    margin: 0 auto;
}

/* SERVICE BOX */
.service-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.06);
    text-align: center;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease-in-out;
}

.service-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: 0 14px 32px rgba(0,0,0,0.15);
}

/* ICON */
.service-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #0a3d91, #0090ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 45px;
    box-shadow: 0 10px 20px rgba(0, 144, 255, 0.4);
    transition: 0.2s ease-in-out;
}

.service-box:hover .service-icon {
    transform: scale(1.12) rotate(4deg);
}

/* TITLE */
.service-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0a3d91;
}

/* TEXT */
.service-box p {
    color: #555;
    font-size: 0.98rem;
}


/* VISA CATEGORY SECTION */
.visa-category-section {
    background: #ffffff;
}

/* Category Box */
.visa-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0px 8px 25px rgba(0,0,0,0.06);
    text-align: center;
    transition: 0.35s ease-in-out;
}

.visa-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: 0px 15px 40px rgba(0,0,0,0.15);
}

/* ICON */
.visa-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0a3d91, #0090ff);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 42px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 144, 255, 0.4);
    transition: 0.3s;
}

.visa-box:hover .visa-icon {
    transform: scale(1.15) rotate(4deg);
}

/* Titles */
.visa-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a3d91;
    margin-bottom: 10px;
}

/* Description */
.visa-box p {
    color: #555;
    font-size: 0.98rem;
    line-height: 1.6;
}


/* FULL CONTACT SECTION */
.contact-full-section {
    background: #f4f8ff;
}

/* CONTACT CARDS */
.contact-card {
    padding: 25px;
    background: #ffffff;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.1);
    transition: .3s;
    border-bottom: 4px solid #0a3d91;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 40px;
    color: #0a3d91;
    margin-bottom: 12px;
}

.contact-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0a3d91;
}

.contact-card p {
    font-size: 0.95rem;
    color: #555;
}

/* CONTACT FORM BOX */
.contact-form-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0px 12px 30px rgba(0,0,0,0.12);
}

.contact-form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a3d91;
    margin-bottom: 20px;
}

.contact-form-box .form-control {
    height: 50px;
    border-radius: 12px;
    border: 1px solid #c7d8f5;
}

.contact-form-box textarea {
    height: auto;
    border-radius: 12px;
}

/* BUTTON */
.contact-btn {
    background: #0a3d91;
    color: #fff;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #005bd1;
}

/* MAP BOX */
.map-box {
    width: 100%;
    height: 430px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0px 12px 30px rgba(0,0,0,0.25);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    align-items: center;
    background: green;
    padding: 12px 18px;
    border-radius: 50px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    color: #fff;
    gap: 10px;
    transition: 0.3s ease;
    animation: waFloat 3s infinite ease-in-out;
}

/* WhatsApp Icon */
.wa-icon {
    width: 38px;
    height: 38px;
}

/* Hover Message */
.wa-text {
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    width: 0;
    overflow: hidden;
    transition: 0.4s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
    padding-right: 28px;
}

.whatsapp-float:hover .wa-text {
    opacity: 1;
    width: 160px;
}

/* ANIMATION (Air Floating Effect) */
@keyframes waFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* MOBILE FIX */
@media (max-width: 576px) {
    .whatsapp-float {
        padding: 10px 14px;
        bottom: 20px;
        right: 20px;
    }

  
}


/* GO TO TOP BUTTON */
.go-top {
    position: fixed;
    bottom: 90px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0a3d91;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    cursor: pointer;
    z-index: 9999;
    font-size: 24px;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}

/* SHOW BUTTON WHEN SCROLLED */
.go-top.show {
    opacity: 1;
    visibility: visible;
}

/* HOVER */
.go-top:hover {
    background: #005bd1;
    transform: scale(1.1);
}
