/* ROOT COLORS */
:root{
    /* BRAND COLORS */
    --blue-dark: #012D60;
    --blue: #0056A6;
    --blue-light: #0077C8;

    --orange: #F05A24;
    --orange-light: #FF7A21;

    /* GRADIENTS */
    --grad-blue: linear-gradient(135deg, #012D60, #0077C8);
    --grad-orange: linear-gradient(135deg, #FF7A21, #F05A24);
    --grad-mixed: linear-gradient(135deg, #0056A6, #F05A24);

    /* SURFACE & DEPTH */
    --white: #ffffff;
    --silver: #E4E7EB;
    --dark-gray: #2B2B2B;

    /* STYLING */
    --radius: 16px;
    --shadow-1: 0 8px 20px rgba(0,0,0,0.10);
    --shadow-2: 0 10px 35px rgba(0,0,0,0.18);

    /* FONTS */
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}


/* GLOBAL BODY STYLE */
body{
    font-family: var(--font-main);
    background: #f5f7fa;
    margin: 0;
    padding: 0;
    color: var(--dark-gray);
    line-height: 1.7;
    scroll-behavior: smooth;
}

/* SMOOTH TEXT + COLORS */
h1,h2,h3,h4,h5,h6{
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--blue-dark);
    letter-spacing: .5px;
}

p{
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

/* SECTION GLOBAL SPACING */
section{
    padding: 80px 0;
}


/* BUTTONS */
.btn-main{
    background: var(--secondary);
    color: #fff;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-main:hover{
    background: var(--orange-light);
    transform: translateY(-3px);
}

/* SECTION GLOBAL SPACING */
section{
    padding: 80px 0;
}

/* CARD STYLE */
.card-custom{
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: none;
    padding: 30px;
    transition: .3s ease-in-out;
}

.card-custom:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* NAVBAR TEXT SMOOTH */
.nav-link{
    font-weight: 500;
    letter-spacing: .3px;
}

/* AOS SMOOTHNESS */
[data-aos]{
    transition-duration: 900ms !important;
}

/* IMAGE STYLE */
img{
    max-width: 100%;
    height: auto;
}



/* PREMIUM SUPER NAV */
.super-nav{
    background: var(--grad-blue);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    position: sticky;
    top: 0;
    z-index: 999;
}

/* MAKE NAVBAR STICKY */
.super-nav{
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: var(--grad-blue);
    transition: all 0.3s ease;
}


/* GLASS SHADOW */
.shadow-glass{
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* BRAND NAME */
.brand-name{
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .8px;
}

/* NAV LINKS */
.super-nav .nav-link{
    color: #fff;
    font-weight: 500;
    font-size: 17px;
    margin-left: 32px;
    position: relative;
    padding-bottom: 8px;
    transition: .3s ease;
}

/* UNDERLINE ANIMATION */
.super-nav .nav-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: var(--grad-orange);
    border-radius: 20px;
    transition: 0.4s ease;
}

.super-nav .nav-link:hover::after,
.super-nav .nav-link.active::after{
    width: 100%;
}

/* HOVER COLOR */
.super-nav .nav-link:hover{
    color: var(--orange-light);
    transform: translateY(-2px);
}

/* MOBILE MENU */
@media(max-width: 991px){
    .navbar-collapse{
        background: var(--blue);
        padding: 18px;
        border-radius: 14px;
        margin-top: 15px;
    }

    .super-nav .nav-link{
        margin-left: 0;
        padding: 12px 0;
    }
}




.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color: var(--orange);
}








/* FULL RESPONSIVE SUPER CAROUSEL */
#superCarousel .carousel-item{
    height: 92vh;
    min-height: 500px;
}

.hero-slide{
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

/* BEAUTIFUL GRADIENT OVERLAY */
.hero-overlay{
    position: absolute;
    inset: 0;
    background: #ffffff;
    opacity: 40%;
}

/* TEXT CONTENT */
.hero-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFFFFF;
    width: 80%;
    max-width: 900px;
}

.hero-content h1{
    font-size: 60px;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 6px 24px rgba(0,0,0,0.45);
}

.hero-content p{
    margin-top: 12px;
    font-size: 20px;
    opacity: .95;
}

/* BUTTON STYLE */
.hero-btn{
    margin-top: 20px;
    background: var(--grad-orange);
    color: #fff;
    padding: 14px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-btn:hover{
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

/* INDICATORS */
.carousel-indicators button{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff !important;
}

/* ARROWS */
.carousel-control-prev-icon,
.carousel-control-next-icon{
    filter: invert(1);
    width: 44px;
    height: 44px;
}


/* ------------------------------------------------ */
/* RESPONSIVE ADJUSTMENTS */
/* ------------------------------------------------ */

/* TABLETS */
@media (max-width: 992px){
    #superCarousel .carousel-item{
        height: 75vh;
    }
    .hero-content h1{
        font-size: 42px;
    }
    .hero-content p{
        font-size: 18px;
    }
    .hero-btn{
        padding: 12px 32px;
        font-size: 16px;
    }
}

/* MOBILE LANDSCAPE */
@media (max-width: 768px){
    #superCarousel .carousel-item{
        height: 70vh;
    }
    .hero-content h1{
        font-size: 34px;
    }
    .hero-content p{
        font-size: 16px;
    }
    .hero-btn{
        padding: 10px 26px;
        font-size: 15px;
    }
}

/* MOBILE PORTRAIT */
@media (max-width: 480px){
    #superCarousel .carousel-item{
        height: 65vh;
    }
    .hero-content{
        width: 90%;
    }
    .hero-content h1{
        font-size: 26px;
        line-height: 1.3;
    }
    .hero-content p{
        font-size: 14px;
    }
    .hero-btn{
        padding: 10px 22px;
        font-size: 14px;
        margin-top: 14px;
    }
}






/* ABOUT / INTRO SECTION */
.intro-section{
    padding: 90px 0;
}

.intro-img-box{
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.intro-img{
    width: 100%;
    border-radius: 16px;
    transition: .4s ease;
}

.intro-img:hover{
    transform: scale(1.04);
}

.intro-content h2{
    font-size: 42px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--blue-dark);
}

.intro-content h2 span{
    color: var(--orange);
}

.intro-text{
    margin-top: 15px;
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.intro-list{
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.intro-list li{
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.intro-list li i{
    color: var(--orange);
    font-size: 22px;
    margin-right: 10px;
}

/* BUTTON */
.intro-btn{
    margin-top: 25px;
    padding: 12px 32px;
    background: var(--grad-orange);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 17px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: .3s ease;
}

.intro-btn:hover{
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

/* RESPONSIVE */
@media(max-width: 991px){
    .intro-content h2{
        font-size: 34px;
    }
}

@media(max-width: 576px){
    .intro-content h2{
        font-size: 28px;
    }
    .intro-text{
        font-size: 16px;
        text-align: justify;
    }
}




/* SERVICES SECTION */
.services-section{
    padding: 90px 0;
    background: #f9fbff;
}

.section-header{
    text-align: center;
    margin-bottom: 45px;
}

.section-header h2{
    font-size: 42px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--blue-dark);
}

.section-header p{
    font-size: 18px;
    color: #555;
}

/* SERVICE CARD */
.service-box{
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    transition: 0.35s ease;
    border-bottom: 4px solid transparent;
}

.service-box:hover{
    transform: translateY(-12px);
    border-bottom: 4px solid var(--orange);
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* ICON SECTION */
.service-icon{
    width: 92px;
    height: 92px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-blue);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.service-icon i{
    color: #fff;
    font-size: 40px;
}

.service-box h4{
    font-size: 22px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 12px;
}

.service-box p{
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 576px){
    .section-header h2{
        font-size: 32px;
    }
    .service-box{
        padding: 30px 20px;
    }
    .service-icon{
        width: 75px;
        height: 75px;
    }
    .service-icon i{
        font-size: 32px;
    }
}



/* PARALLAX SECTION */
.parallax-section{
    position: relative;
    height: 65vh;
    background-image: url('./img/slide11.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

/* DARK GRADIENT OVERLAY */
.parallax-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    background: linear-gradient(135deg, rgba(1,45,96,0.65), rgba(240,90,36,0.55));
}

/* GLASS CARD CONTENT */
.parallax-content{
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.parallax-content h2{
    font-size: 48px;
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 3px 20px rgba(0,0,0,0.4);
}

.parallax-content p{
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 25px;
}

/* BUTTON */
.parallax-btn{
    background: var(--grad-orange);
    color: #fff;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: .3s ease;
    box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

.parallax-btn:hover{
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* RESPONSIVE */
@media(max-width: 992px){
    .parallax-content h2{
        font-size: 34px;
    }
    .parallax-section{
        height: 60vh;
    }
}

@media(max-width: 576px){
    .parallax-content{
        padding: 25px;
    }
    .parallax-content h2{
        font-size: 28px;
    }
    .parallax-content p{
        font-size: 15px;
    }
    .parallax-btn{
        padding: 10px 24px;
        font-size: 16px;
    }
}


/* COUNTRIES SECTION */
.countries-section{
    padding: 90px 0;
    background: #f5f8ff;
}

.section-title h2{
    font-size: 42px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--blue-dark);
}

.section-title p{
    font-size: 18px;
    color: #555;
}

/* COUNTRY CARD */
.country-card{
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    transition: 0.35s ease;
    border-top: 5px solid transparent;
}

.country-card:hover{
    transform: translateY(-10px);
    border-top: 5px solid var(--orange);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* FLAG */
.country-flag{
    width: 80px;
    height: 55px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    margin-bottom: 15px;
}

/* COUNTRY NAME */
.country-card h4{
    font-size: 22px;
    font-weight: 700;
    margin-top: 10px;
    color: var(--blue-dark);
}

/* TAGS */
.visa-tag{
    display: inline-block;
    background: var(--grad-blue);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin: 6px 4px 0;
}


/* USER ICON STYLE */
.user-icon{
    font-size: 55px;
    color: var(--blue);
    margin-bottom: 12px;
}

/* TESTIMONIAL CARD NEW STYLE */
.testimonial-card{
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-top: 4px solid transparent;
    transition: .3s ease;
    height: 100%;
}

.testimonial-card:hover{
    transform: translateY(-10px);
    border-top: 4px solid var(--orange);
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

/* TEXT STYLES */
.testimonial-card h5{
    font-size: 18px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 2px;
}

.testimonial-card span{
    font-size: 14px;
    color: #777;
}

.review{
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin: 10px 0 18px;
    font-weight: 500;
}

/* MOBILE RULE — SHOW ONLY 1 CARD PER SLIDE */
@media (max-width: 768px){
    .d-md-block{
        display: none !important;
    }
    .testimonial-card{
        padding: 28px 20px;
    }
    .user-icon{
        font-size: 48px;
    }
}


/* FOOTER */
.footer{
    background: #0A1E3A; /* Dark premium blue */
    color: #d9e6ff;
    padding: 80px 0 40px;
    margin-top: 60px;
}

.footer-logo{
    filter: brightness(1.1);
}

.footer-about{
    font-size: 16px;
    line-height: 1.7;
    margin-top: 10px;
    color: #c9d6f2;
}

/* TITLES */
.footer-title{
    font-size: 22px;
    margin-bottom: 18px;
    font-weight: 700;
    color: var(--orange);
}

/* QUICK LINKS */
.footer-links{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li{
    margin-bottom: 10px;
}

.footer-links li a{
    color: #c9d6f2;
    font-size: 16px;
    text-decoration: none;
    transition: .3s ease;
}

.footer-links li a i{
    font-size: 14px;
    margin-right: 5px;
    color: var(--orange);
}

.footer-links li a:hover{
    color: var(--orange);
    padding-left: 5px;
}

/* CONTACT DETAILS */
.footer-contact{
    font-size: 16px;
    color: #c9d6f2;
    margin-bottom: 12px;
}

.footer-contact i{
    color: var(--orange);
    margin-right: 8px;
}

/* DIVIDER */
.footer-divider{
    border-color: rgba(255,255,255,0.15);
    margin-top: 40px;
    margin-bottom: 20px;
}

/* COPYRIGHT */
.footer-bottom p{
    color: #c9d6f2;
    margin: 0;
    font-size: 15px;
}

.footer-bottom a{
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom a:hover{
    text-decoration: underline;
}

/* RESPONSIVE */
@media(max-width: 576px){
    .footer{
        text-align: center;
    }
    .footer-logo{
        margin: auto;
    }
}


/* ABOUT PAGE PARALLAX HEADER */
.about-header{
    height: 60vh;
    min-height: 400px;
    width: 100%;
    background-image: url('./img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* TRUE PARALLAX */
    background-attachment: fixed;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* DARK GRADIENT OVERLAY */
.about-header::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(1,45,96,0.75), rgba(240,90,36,0.50));
}

/* TEXT CONTENT */
.about-header .container{
    position: relative;
    z-index: 2;
}

.about-title{
    font-size: 60px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #fff;
    text-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.about-subtitle{
    margin-top: 10px;
    font-size: 20px;
    font-weight: 400;
    color: #f3f6ff;
}

/* RESPONSIVE */
@media(max-width: 768px){
    .about-title{
        font-size: 40px;
    }
    .about-subtitle{
        font-size: 16px;
    }
}

@media(max-width: 480px){
    .about-header{
        height: 50vh;
    }
    .about-title{
        font-size: 32px;
    }
}


/* ABOUT MAIN CONTENT SECTION */
.about-content-section{
    padding: 90px 0;
}

.about-img-box{
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-img{
    transition: .4s ease;
}

.about-img:hover{
    transform: scale(1.05);
}

.about-heading{
    font-size: 42px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 15px;
}

.about-text{
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-features{
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.about-features li{
    font-size: 17px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.about-features li i{
    color: var(--orange);
    margin-right: 10px;
    font-size: 20px;
}

/* RESPONSIVE */
@media(max-width: 768px){
    .about-heading{
        font-size: 34px;
    }
    .about-text{
        font-size: 16px;
    }
}


/* MISSION & VISION SECTION */
.mission-vision-section{
    padding: 90px 0;
    background: #f5f8ff;
}

.section-title h2{
    font-size: 42px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--blue-dark);
}

.section-title p{
    font-size: 17px;
    color: #555;
}

/* CARD BOX */
.mv-box{
    background: #fff;
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    transition: .35s ease;
    border-bottom: 5px solid transparent;
}

.mv-box:hover{
    transform: translateY(-10px);
    border-bottom: 5px solid var(--orange);
    box-shadow: 0 18px 50px rgba(0,0,0,0.15);
}

/* ICON */
.mv-icon{
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: var(--grad-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.mv-icon i{
    color: #fff;
    font-size: 40px;
}

.mv-box h4{
    font-size: 24px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 12px;
}

.mv-box p{
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* RESPONSIVE */
@media(max-width: 768px){
    .mv-box{
        padding: 30px 20px;
    }
    .mv-box h4{
        font-size: 20px;
    }
}


/* VISA CATEGORY SECTION */
.visa-category-section{
    padding: 90px 0;
    background: #f2f6ff;
}

.section-title h2{
    font-size: 42px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--blue-dark);
}

.section-title p{
    font-size: 17px;
    color: #555;
}

/* VISA CARD */
.visa-box{
    background: #ffffff;
    padding: 40px 28px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    transition: .35s ease;
    border-top: 5px solid transparent;
}

.visa-box:hover{
    transform: translateY(-10px);
    border-top: 5px solid var(--orange);
    box-shadow: 0 18px 50px rgba(0,0,0,0.15);
}

/* ICON */
.visa-icon{
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: var(--grad-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.visa-icon i{
    color: #fff;
    font-size: 40px;
}

.visa-box h4{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--blue-dark);
}

.visa-box p{
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* RESPONSIVE */
@media(max-width: 576px){
    .visa-box{
        padding: 30px 22px;
    }
    .visa-icon{
        width: 70px;
        height: 70px;
    }
    .visa-icon i{
        font-size: 32px;
    }
}


/* FULL VISA STEPS SECTION */
.visa-steps-full{
    padding: 90px 0;
    background: #f8fbff;
}

/* PROGRESS BAR */
.step-progress-container{
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
}

/* Background line */
.progress-line-bg{
    height: 4px;
    width: 100%;
    background: #ccc;
    border-radius: 20px;
}

/* Filled line */
.progress-line-fill{
    height: 4px;
    width: 100%;
    background: var(--grad-blue);
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 0;
}

/* Circles */
.progress-circles{
    position: absolute;
    top: -15px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.circle{
    width: 35px;
    height: 35px;
    background: #ccc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
    transition: .3s ease;
}

.circle.active{
    background: var(--blue);
    transform: scale(1.05);
}

/* STEP BOXES */
.step-box{
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-top: 5px solid var(--orange);
    transition: .3s ease;
}

.step-box:hover{
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.18);
}

.step-box h4{
    font-size: 20px;
    font-weight: 700;
    color: var(--blue-dark);
}

.step-box p{
    font-size: 15px;
    color: #555;
    margin-top: 8px;
}

/* RESPONSIVE */
@media(max-width: 576px){
    .circle{
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}


/* SERVICE LIST SECTION */
.service-list-section{
    padding: 100px 0;
}

.services-heading{
    font-size: 42px;
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 20px;
}

.services-ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-ul li{
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .3s ease;
}

.services-ul li i{
    font-size: 26px;
    color: var(--orange);
}

.services-ul li:hover{
    padding-left: 8px;
    color: var(--blue);
}

.services-img-box img{
    border-radius: 18px;
    box-shadow: 0px 10px 35px rgba(0,0,0,0.2);
}

/* MOBILE */
@media(max-width: 768px){
    .services-heading{
        font-size: 32px;
    }
    .services-ul li{
        font-size: 18px;
    }
}


/* SERVICE HIGHLIGHT STRIP SECTION */
.service-highlight-section{
    padding: 90px 0;
    background: linear-gradient(135deg, rgba(1,45,96,0.05), rgba(240,90,36,0.05));
}

.highlight-box{
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0px 12px 35px rgba(0,0,0,0.1);
    transition: .35s ease;
    border-bottom: 5px solid transparent;
}

.highlight-box:hover{
    transform: translateY(-10px);
    border-bottom: 5px solid var(--orange);
    box-shadow: 0px 20px 45px rgba(0,0,0,0.15);
}

.highlight-icon{
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--grad-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.highlight-icon i{
    color: #fff;
    font-size: 34px;
}

.highlight-box h4{
    font-size: 20px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 10px;
}

.highlight-box p{
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* RESPONSIVE */
@media(max-width: 768px){
    .highlight-box{
        padding: 30px 20px;
    }
    .highlight-icon{
        width: 65px;
        height: 65px;
    }
}


/* FULL CONTACT SECTION */
.contact-full-section{
    padding: 90px 0;
    background: #f7f9ff;
}

/* LEFT DETAILS */
.contact-sec-title{
    font-size: 38px;
    font-weight: 800;
    color: var(--blue-dark);
}

.contact-sec-text{
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
}

.contact-detail-box{
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 18px 15px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-detail-box i{
    font-size: 32px;
    color: var(--orange);
}

.contact-detail-box h5{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-detail-box p{
    margin: 0;
    color: #555;
}

/* RIGHT FORM */
.contact-form-box{
    background: #fff;
    padding: 35px 30px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.10);
}

.contact-form-box h3{
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--blue-dark);
}

.contact-input{
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid #dcdcdc;
    font-size: 16px;
}

.contact-input:focus{
    border-color: var(--blue);
    box-shadow: 0 0 8px rgba(1,45,96,0.15);
}

.submit-btn{
    background: var(--grad-blue);
    color: #fff;
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    transition: .3s ease;
}

.submit-btn:hover{
    opacity: .9;
}

/* MAP */
.contact-map iframe{
    width: 100%;
    height: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media(max-width: 768px){
    .contact-sec-title{
        font-size: 30px;
    }
    .contact-form-box{
        padding: 25px 20px;
    }
}


/* ============================
   WHATSAPP FLOATING BUTTON UI
   ============================ */

.wa-float{
    position: fixed;
    bottom: 25px;
    right: 25px;        /* Change to left: 25px; if you want on left side */
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0px 10px 35px rgba(0,0,0,0.25);
    z-index: 99999;
    transition: all 0.35s ease;
    animation: waFloating 3s ease-in-out infinite;
}

/* ICON */
.wa-icon{
    width: 40px;
    height: 40px;
    filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.25));
}

/* HOVER TEXT (Hidden by default) */
.wa-text{
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    opacity: 0;
    width: 0;
    color: #fff;
    transition: width .35s ease, opacity .35s ease;
}

/* Show text on hover */
.wa-float:hover .wa-text{
    width: 150px;
    opacity: 1;
}

/* AIR FLOATING ANIMATION */
@keyframes waFloating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* BUTTON HOVER EFFECT */
.wa-float:hover{
    transform: scale(1.06);
    box-shadow: 0px 18px 40px rgba(0,0,0,0.30);
}

/* MOBILE RESPONSIVE */
@media(max-width: 576px){
    .wa-float{
        bottom: 18px;
        right: 18px;
        padding: 10px 14px;
    }

    .wa-icon{
        width: 32px;
        height: 32px;
    }

    .wa-text{
        font-size: 14px;
    }
}


/* LEFT CONTENT + RIGHT IMAGE SECTION */
.content-image-section{
    padding: 100px 0;
}

.content-title{
    font-size: 40px;
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 20px;
}

.content-text{
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.content-list{
    list-style: none;
    padding-left: 0;
    margin-top: 18px;
}

.content-list li{
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.content-list li i{
    color: var(--orange);
    font-size: 22px;
    margin-right: 10px;
}

/* IMAGE BOX */
.content-img-box{
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

.content-img{
    transition: .4s ease;
}

.content-img:hover{
    transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 768px){
    .content-title{
        font-size: 32px;
    }
    .content-text{
        font-size: 16px;
    }
}
