:root {
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --bg-color: #0a1f33 ;
    --second-bg-color: #ffffff;
    --third-bg-color: #0b253d;
    --border-color: #666b71;
    --text-color: #fff;
    --hover-color: #00AEEF;
    --main-color: #0071BC;
--bg: #f4f7fb;
--card: #ffffff;
--accent-1: #e9f5ff; /* light blue */
--accent-2: #f0fff4; /* light green */
--text: #14213d;
--muted: #5b6b82;
--accent-border: rgba(20,33,61,0.06);
--white:#ffffff;
    --text-light:#666;
    --border:#ececec;
    --shadow:0 20px 50px rgba(0,0,0,.08);
}
*{
    box-sizing:border-box;
}
html,
body{
    max-width:100%;
    overflow-x:hidden;
}
img{
    max-width:100%;
}
@font-face {
  font-family: poppins;
  src: url(../font/poppins.ttf);
  font-display: swap;
}

/* =========================================
   HERO SECTION START
========================================= */

.hero_section {
    position: relative;
    width: 100%;
    min-height: 720px;
    padding: 85px 0 75px;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(0, 174, 239, 0.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f7fcff 0%,
            #ffffff 52%,
            #eef8ff 100%
        );

    overflow: hidden;
    isolation: isolate;
}


/* =========================================
   BACKGROUND SHAPES
========================================= */

.hero_bg_shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.hero_bg_shape_one {
    width: 520px;
    height: 520px;

    top: -300px;
    right: -180px;

    background: rgba(0, 174, 239, 0.07);

    animation: heroBgFloat 9s ease-in-out infinite;
}

.hero_bg_shape_two {
    width: 420px;
    height: 420px;

    bottom: -280px;
    left: -180px;

    background: rgba(0, 113, 188, 0.06);

    animation: heroBgFloat 11s ease-in-out infinite reverse;
}


/* Background Dots */

.hero_bg_dots {
    position: absolute;

    width: 180px;
    height: 180px;

    top: 90px;
    left: 4%;

    opacity: 0.35;

    background-image: radial-gradient(
        var(--main-color) 1px,
        transparent 1px
    );

    background-size: 15px 15px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent
    );

    pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.hero_section_container {
    width: 100%;
    max-width: 1320px;

    margin: 0 auto;
    padding: 0 20px;

    position: relative;
    z-index: 2;
}


/* =========================================
   ROW
========================================= */

.hero_section_row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 55px;
}


/* =========================================
   COLUMNS
========================================= */

.hero_section_col {
    width: 50%;
}

.hero_section_content {
    max-width: 650px;
}


/* =========================================
   BADGE
========================================= */

.hero_section_badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 8px 15px 8px 8px;
    margin-bottom: 20px;

    background: rgba(0, 113, 188, 0.07);

    border: 1px solid rgba(0, 113, 188, 0.14);

    color: var(--main-color);

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.6px;

    border-radius: 50px;

    animation: heroBadgeAppear 0.8s ease both;
}


.hero_badge_icon {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white-color);
    background: var(--main-color);

    border-radius: 50%;

    animation: badgePulse 2.5s ease-in-out infinite;
}

.hero_badge_icon i {
    font-size: 12px;
}


/* =========================================
   HEADING
========================================= */

.hero_section_title {
    margin: 0 0 20px;

    color: var(--black-color);

    font-size: 47px;
    line-height: 1.12;

    font-weight: 750;
    letter-spacing: -1.5px;

    animation: heroContentUp 0.8s ease 0.15s both;
}


.hero_section_title span {
    display: block;

    color: var(--main-color);

    position: relative;
}


/* Animated underline */



/* =========================================
   DESCRIPTION
========================================= */

.hero_section_description {
    max-width: 600px;

    margin: 0 0 27px;

    color: var(--text-light);

    font-size: 16px;
    line-height: 1.8;

    animation: heroContentUp 0.8s ease 0.3s both;
}


/* =========================================
   SERVICE CARDS
========================================= */

.hero_section_services {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 27px;

    animation: heroContentUp 0.8s ease 0.4s both;
}


.hero_service_item {
    position: relative;

    display: flex;
    align-items: center;
    gap: 9px;

    min-width: 160px;

    padding: 10px 12px;

    background: rgba(255, 255, 255, 0.88);

    border: 1px solid #e4eef5;

    border-radius: 10px;

    color: #333333;

    text-decoration: none;

    box-shadow: 0 7px 25px rgba(0, 113, 188, 0.06);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}


.hero_service_item:hover {
    color: #ffffff;

    background: linear-gradient(
        135deg,
        var(--main-color),
        var(--hover-color)
    );

    border-color: transparent;

    transform: translateY(-5px);

    box-shadow:
        0 15px 30px rgba(0, 113, 188, 0.18);
}


.hero_service_icon {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 113, 188, 0.09);

    color: var(--main-color);

    border-radius: 8px;

    font-size: 13px;

    transition: all 0.35s ease;
}


.hero_service_item:hover .hero_service_icon {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;

    transform: rotate(-8deg) scale(1.08);
}


.hero_service_content {
    display: flex;
    flex-direction: column;

    gap: 2px;
}


.hero_service_content strong {
    font-size: 13px;
    font-weight: 700;
}


.hero_service_content span {
    color: #888888;

    font-size: 10px;
}


.hero_service_item:hover .hero_service_content span {
    color: rgba(255, 255, 255, 0.82);
}


.hero_service_arrow {
    margin-left: auto;

    font-size: 10px;

    opacity: 0;

    transform: translateX(-5px);

    transition: all 0.3s ease;
}


.hero_service_item:hover .hero_service_arrow {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================
   BUTTONS
========================================= */

.hero_section_buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 25px;

    animation: heroContentUp 0.8s ease 0.5s both;
}


.hero_btn {
    position: relative;
    overflow: hidden;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 50px;

    padding: 0 23px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


/* Shine effect */

.hero_btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );

    transform: skewX(-20deg);

    transition: left 0.6s ease;
}


.hero_btn:hover::before {
    left: 130%;
}


/* Primary */

.hero_btn_primary {
    color: var(--white-color);

    background: var(--main-color);

    box-shadow:
        0 10px 25px rgba(0, 113, 188, 0.22);
}


.hero_btn_primary:hover {
    color: #ffffff;

    background: var(--hover-color);

    transform: translateY(-4px);

    box-shadow:
        0 15px 30px rgba(0, 174, 239, 0.25);
}


.hero_btn_primary i {
    transition: transform 0.3s ease;
}


.hero_btn_primary:hover i {
    transform: translateX(5px);
}


/* Secondary */

.hero_btn_secondary {
    color: var(--main-color);

    background: #ffffff;

    border: 1px solid rgba(0, 113, 188, 0.22);
}


.hero_btn_secondary:hover {
    color: #ffffff;

    background: var(--main-color);

    border-color: var(--main-color);

    transform: translateY(-4px);

    box-shadow:
        0 12px 25px rgba(0, 113, 188, 0.15);
}


.hero_btn_secondary i {
    color: #25D366;

    font-size: 18px;

    transition: transform 0.3s ease;
}


.hero_btn_secondary:hover i {
    color: #ffffff;

    transform: scale(1.12);
}


/* =========================================
   TRUST
========================================= */

.hero_section_trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 18px;

    animation: heroContentUp 0.8s ease 0.6s both;
}


.hero_trust_item {
    display: flex;
    align-items: center;

    gap: 6px;

    color: #666666;

    font-size: 12px;
    font-weight: 500;
}


.hero_trust_icon {
    color: var(--main-color);

    font-size: 14px;

    transition: transform 0.3s ease;
}


.hero_trust_item:hover .hero_trust_icon {
    transform: scale(1.15);
}


/* =========================================
   QUICK INFO
========================================= */

.hero_quick_info {
    display: flex;
    align-items: center;

    width: fit-content;

    margin-top: 24px;
    padding: 12px 15px;

    background: rgba(255, 255, 255, 0.72);

    border: 1px solid rgba(0, 113, 188, 0.1);

    border-radius: 12px;

    box-shadow: 0 8px 25px rgba(0, 70, 110, 0.05);

    backdrop-filter: blur(8px);

    animation: heroContentUp 0.8s ease 0.7s both;
}


.hero_quick_info_item {
    display: flex;
    align-items: center;

    gap: 9px;
}


.hero_quick_info_icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: var(--main-color);

    background: rgba(0, 113, 188, 0.08);

    border-radius: 8px;
}


.hero_quick_info_item strong {
    display: block;

    margin-bottom: 2px;

    color: #222222;

    font-size: 11px;
}


.hero_quick_info_item span {
    display: block;

    color: #888888;

    font-size: 9px;
}


.hero_quick_info_divider {
    width: 1px;
    height: 32px;

    margin: 0 18px;

    background: #dce8ef;
}


/* =========================================
   IMAGE AREA
========================================= */

.hero_section_image_col {
    display: flex;

    justify-content: center;
    align-items: center;
}


.hero_section_image_wrapper {
    position: relative;

    width: 100%;
    max-width: 590px;

    min-height: 570px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Image glow */

.hero_image_glow {
    position: absolute;

    width: 440px;
    height: 440px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 174, 239, 0.14),
            rgba(0, 113, 188, 0.03) 55%,
            transparent 70%
        );

    filter: blur(5px);

    animation: imageGlow 5s ease-in-out infinite;
}


/* Ring */

.hero_image_ring {
    position: absolute;

    width: 470px;
    height: 470px;

    border: 1px solid rgba(0, 113, 188, 0.1);

    border-radius: 50%;

    animation: ringRotate 18s linear infinite;
}


.hero_image_ring::before,
.hero_image_ring::after {
    content: "";

    position: absolute;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--hover-color);

    box-shadow: 0 0 15px rgba(0, 174, 239, 0.5);
}


.hero_image_ring::before {
    top: 25px;
    left: 50%;
}


.hero_image_ring::after {
    right: 30px;
    bottom: 70px;

    background: var(--main-color);
}


/* Main Image */

.hero_section_image {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 530px;

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(0 25px 35px rgba(0, 60, 100, 0.16));

    animation:
        heroImageFloat 5s ease-in-out infinite,
        heroImageAppear 1s ease 0.3s both;

    transition: transform 0.4s ease;
}


.hero_section_image_wrapper:hover .hero_section_image {
    transform: translateY(-8px) scale(1.015);
}


/* Image dots */

.hero_image_dots {
    position: absolute;

    right: 0;
    top: 90px;

    width: 90px;
    height: 90px;

    background-image: radial-gradient(
        var(--hover-color) 1.5px,
        transparent 1.5px
    );

    background-size: 12px 12px;

    opacity: 0.5;

    animation: dotsFloat 4s ease-in-out infinite;
}


/* =========================================
   FLOATING CARDS
========================================= */

.hero_floating_card {
    position: absolute;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 12px 13px;

    min-width: 190px;

    background: rgba(255, 255, 255, 0.88);

    border: 1px solid rgba(255, 255, 255, 0.9);

    border-radius: 12px;

    box-shadow:
        0 15px 40px rgba(0, 50, 90, 0.13);

    backdrop-filter: blur(12px);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.hero_floating_card:hover {
    transform: translateY(-6px) scale(1.02);

    box-shadow:
        0 20px 45px rgba(0, 70, 110, 0.18);
}


.hero_floating_icon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--main-color);

    background: rgba(0, 113, 188, 0.09);

    border-radius: 9px;

    font-size: 16px;

    transition: all 0.3s ease;
}


.hero_floating_card:hover .hero_floating_icon {
    color: #ffffff;

    background: var(--main-color);

    transform: rotate(-5deg);
}


.hero_floating_content {
    flex: 1;
}


.hero_floating_content strong {
    display: block;

    margin-bottom: 2px;

    color: #222222;

    font-size: 12px;
}


.hero_floating_content span {
    display: block;

    color: #777777;

    font-size: 9px;
}


.hero_floating_status {
    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: #27ae60;

    border-radius: 50%;

    font-size: 8px;
}


.hero_card_top {
    top: 65px;
    right: -5px;

    animation: floatingCard 4s ease-in-out infinite;
}


.hero_card_bottom {
    bottom: 70px;
    left: -10px;

    animation: floatingCard 4s ease-in-out 1s infinite;
}


/* =========================================
   SMALL IMAGE BADGE
========================================= */

.hero_image_badge {
    position: absolute;

    z-index: 5;

    right: 20px;
    bottom: 30px;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 9px 13px;

    background: rgba(255,255,255,0.92);

    border: 1px solid rgba(255,255,255,0.9);

    border-radius: 10px;

    box-shadow:
        0 12px 30px rgba(0,50,90,0.12);

    backdrop-filter: blur(10px);

    animation: floatingCard 4.5s ease-in-out 0.5s infinite;
}


.hero_image_badge_icon {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: linear-gradient(
        135deg,
        var(--main-color),
        var(--hover-color)
    );

    border-radius: 8px;

    font-size: 13px;
}


.hero_image_badge strong {
    display: block;

    color: #222222;

    font-size: 10px;
}


.hero_image_badge span {
    display: block;

    color: #888888;

    font-size: 8px;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes heroContentUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes heroBadgeAppear {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0,113,188,0.2);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(0,113,188,0);
    }
}


@keyframes titleLine {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 105px;
        opacity: 1;
    }
}


@keyframes heroImageAppear {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


@keyframes heroImageFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}


@keyframes floatingCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}


@keyframes heroBgFloat {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, 20px);
    }
}


@keyframes imageGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}


@keyframes ringRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes dotsFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .hero_section {
        padding: 70px 0;
    }

    .hero_section_row {
        gap: 30px;
    }

    .hero_section_title {
        font-size: 39px;
    }

    .hero_section_description {
        font-size: 15px;
    }

    .hero_service_item {
        min-width: 145px;
    }

    .hero_section_image_wrapper {
        min-height: 500px;
    }

    .hero_image_glow {
        width: 390px;
        height: 390px;
    }

    .hero_image_ring {
        width: 410px;
        height: 410px;
    }

    .hero_section_image {
        max-width: 440px;
    }

    .hero_card_top {
        top: 40px;
        right: -5px;
    }

    .hero_card_bottom {
        bottom: 45px;
        left: -5px;
    }

}


/* =========================================
   TABLET SMALL
========================================= */

@media (max-width: 991px) {

    .hero_section_title {
        font-size: 35px;
    }

    .hero_section_services {
        gap: 7px;
    }

    .hero_service_item {
        min-width: 135px;
        padding: 8px 10px;
    }

    .hero_quick_info {
        padding: 10px 12px;
    }

    .hero_quick_info_divider {
        margin: 0 10px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .hero_section {
        min-height: auto;

        padding: 55px 0 65px;
    }


    .hero_section_container {
        padding: 0 16px;
    }


    .hero_section_row {
        flex-direction: column;

        gap: 45px;
    }


    .hero_section_col {
        width: 100%;
    }


    .hero_section_content {
        max-width: 100%;

        text-align: center;
    }


    .hero_section_badge {
        font-size: 10px;

        padding: 7px 12px 7px 7px;
    }


    .hero_badge_icon {
        width: 27px;
        height: 27px;
    }


    .hero_section_title {
        font-size: 31px;

        line-height: 1.16;

        letter-spacing: -0.8px;
    }


    .hero_section_title span::after {
        left: 50%;
        transform: translateX(-50%);
    }


    .hero_section_description {
        max-width: 100%;

        font-size: 14px;

        line-height: 1.75;

        margin-bottom: 23px;
    }


    /* Services */

    .hero_section_services {
        justify-content: center;

        gap: 8px;
    }


    .hero_service_item {
        min-width: auto;

        padding: 8px 10px;

        border-radius: 9px;
    }


    .hero_service_icon {
        width: 30px;
        height: 30px;
    }


    .hero_service_content strong {
        font-size: 11px;
    }


    .hero_service_content span {
        font-size: 8px;
    }


    .hero_service_arrow {
        display: none;
    }


    /* Buttons */

    .hero_section_buttons {
        justify-content: center;

        margin-bottom: 23px;
    }


    .hero_btn {
        min-height: 47px;

        padding: 0 18px;

        font-size: 12px;
    }


    /* Trust */

    .hero_section_trust {
        justify-content: center;

        gap: 9px 15px;
    }


    .hero_trust_item {
        font-size: 10px;
    }


    /* Quick info */

    .hero_quick_info {
        width: 100%;

        justify-content: center;

        padding: 10px;

        margin-top: 20px;
    }


    .hero_quick_info_item {
        gap: 7px;
    }


    .hero_quick_info_icon {
        width: 30px;
        height: 30px;

        font-size: 11px;
    }


    .hero_quick_info_item strong {
        font-size: 9px;
    }


    .hero_quick_info_item span {
        font-size: 7px;
    }


    .hero_quick_info_divider {
        height: 28px;

        margin: 0 9px;
    }


    /* Image */

    .hero_section_image_wrapper {
        min-height: 380px;
    }


    .hero_image_glow {
        width: 290px;
        height: 290px;
    }


    .hero_image_ring {
        width: 310px;
        height: 310px;
    }


    .hero_section_image {
        max-width: 340px;
    }


    .hero_image_dots {
        width: 60px;
        height: 60px;

        top: 45px;
        right: 5px;
    }


    /* Floating cards */

    .hero_floating_card {
        min-width: 155px;

        padding: 9px 10px;

        gap: 7px;

        border-radius: 10px;
    }


    .hero_floating_icon {
        width: 32px;
        height: 32px;

        font-size: 13px;
    }


    .hero_floating_content strong {
        font-size: 10px;
    }


    .hero_floating_content span {
        font-size: 8px;
    }


    .hero_floating_status {
        width: 17px;
        height: 17px;

        font-size: 7px;
    }


    .hero_card_top {
        top: 20px;
        right: 0;
    }


    .hero_card_bottom {
        bottom: 25px;
        left: 0;
    }


    .hero_image_badge {
        right: 5px;
        bottom: 5px;

        padding: 7px 9px;
    }


    .hero_image_badge_icon {
        width: 28px;
        height: 28px;

        font-size: 11px;
    }


    .hero_image_badge strong {
        font-size: 8px;
    }


    .hero_image_badge span {
        font-size: 7px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .hero_section {
        padding: 45px 0 55px;
    }


    .hero_section_title {
        font-size: 28px;
    }


    .hero_section_badge {
        font-size: 9px;
    }


    .hero_section_services {
        display: grid;

        grid-template-columns: repeat(3, 1fr);

        gap: 6px;
    }


    .hero_service_item {
        min-width: 0;

        flex-direction: column;

        justify-content: center;

        text-align: center;

        padding: 9px 5px;
    }


    .hero_service_content {
        align-items: center;
    }


    .hero_service_content strong {
        font-size: 9px;
    }


    .hero_service_content span {
        font-size: 7px;
    }


    .hero_section_buttons {
        flex-direction: column;

        width: 100%;
    }


    .hero_btn {
        width: 100%;
    }


    .hero_section_trust {
        flex-direction: column;

        gap: 7px;
    }


    .hero_quick_info {
        gap: 5px;
    }


    .hero_quick_info_item span {
        display: none;
    }


    .hero_quick_info_divider {
        margin: 0 5px;
    }


    .hero_section_image_wrapper {
        min-height: 325px;
    }


    .hero_image_glow {
        width: 245px;
        height: 245px;
    }


    .hero_image_ring {
        width: 260px;
        height: 260px;
    }


    .hero_section_image {
        max-width: 295px;
    }


    .hero_floating_card {
        min-width: 140px;

        padding: 7px 8px;
    }


    .hero_floating_content strong {
        font-size: 9px;
    }


    .hero_floating_content span {
        font-size: 7px;
    }


    .hero_card_top {
        top: 12px;
        right: -3px;
    }


    .hero_card_bottom {
        bottom: 15px;
        left: -3px;
    }


    .hero_image_badge {
        display: none;
    }

}


/* =========================================
   REDUCE MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .hero_section *,
    .hero_section *::before,
    .hero_section *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}

/* =========================================
   HERO SECTION END
========================================= */
/* after hero section start  */
/* =========================================
   TRAVEL SEARCH SECTION
========================================= */

.travel_search_section {
    position: relative;
    width: 100%;

    margin-top: -40px;
    padding-bottom: 70px;

    z-index: 20;
}


.travel_search_container {
    width: 100%;
    max-width: 1150px;

    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================
   MAIN SEARCH BOX
========================================= */

.travel_search_box {
    position: relative;

    background: rgba(255, 255, 255, 0.98);

    border: 1px solid rgba(0, 113, 188, 0.08);

    border-radius: 22px;

    box-shadow:
        0 20px 60px rgba(0, 65, 105, 0.15);

    backdrop-filter: blur(15px);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.travel_search_box:hover {
    box-shadow:
        0 25px 70px rgba(0, 65, 105, 0.18);
}


/* =========================================
   TABS
========================================= */

.travel_search_tabs {
    display: flex;

    width: fit-content;

    margin: 0 auto;

    padding: 6px;

    background: #ffffff;

    border-radius: 0 0 18px 18px;

    box-shadow:
        0 8px 25px rgba(0, 50, 90, 0.08);
}


.travel_search_tab {
    position: relative;

    min-width: 160px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 25px;

    border: none;
    border-radius: 11px;

    background: transparent;

    color: #242424;

    font-family: inherit;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        all 0.35s ease;
}


.travel_tab_icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(0, 113, 188, 0.08);

    color: var(--main-color);

    transition:
        all 0.35s ease;
}


.travel_search_tab:hover {
    color: var(--main-color);

    background:
        rgba(0, 113, 188, 0.05);
}


.travel_search_tab:hover
.travel_tab_icon {
    transform: translateY(-2px);

    background:
        rgba(0, 113, 188, 0.12);
}


.travel_search_tab.active {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--main-color),
            var(--hover-color)
        );

    box-shadow:
        0 8px 20px rgba(0, 113, 188, 0.20);
}


.travel_search_tab.active
.travel_tab_icon {
    color: var(--main-color);

    background: #ffffff;

    transform:
        rotate(-4deg)
        scale(1.04);
}


/* =========================================
   SEARCH CONTENT
========================================= */

.travel_search_content {
    display: none;

    align-items: stretch;

    width: 100%;

    min-height: 110px;

    padding: 17px;

    animation:
        travelContentShow 0.4s ease;
}


.travel_search_content.active {
    display: flex;
}


@keyframes travelContentShow {

    from {
        opacity: 0;

        transform:
            translateY(10px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================
   SEARCH FIELD
========================================= */

.travel_search_field {
    position: relative;

    flex: 1;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 12px 22px;

    border-right: 1px solid #e7edf1;
}


.travel_search_field_icon {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        rgba(0, 113, 188, 0.08);

    color: var(--main-color);

    font-size: 15px;

    transition:
        all 0.3s ease;
}


.travel_search_field:focus-within
.travel_search_field_icon {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--main-color),
            var(--hover-color)
        );

    transform:
        scale(1.06)
        rotate(-3deg);

    box-shadow:
        0 7px 15px rgba(0, 113, 188, 0.15);
}


.travel_search_field_content {
    position: relative;

    width: 100%;
    min-width: 0;
}


.travel_field_label {
    display: block;

    margin-bottom: 6px;

    color: #8a949b;

    font-size: 10px;

    font-weight: 600;
}


.travel_search_button {
    position: relative;

    overflow: hidden;

    flex: 0 0 165px;

    min-height: 60px;

    margin-left: 15px;

    border: none;
    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            var(--main-color),
            #0064a8
        );

    color: #ffffff;

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition:
        all 0.35s ease;
}


.travel_search_button::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.25),
            transparent
        );

    transform: skewX(-20deg);

    transition:
        left 0.6s ease;
}


.travel_search_button:hover::before {
    left: 130%;
}


.travel_search_button:hover {
    background:
        linear-gradient(
            135deg,
            var(--hover-color),
            var(--main-color)
        );

    transform:
        translateY(-3px);

    box-shadow:
        0 12px 28px rgba(0, 113, 188, 0.23);
}


.travel_search_button i {
    margin-left: 8px;

    transition:
        transform 0.3s ease;
}


.travel_search_button:hover i {
    transform:
        translateX(5px);
}


/* =========================================
   CUSTOM SELECT
========================================= */

.custom_select {
    position: relative;

    width: 100%;
}


.custom_select_button {
    width: 100%;

    height: 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding: 0;

    border: none;
    outline: none;

    background: transparent;

    color: #252525;

    font-family: inherit;

    font-size: 13px;

    font-weight: 600;

    text-align: left;

    cursor: pointer;
}


.custom_select_button i {
    flex-shrink: 0;

    color: var(--main-color);

    font-size: 9px;

    transition:
        transform 0.3s ease;
}


.custom_select.active
.custom_select_button i {
    transform:
        rotate(180deg);
}


/* =========================================
   CUSTOM DROPDOWN
========================================= */

.custom_select_dropdown {
    position: absolute;

    top: calc(100% + 14px);

    left: -55px;

    width: 340px;

    max-height: 330px;

    overflow-y: auto;

    padding: 7px;

    z-index: 9999;

    background: #ffffff;

    border: 1px solid #e4ebef;

    border-radius: 14px;

    box-shadow:
        0 20px 50px rgba(0, 40, 75, 0.18);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(-8px)
        scale(0.97);

    transform-origin: top center;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}


.custom_select.active
.custom_select_dropdown {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0)
        scale(1);
}


/* =========================================
   CUSTOM OPTION
========================================= */

.custom_option {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 11px;

    padding: 10px;

    border: none;
    border-radius: 9px;

    background: transparent;

    font-family: inherit;

    text-align: left;

    cursor: pointer;

    transition:
        all 0.25s ease;
}


.custom_option:hover {
    background:
        rgba(0, 113, 188, 0.06);

    transform:
        translateX(3px);
}


.custom_option_icon {
    width: 35px;
    height: 35px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background:
        rgba(0, 113, 188, 0.08);

    color: var(--main-color);

    font-size: 12px;

    transition:
        all 0.25s ease;
}


.custom_option:hover
.custom_option_icon {
    color: #ffffff;

    background:
        var(--main-color);

    transform:
        scale(1.05);
}


.custom_option_text {
    min-width: 0;
}


.custom_option_text strong {
    display: block;

    margin-bottom: 3px;

    color: #252525;

    font-size: 11px;

    font-weight: 700;
}


.custom_option_text small {
    display: block;

    color: #929ba1;

    font-size: 9px;

    font-weight: 500;
}


/* =========================================
   SELECTED STATE
========================================= */

.custom_option.selected {
    background:
        rgba(0, 113, 188, 0.07);
}


.custom_option.selected
.custom_option_icon {
    color: #ffffff;

    background:
        var(--main-color);
}


.custom_option.selected::after {
    content: "\f00c";

    margin-left: auto;

    color: var(--main-color);

    font-family:
        "Font Awesome 6 Free";

    font-weight: 900;

    font-size: 11px;
}


/* =========================================
   SCROLLBAR
========================================= */

.custom_select_dropdown::-webkit-scrollbar {
    width: 5px;
}


.custom_select_dropdown::-webkit-scrollbar-track {
    background: transparent;
}


.custom_select_dropdown::-webkit-scrollbar-thumb {
    background:
        rgba(0, 113, 188, 0.25);

    border-radius: 10px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .travel_search_section {
        margin-top: -25px;
    }


    .travel_search_content {
        flex-wrap: wrap;
    }


    .travel_search_field {
        flex: 1 1 50%;

        min-width: 50%;

        border-right: none;

        border-bottom:
            1px solid #edf1f4;
    }


    .travel_search_button {
        flex: 1 1 100%;

        margin:
            12px 0 0;

        min-height: 52px;
    }


    .custom_select_dropdown {
        left: -20px;

        width: 320px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .travel_search_section {
        margin-top: -20px;

        padding-bottom: 45px;
    }


    .travel_search_container {
        padding:
            0 12px;
    }


    .travel_search_box {
        border-radius: 16px;
    }


    /* Tabs */

    .travel_search_tabs {
        width: 100%;

        padding: 5px;

        gap: 5px;

        border-radius:
            16px 16px 0 0;
    }


    .travel_search_tab {
        flex: 1;

        min-width: 0;

        height: 50px;

        padding: 0 10px;

        border-radius: 9px;

        font-size: 12px;
    }


    .travel_tab_icon {
        width: 30px;
        height: 30px;
    }


    /* Content */

    .travel_search_content {
        flex-direction: column;

        padding: 10px;
    }


    .travel_search_field {
        width: 100%;

        min-width: 100%;

        min-height: 68px;

        padding:
            9px 5px;

        border-right: none;

        border-bottom:
            1px solid #edf1f4;
    }


    .travel_search_field_icon {
        width: 37px;
        height: 37px;

        font-size: 13px;
    }


    .travel_field_label {
        font-size: 9px;
    }


    .custom_select_button {
        font-size: 12px;
    }


    /* Button */

    .travel_search_button {
        width: 100%;

        flex: none;

        min-height: 50px;

        margin:
            8px 0 0;

        font-size: 12px;
    }


    /* Dropdown */

    .custom_select_dropdown {
        top: calc(100% + 8px);

        left: -42px;

        width:
            calc(100vw - 60px);

        max-width: 350px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .travel_search_tab {
        height: 46px;
    }


    .travel_tab_icon {
        width: 28px;
        height: 28px;

        font-size: 11px;
    }


    .travel_tab_text {
        font-size: 11px;
    }


    .travel_search_field {
        min-height: 64px;
    }


    .custom_select_dropdown {
        left: -43px;

        width:
            calc(100vw - 50px);
    }


    .custom_option {
        padding: 9px;
    }


    .custom_option_icon {
        width: 32px;
        height: 32px;
    }

}


/* =========================================
   EXTRA SMALL
========================================= */

@media (max-width: 360px) {

    .travel_search_container {
        padding:
            0 8px;
    }


    .travel_search_tab {
        gap: 5px;
    }


    .travel_tab_text {
        font-size: 10px;
    }


    .custom_select_dropdown {
        left: -40px;

        width:
            calc(100vw - 35px);
    }

}
/* after hero section end  */
/* spacial package start  */
/* =========================================
   SPACIAL PACKAGE START
========================================= */

.spacial_package_section {
    position: relative;
    width: 100%;
    padding: 90px 0 100px;
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fbfd 100%
        );
}


/* =========================================
   BACKGROUND SHAPES
========================================= */

.spacial_package_bg_shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.spacial_package_bg_shape_one {
    width: 420px;
    height: 420px;

    left: -220px;
    top: 120px;

    background:
        radial-gradient(
            circle,
            rgba(0,174,239,.09),
            transparent 70%
        );

    animation:
        spacialFloatOne 8s ease-in-out infinite;
}

.spacial_package_bg_shape_two {
    width: 380px;
    height: 380px;

    right: -200px;
    bottom: 100px;

    background:
        radial-gradient(
            circle,
            rgba(0,113,188,.08),
            transparent 70%
        );

    animation:
        spacialFloatTwo 10s ease-in-out infinite;
}


@keyframes spacialFloatOne {

    0%,100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(30px,-25px);
    }
}


@keyframes spacialFloatTwo {

    0%,100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(-25px,30px);
    }
}


/* =========================================
   CONTAINER
========================================= */

.spacial_package_container {
    position: relative;

    width: 100%;
    max-width: 1250px;

    margin: 0 auto;
    padding: 0 25px;

    z-index: 2;
}


/* =========================================
   HEADING
========================================= */

.spacial_package_heading {
    margin-bottom: 48px;
    text-align: center;
}


.spacial_package_subtitle {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-bottom: 12px;

    color: #54a83f;

    font-family: Georgia, serif;

    font-size: 17px;
    font-style: italic;

    opacity: 0;

    transform: translateY(15px);

    animation:
        packageHeadingUp .8s ease forwards;
}


.spacial_package_star {
    display: inline-block;

    color: var(--hover-color);

    animation:
        packageStar 2s ease-in-out infinite;
}


@keyframes packageHeadingUp {

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes packageStar {

    0%,100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.3) rotate(15deg);
    }

}


.spacial_package_title {
    margin: 0;

    color: #111111;

    font-size: clamp(
        35px,
        4vw,
        50px
    );

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1.5px;

    opacity: 0;

    transform: translateY(20px);

    animation:
        packageTitleUp .8s .15s ease forwards;
}


.spacial_package_title span {
    color: var(--main-color);

    position: relative;
}


.spacial_package_title span::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 100%;
    height: 3px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--main-color),
            var(--hover-color)
        );

    transform: scaleX(0);
    transform-origin: left;

    animation:
        packageUnderline 1s .8s ease forwards;
}


@keyframes packageTitleUp {

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes packageUnderline {

    to {
        transform: scaleX(1);
    }

}


.spacial_package_description {
    max-width: 650px;

    margin: 17px auto 0;

    color: #747f86;

    font-size: 14px;

    line-height: 1.8;

    opacity: 0;

    animation:
        packageDescription .8s .3s ease forwards;
}


@keyframes packageDescription {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   HEADING LINE
========================================= */

.spacial_package_heading_line {
    width: 80px;
    height: 3px;

    margin: 20px auto 0;

    overflow: hidden;

    border-radius: 20px;

    background: #e5eef2;
}


.spacial_package_heading_line span {
    display: block;

    width: 35px;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--main-color),
            var(--hover-color)
        );

    animation:
        headingLineMove 2s ease-in-out infinite;
}


@keyframes headingLineMove {

    0% {
        transform: translateX(-40px);
    }

    50% {
        transform: translateX(80px);
    }

    100% {
        transform: translateX(-40px);
    }

}


/* =========================================
   GRID
========================================= */

.spacial_package_grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}


/* =========================================
   CARD
========================================= */

.spacial_package_card {
    position: relative;

    min-width: 0;

    opacity: 0;

    transform:
        translateY(55px)
        scale(.96);

    perspective: 1000px;

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.2,.8,.2,1);
}


.spacial_package_card.is-visible {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}


.spacial_package_card_inner {
    position: relative;

    overflow: hidden;

    height: 100%;

    background: #ffffff;

    border: 1px solid #e9eff2;

    border-radius: 15px;

    box-shadow:
        0 8px 28px rgba(0,45,75,.07);

    transform-style: preserve-3d;

    transition:
        box-shadow .4s ease,
        border-color .4s ease;
}


.spacial_package_card:hover
.spacial_package_card_inner {

    border-color:
        rgba(0,113,188,.18);

    box-shadow:
        0 25px 55px rgba(0,55,90,.15);
}


/* =========================================
   IMAGE BOX
========================================= */

.spacial_package_image_box {
    position: relative;

    height: 290px;

    margin: 12px;

    overflow: hidden;

    border-radius: 11px;

    background: #edf2f4;
}


.spacial_package_image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1s cubic-bezier(.2,.8,.2,1),
        filter .5s ease;
}


.spacial_package_card:hover
.spacial_package_image {

    transform: scale(1.09);

    filter:
        saturate(1.08)
        contrast(1.02);
}


/* =========================================
   IMAGE OVERLAY
========================================= */

.spacial_package_image_overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.04),
            transparent 50%,
            rgba(0,0,0,.32)
        );

    z-index: 1;

    pointer-events: none;
}


/* =========================================
   IMAGE SHINE
========================================= */

.spacial_package_image_shine {
    position: absolute;

    top: 0;
    left: -130%;

    width: 70%;
    height: 100%;

    z-index: 4;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.28),
            transparent
        );

    transform: skewX(-20deg);

    pointer-events: none;
}


.spacial_package_card:hover
.spacial_package_image_shine {

    animation:
        packageImageShine .8s ease;
}


@keyframes packageImageShine {

    from {
        left: -130%;
    }

    to {
        left: 150%;
    }

}


/* =========================================
   DURATION
========================================= */

.spacial_package_duration {
    position: absolute;

    top: 10px;
    left: 0;

    z-index: 5;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 8px 12px;

    color: #ffffff;

    background:
        rgba(0,0,0,.91);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .3px;

    border-radius:
        0 4px 4px 0;

    transition:
        all .35s ease;
}


.spacial_package_card:hover
.spacial_package_duration {

    background:
        var(--main-color);

    padding-left: 16px;
}


.spacial_package_duration i {
    color: var(--hover-color);
}


/* =========================================
   LOCATION
========================================= */

.spacial_package_location {
    position: absolute;

    top: 43px;
    left: 0;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 8px 13px;

    color: #222222;

    background:
        rgba(255,255,255,.96);

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    border-radius:
        0 4px 4px 0;

    transition:
        all .35s ease;
}


.spacial_package_location i {
    color: #55a940;

    font-size: 14px;
}


.spacial_package_card:hover
.spacial_package_location {

    transform:
        translateX(4px);
}


/* =========================================
   CONTENT
========================================= */

.spacial_package_content {
    display: flex;

    flex-direction: column;

    padding:
        5px 20px 21px;
}


/* =========================================
   PACKAGE TAG
========================================= */

.spacial_package_tag {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    width: fit-content;

    margin-bottom: 9px;

    padding: 4px 8px;

    color: var(--main-color);

    background:
        rgba(0,113,188,.07);

    border-radius: 20px;

    font-size: 8px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .4px;

    transition:
        all .3s ease;
}


.spacial_package_tag i {
    font-size: 8px;

    color: #55a940;
}


.spacial_package_card:hover
.spacial_package_tag {

    color: #ffffff;

    background:
        var(--main-color);
}


.spacial_package_card:hover
.spacial_package_tag i {

    color: #ffffff;
}


/* =========================================
   NAME
========================================= */

.spacial_package_name {

    min-height: 57px;

    margin: 0 0 12px;

    color: #161616;

    font-size: 19px;

    line-height: 1.45;

    font-weight: 750;

    transition:
        color .3s ease;
}


.spacial_package_card:hover
.spacial_package_name {

    color:
        var(--main-color);
}


/* =========================================
   ROUTE
========================================= */

.spacial_package_route {

    min-height: 22px;

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    color: #7b858c;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .4px;
}


.spacial_package_route i {

    color: #a6adb2;

    font-size: 9px;

    transition:
        transform .3s ease;
}


.spacial_package_card:hover
.spacial_package_route i {

    color:
        var(--main-color);

    transform:
        translateX(2px);
}


/* =========================================
   DIVIDER
========================================= */

.spacial_package_divider {

    width: 100%;
    height: 1px;

    margin: 15px 0;

    background:
        linear-gradient(
            90deg,
            #dfe5e8,
            transparent
        );
}


/* =========================================
   BOTTOM
========================================= */

.spacial_package_bottom {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 15px;
}


.spacial_package_price small {

    display: block;

    margin-bottom: 2px;

    color: #68747b;

    font-size: 10px;
}


.spacial_package_price strong {

    display: block;

    color: #55a940;

    font-size: 26px;

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: .3px;

    transition:
        transform .3s ease;
}


.spacial_package_card:hover
.spacial_package_price strong {

    transform:
        translateX(3px);
}


.spacial_package_price span {

    display: block;

    margin-top: 2px;

    color: #8b959b;

    font-size: 9px;
}


/* =========================================
   BUTTON
========================================= */

.spacial_package_button {

    position: relative;

    overflow: hidden;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-width: 145px;

    padding: 11px 15px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #55a940,
            #41962f
        );

    border-radius: 6px;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    isolation: isolate;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.spacial_package_button::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        linear-gradient(
            135deg,
            var(--main-color),
            var(--hover-color)
        );

    opacity: 0;

    transition:
        opacity .3s ease;
}


.spacial_package_button:hover {

    color: #ffffff;

    transform:
        translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(65,150,47,.25);
}


.spacial_package_button:hover::before {

    opacity: 1;
}


.spacial_package_button i {

    transition:
        transform .35s ease;
}


.spacial_package_button:hover i {

    transform:
        translateX(5px);
}


/* =========================================
   RIPPLE
========================================= */

.package_button_ripple {

    position: absolute;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.5);

    transform:
        translate(-50%,-50%)
        scale(0);

    animation:
        packageRipple .6s linear;

    pointer-events: none;
}


@keyframes packageRipple {

    to {
        transform:
            translate(-50%,-50%)
            scale(18);

        opacity: 0;
    }
}


/* =========================================
   VIEW ALL
========================================= */

.spacial_package_view_all {

    margin-top: 45px;

    text-align: center;

    opacity: 0;

    transform: translateY(20px);

    transition:
        all .7s ease;
}


.spacial_package_view_all.is-visible {

    opacity: 1;

    transform:
        translateY(0);
}


.spacial_package_view_all_btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 20px;

    color: var(--main-color);

    background: #ffffff;

    border:
        1px solid
        rgba(0,113,188,.18);

    border-radius: 8px;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 5px 18px rgba(0,50,80,.04);

    transition:
        all .35s ease;
}


.spacial_package_view_all_btn:hover {

    color: #ffffff;

    background:
        var(--main-color);

    border-color:
        var(--main-color);

    transform:
        translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(0,113,188,.18);
}


.spacial_package_view_icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 28px;
    height: 28px;

    color: #ffffff;

    background:
        var(--main-color);

    border-radius: 50%;

    transition:
        transform .4s ease,
        background .3s ease;
}


.spacial_package_view_all_btn:hover
.spacial_package_view_icon {

    color:
        var(--main-color);

    background: #ffffff;

    transform:
        rotate(360deg);
}


.spacial_package_arrow {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 27px;
    height: 27px;

    color: #ffffff;

    background:
        var(--main-color);

    border-radius: 50%;

    transition:
        transform .3s ease,
        background .3s ease;
}


.spacial_package_view_all_btn:hover
.spacial_package_arrow {

    color:
        var(--main-color);

    background: #ffffff;

    transform:
        translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .spacial_package_section {

        padding:
            75px 0 85px;
    }


    .spacial_package_grid {

        grid-template-columns:
            repeat(2, minmax(0,1fr));

        gap: 22px;
    }


    .spacial_package_image_box {

        height: 270px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .spacial_package_section {

        padding:
            65px 0 70px;
    }


    .spacial_package_container {

        padding:
            0 15px;
    }


    .spacial_package_heading {

        margin-bottom: 35px;
    }


    .spacial_package_title {

        font-size: 32px;
    }


    .spacial_package_description {

        font-size: 12px;

        line-height: 1.7;
    }


    .spacial_package_grid {

        grid-template-columns: 1fr;

        gap: 20px;
    }


    .spacial_package_image_box {

        height: 280px;
    }


    .spacial_package_name {

        font-size: 18px;

        min-height: auto;
    }


    /*
     * Disable 3D feel on mobile
     * for smoother performance
     */

    .spacial_package_card:hover {

        transform:
            translateY(-5px);
    }


    .spacial_package_card:hover
    .spacial_package_card_inner {

        box-shadow:
            0 18px 35px
            rgba(0,55,90,.12);
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .spacial_package_section {

        padding:
            55px 0 65px;
    }


    .spacial_package_container {

        padding:
            0 12px;
    }


    .spacial_package_title {

        font-size: 28px;

        letter-spacing:
            -.7px;
    }


    .spacial_package_subtitle {

        font-size: 14px;
    }


    .spacial_package_image_box {

        height: 235px;

        margin: 9px;
    }


    .spacial_package_content {

        padding:
            4px 15px 17px;
    }


    .spacial_package_bottom {

        align-items: center;

        gap: 10px;
    }


    .spacial_package_price strong {

        font-size: 21px;
    }


    .spacial_package_button {

        min-width: 120px;

        padding:
            10px 9px;

        font-size: 9px;
    }


    .spacial_package_button i {

        font-size: 9px;
    }


    .spacial_package_duration {

        font-size: 9px;

        padding:
            7px 9px;
    }


    .spacial_package_location {

        font-size: 9px;

        padding:
            7px 10px;
    }


    .spacial_package_bg_shape_one,
    .spacial_package_bg_shape_two {

        opacity: .5;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 350px) {

    .spacial_package_title {

        font-size: 25px;
    }


    .spacial_package_image_box {

        height: 205px;
    }


    .spacial_package_bottom {

        flex-direction: column;

        align-items: stretch;
    }


    .spacial_package_button {

        width: 100%;
    }


    .spacial_package_price {

        width: 100%;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .spacial_package_section *,
    .spacial_package_section *::before,
    .spacial_package_section *::after {

        animation: none !important;

        transition: none !important;
    }

}
/* spacial package end  */
/* service section start  */
/* =========================================
   SERVICE SECTION START
========================================= */

.service_section {
    position: relative;

    width: 100%;

    padding: 90px 0 100px;

    overflow: hidden;

    background:
        #f7fbfd;
}


/* =========================================
   BACKGROUND SHAPES
========================================= */

.service_bg_shape {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: 0;
}


.service_bg_shape_one {

    width: 400px;
    height: 400px;

    left: -220px;
    top: 100px;

    background:
        radial-gradient(
            circle,
            rgba(0,174,239,.08),
            transparent 70%
        );

    animation:
        serviceFloatOne 9s ease-in-out infinite;
}


.service_bg_shape_two {

    width: 420px;
    height: 420px;

    right: -230px;
    bottom: 50px;

    background:
        radial-gradient(
            circle,
            rgba(0,113,188,.08),
            transparent 70%
        );

    animation:
        serviceFloatTwo 10s ease-in-out infinite;
}


@keyframes serviceFloatOne {

    0%,100% {
        transform:
            translate(0,0);
    }

    50% {
        transform:
            translate(30px,-25px);
    }

}


@keyframes serviceFloatTwo {

    0%,100% {
        transform:
            translate(0,0);
    }

    50% {
        transform:
            translate(-30px,25px);
    }

}


/* =========================================
   CONTAINER
========================================= */

.service_section_container {

    position: relative;

    width: 100%;

    max-width: 1250px;

    margin: 0 auto;

    padding: 0 25px;

    z-index: 2;
}


/* =========================================
   HEADING
========================================= */

.service_section_heading {

    margin-bottom: 50px;

    text-align: center;
}


.service_section_subtitle {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 12px;

    color: #54a83f;

    font-family:
        Georgia,
        serif;

    font-size: 17px;

    font-style: italic;

    opacity: 0;

    transform:
        translateY(15px);

    animation:
        serviceHeadingUp .8s ease forwards;
}


.service_section_subtitle span {

    color:
        var(--hover-color);

    animation:
        serviceStar 2s ease-in-out infinite;
}


@keyframes serviceHeadingUp {

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


@keyframes serviceStar {

    0%,100% {
        transform:
            scale(1)
            rotate(0);
    }

    50% {
        transform:
            scale(1.3)
            rotate(15deg);
    }

}


.service_section_title {

    margin: 0;

    color: #111111;

    font-size:
        clamp(
            34px,
            4vw,
            50px
        );

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1.5px;

    opacity: 0;

    transform:
        translateY(20px);

    animation:
        serviceTitleUp .8s .15s ease forwards;
}


.service_section_title span {

    display: inline-block;

    color:
        var(--main-color);

    position: relative;
}


.service_section_title span::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 100%;

    height: 3px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--main-color),
            var(--hover-color)
        );

    transform:
        scaleX(0);

    transform-origin:
        left;

    animation:
        serviceUnderline 1s .8s ease forwards;
}


@keyframes serviceTitleUp {

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


@keyframes serviceUnderline {

    to {

        transform:
            scaleX(1);

    }

}


.service_section_description {

    max-width: 650px;

    margin:
        17px auto 0;

    color: #747f86;

    font-size: 14px;

    line-height: 1.8;

    opacity: 0;

    animation:
        serviceDescription .8s .3s ease forwards;
}


@keyframes serviceDescription {

    from {

        opacity: 0;

        transform:
            translateY(10px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =========================================
   HEADING LINE
========================================= */

.service_section_heading_line {

    width: 80px;

    height: 3px;

    margin:
        20px auto 0;

    overflow: hidden;

    border-radius: 20px;

    background:
        #e2ebef;
}


.service_section_heading_line span {

    display: block;

    width: 35px;

    height: 100%;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--main-color),
            var(--hover-color)
        );

    animation:
        serviceLineMove 2s ease-in-out infinite;
}


@keyframes serviceLineMove {

    0% {
        transform:
            translateX(-40px);
    }

    50% {
        transform:
            translateX(80px);
    }

    100% {
        transform:
            translateX(-40px);
    }

}


/* =========================================
   SERVICE GRID
========================================= */

.service_section_grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}


/* =========================================
   SERVICE CARD
========================================= */

.service_section_card {

    position: relative;

    padding: 25px;

    min-height: 280px;

    overflow: hidden;

    background:
        rgba(255,255,255,.95);

    border:
        1px solid #e8eff2;

    border-radius: 16px;

    box-shadow:
        0 8px 28px
        rgba(0,45,75,.06);

    opacity: 0;

    transform:
        translateY(50px)
        scale(.96);

    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.2,.8,.2,1),
        box-shadow .4s ease,
        border-color .4s ease;
}


.service_section_card.is-visible {

    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}


.service_section_card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--main-color),
            var(--hover-color)
        );

    transform:
        scaleX(0);

    transform-origin:
        left;

    transition:
        transform .45s ease;
}


.service_section_card:hover::before {

    transform:
        scaleX(1);
}


.service_section_card:hover {

    border-color:
        rgba(0,113,188,.18);

    box-shadow:
        0 22px 50px
        rgba(0,55,90,.13);

    transform:
        translateY(-8px);
}


/* =========================================
   CARD TOP
========================================= */

.service_section_card_top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 22px;
}


/* =========================================
   ICON
========================================= */

.service_section_icon {

    position: relative;

    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    color:
        var(--main-color);

    background:
        linear-gradient(
            135deg,
            rgba(0,113,188,.10),
            rgba(0,174,239,.07)
        );

    border-radius: 16px;

    font-size: 23px;

    transition:
        all .4s ease;
}


.service_section_icon::before {

    content: "";

    position: absolute;

    inset: -5px;

    border:
        1px solid
        rgba(0,113,188,.10);

    border-radius: 19px;

    opacity: 0;

    transform:
        scale(.8);

    transition:
        all .4s ease;
}


.service_section_card:hover
.service_section_icon {

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--main-color),
            var(--hover-color)
        );

    transform:
        rotate(-5deg)
        scale(1.08);

    box-shadow:
        0 12px 25px
        rgba(0,113,188,.20);
}


.service_section_card:hover
.service_section_icon::before {

    opacity: 1;

    transform:
        scale(1);

}


/* =========================================
   NUMBER
========================================= */

.service_section_number {

    color:
        rgba(0,113,188,.10);

    font-size: 38px;

    font-weight: 800;

    line-height: 1;

    transition:
        color .4s ease,
        transform .4s ease;
}


.service_section_card:hover
.service_section_number {

    color:
        rgba(0,113,188,.18);

    transform:
        translateX(-3px);
}


/* =========================================
   CONTENT
========================================= */

.service_section_content h3 {

    margin:
        0 0 10px;

    color: #171717;

    font-size: 20px;

    font-weight: 750;

    transition:
        color .3s ease;
}


.service_section_card:hover
.service_section_content h3 {

    color:
        var(--main-color);
}


.service_section_content p {

    min-height: 62px;

    margin: 0 0 18px;

    color: #78838a;

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================
   LINK
========================================= */

.service_section_link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color:
        var(--main-color);

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    transition:
        color .3s ease;
}


.service_section_link span {

    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background:
        var(--main-color);

    border-radius: 50%;

    transition:
        all .35s ease;
}


.service_section_link:hover {

    color:
        var(--hover-color);
}


.service_section_link:hover span {

    color:
        var(--main-color);

    background:
        var(--hover-color);

    transform:
        translateX(5px);
}


/* =========================================
   CARD DECORATION
========================================= */

.service_section_card::after {

    content: "";

    position: absolute;

    right: -40px;
    bottom: -40px;

    width: 110px;
    height: 110px;

    border-radius: 50%;

    background:
        rgba(0,113,188,.035);

    transition:
        transform .5s ease;
}


.service_section_card:hover::after {

    transform:
        scale(1.5);
}


/* =========================================
   CTA
========================================= */

.service_section_cta {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-top: 45px;

    padding:
        22px 25px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f2f9fc
        );

    border:
        1px solid
        rgba(0,113,188,.10);

    border-radius: 15px;

    box-shadow:
        0 8px 25px
        rgba(0,45,75,.05);

    opacity: 0;

    transform:
        translateY(30px);

    transition:
        all .7s ease;
}


.service_section_cta.is-visible {

    opacity: 1;

    transform:
        translateY(0);
}


.service_cta_content {

    display: flex;

    align-items: center;

    gap: 15px;
}


.service_cta_icon {

    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--main-color),
            var(--hover-color)
        );

    border-radius: 14px;

    font-size: 19px;

    animation:
        ctaIconPulse 2.5s ease-in-out infinite;
}


@keyframes ctaIconPulse {

    0%,100% {
        box-shadow:
            0 0 0 0
            rgba(0,174,239,.25);
    }

    50% {
        box-shadow:
            0 0 0 10px
            rgba(0,174,239,0);
    }

}


.service_cta_content span {

    display: block;

    margin-bottom: 3px;

    color: #78838a;

    font-size: 10px;
}


.service_cta_content strong {

    display: block;

    color: #181818;

    font-size: 15px;
}


.service_cta_button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding:
        12px 19px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--main-color),
            var(--hover-color)
        );

    border-radius: 7px;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 8px 20px
        rgba(0,113,188,.18);

    transition:
        all .35s ease;
}


.service_cta_button:hover {

    color: #ffffff;

    transform:
        translateY(-3px);

    box-shadow:
        0 13px 28px
        rgba(0,113,188,.25);
}


.service_cta_button i {

    font-size: 15px;

    transition:
        transform .3s ease;
}


.service_cta_button:hover i {

    transform:
        scale(1.15)
        rotate(-5deg);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .service_section {

        padding:
            75px 0 85px;
    }


    .service_section_grid {

        grid-template-columns:
            repeat(2, minmax(0,1fr));

        gap: 20px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .service_section {

        padding:
            65px 0 70px;
    }


    .service_section_container {

        padding:
            0 15px;
    }


    .service_section_heading {

        margin-bottom: 35px;
    }


    .service_section_title {

        font-size: 32px;
    }


    .service_section_description {

        font-size: 12px;

        line-height: 1.7;
    }


    .service_section_grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }


    .service_section_card {

        min-height: auto;

        padding: 22px;
    }


    .service_section_content p {

        min-height: auto;
    }


    .service_section_cta {

        flex-direction: column;

        align-items: stretch;

        gap: 18px;
    }


    .service_cta_button {

        width: 100%;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .service_section {

        padding:
            55px 0 65px;
    }


    .service_section_container {

        padding:
            0 12px;
    }


    .service_section_title {

        font-size: 28px;
    }


    .service_section_subtitle {

        font-size: 14px;
    }


    .service_section_card {

        padding: 20px;

        border-radius: 14px;
    }


    .service_section_icon {

        width: 55px;
        height: 55px;

        font-size: 20px;

        border-radius: 14px;
    }


    .service_section_number {

        font-size: 32px;
    }


    .service_section_content h3 {

        font-size: 18px;
    }


    .service_section_content p {

        font-size: 11px;
    }


    .service_section_cta {

        padding:
            18px;
    }


    .service_cta_icon {

        width: 45px;
        height: 45px;

        font-size: 16px;
    }


    .service_cta_content strong {

        font-size: 13px;
    }

}


/* =========================================
   EXTRA SMALL
========================================= */

@media (max-width: 350px) {

    .service_section_title {

        font-size: 25px;
    }


    .service_cta_content {

        align-items: flex-start;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .service_section *,
    .service_section *::before,
    .service_section *::after {

        animation: none !important;

        transition: none !important;
    }

}
/* service section end  */
/* why chose us section start  */
/* =========================================
   WHY CHOOSE US SECTION START
========================================= */

.why_choose_section {
    position: relative;

    width: 100%;

    padding: 95px 0 105px;

    overflow: hidden;

    background: #ffffff;
}


/* =========================================
   BACKGROUND SHAPES
========================================= */

.why_choose_bg_shape {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: 0;
}


.why_choose_bg_shape_one {
    width: 420px;
    height: 420px;

    left: -250px;
    top: 80px;

    background:
        radial-gradient(
            circle,
            rgba(0,174,239,.08),
            transparent 70%
        );

    animation:
        whyChooseFloatOne 9s ease-in-out infinite;
}


.why_choose_bg_shape_two {
    width: 380px;
    height: 380px;

    right: -220px;
    bottom: 30px;

    background:
        radial-gradient(
            circle,
            rgba(0,113,188,.07),
            transparent 70%
        );

    animation:
        whyChooseFloatTwo 10s ease-in-out infinite;
}


@keyframes whyChooseFloatOne {

    0%,100% {
        transform:
            translate(0,0);
    }

    50% {
        transform:
            translate(30px,-25px);
    }

}


@keyframes whyChooseFloatTwo {

    0%,100% {
        transform:
            translate(0,0);
    }

    50% {
        transform:
            translate(-25px,30px);
    }

}


/* =========================================
   CONTAINER
========================================= */

.why_choose_container {

    position: relative;

    width: 100%;

    max-width: 1250px;

    margin: 0 auto;

    padding: 0 25px;

    z-index: 2;
}


/* =========================================
   ROW
========================================= */

.why_choose_row {

    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    align-items: center;

    gap: 65px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.why_choose_content_col {
    opacity: 0;

    transform:
        translateX(-45px);

    animation:
        whyChooseContentIn .9s ease forwards;
}


@keyframes whyChooseContentIn {

    to {
        opacity: 1;

        transform:
            translateX(0);
    }

}


.why_choose_subtitle {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 13px;

    color: #54a83f;

    font-family:
        Georgia,
        serif;

    font-size: 17px;

    font-style: italic;
}


.why_choose_subtitle span {

    color:
        var(--hover-color);

    animation:
        whyChooseStar 2s ease-in-out infinite;
}


@keyframes whyChooseStar {

    0%,100% {
        transform:
            scale(1)
            rotate(0);
    }

    50% {
        transform:
            scale(1.3)
            rotate(15deg);
    }

}


.why_choose_title {

    max-width: 520px;

    margin: 0;

    color: #111111;

    font-size:
        clamp(
            35px,
            4vw,
            50px
        );

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1.5px;
}


.why_choose_title span {

    display: block;

    color:
        var(--main-color);

    position: relative;

    width: fit-content;
}


.why_choose_title span::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 100%;

    height: 3px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--main-color),
            var(--hover-color)
        );

    transform:
        scaleX(0);

    transform-origin:
        left;

    animation:
        whyChooseUnderline 1s .7s ease forwards;
}


@keyframes whyChooseUnderline {

    to {
        transform:
            scaleX(1);
    }

}


.why_choose_description {

    max-width: 500px;

    margin:
        20px 0 25px;

    color: #758189;

    font-size: 13px;

    line-height: 1.85;
}


/* =========================================
   TRUST LIST
========================================= */

.why_choose_trust_list {

    display: flex;

    flex-direction: column;

    gap: 16px;

    margin-bottom: 28px;
}


.why_choose_trust_item {

    display: flex;

    align-items: center;

    gap: 12px;
}


.why_choose_trust_icon {

    flex-shrink: 0;

    color:
        #55a940;

    font-size: 18px;

    transition:
        transform .3s ease;
}


.why_choose_trust_item:hover
.why_choose_trust_icon {

    transform:
        scale(1.15);
}


.why_choose_trust_item strong {

    display: block;

    margin-bottom: 2px;

    color: #1a1a1a;

    font-size: 12px;

    font-weight: 750;
}


.why_choose_trust_item span {

    display: block;

    color: #8a949a;

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================
   MAIN BUTTON
========================================= */

.why_choose_button {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding:
        12px 18px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--main-color),
            var(--hover-color)
        );

    border-radius: 7px;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 8px 20px
        rgba(0,113,188,.18);

    transition:
        all .35s ease;
}


.why_choose_button span {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    color:
        var(--main-color);

    background: #ffffff;

    border-radius: 50%;

    transition:
        transform .35s ease;
}


.why_choose_button:hover {

    color: #ffffff;

    transform:
        translateY(-3px);

    box-shadow:
        0 14px 30px
        rgba(0,113,188,.25);
}


.why_choose_button:hover span {

    transform:
        translateX(4px);
}


/* =========================================
   FEATURES GRID
========================================= */

.why_choose_features_col {

    opacity: 0;

    transform:
        translateX(45px);

    animation:
        whyChooseFeaturesIn .9s .15s ease forwards;
}


@keyframes whyChooseFeaturesIn {

    to {
        opacity: 1;

        transform:
            translateX(0);
    }

}


.why_choose_features_grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 18px;
}


/* =========================================
   FEATURE CARD
========================================= */

.why_choose_feature_card {

    position: relative;

    min-height: 210px;

    padding: 22px;

    overflow: hidden;

    background:
        #ffffff;

    border:
        1px solid #e8eff2;

    border-radius: 15px;

    box-shadow:
        0 8px 25px
        rgba(0,45,75,.055);

    opacity: 0;

    transform:
        translateY(35px)
        scale(.96);

    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.2,.8,.2,1),
        box-shadow .4s ease,
        border-color .4s ease;
}


.why_choose_feature_card.is-visible {

    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}


.why_choose_feature_card::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--main-color),
            var(--hover-color)
        );

    transform:
        scaleX(0);

    transform-origin:
        left;

    transition:
        transform .45s ease;
}


.why_choose_feature_card:hover::before {

    transform:
        scaleX(1);
}


.why_choose_feature_card:hover {

    border-color:
        rgba(0,113,188,.18);

    box-shadow:
        0 20px 45px
        rgba(0,55,90,.12);

    transform:
        translateY(-7px);
}


/* =========================================
   FEATURE ICON
========================================= */

.why_choose_feature_icon {

    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    color:
        var(--main-color);

    background:
        linear-gradient(
            135deg,
            rgba(0,113,188,.09),
            rgba(0,174,239,.07)
        );

    border-radius: 14px;

    font-size: 20px;

    transition:
        all .4s ease;
}


.why_choose_feature_card:hover
.why_choose_feature_icon {

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--main-color),
            var(--hover-color)
        );

    transform:
        rotate(-6deg)
        scale(1.08);

    box-shadow:
        0 10px 22px
        rgba(0,113,188,.2);
}


/* =========================================
   FEATURE NUMBER
========================================= */

.why_choose_feature_number {

    position: absolute;

    top: 18px;
    right: 20px;

    color:
        rgba(0,113,188,.09);

    font-size: 35px;

    font-weight: 800;

    line-height: 1;

    transition:
        color .3s ease;
}


.why_choose_feature_card:hover
.why_choose_feature_number {

    color:
        rgba(0,113,188,.17);
}


/* =========================================
   FEATURE CONTENT
========================================= */

.why_choose_feature_card h3 {

    margin:
        0 0 8px;

    color: #171717;

    font-size: 17px;

    line-height: 1.4;

    font-weight: 750;

    transition:
        color .3s ease;
}


.why_choose_feature_card:hover h3 {

    color:
        var(--main-color);
}


.why_choose_feature_card p {

    margin: 0;

    color: #7b858c;

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================
   CARD DECORATION
========================================= */

.why_choose_feature_card::after {

    content: "";

    position: absolute;

    right: -45px;
    bottom: -45px;

    width: 110px;
    height: 110px;

    border-radius: 50%;

    background:
        rgba(0,113,188,.035);

    transition:
        transform .5s ease;
}


.why_choose_feature_card:hover::after {

    transform:
        scale(1.5);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .why_choose_section {

        padding:
            75px 0 85px;
    }


    .why_choose_row {

        grid-template-columns:
            1fr;

        gap: 45px;
    }


    .why_choose_content_col {

        text-align: center;
    }


    .why_choose_title,
    .why_choose_description {

        margin-left: auto;
        margin-right: auto;
    }


    .why_choose_title span {

        margin-left: auto;
        margin-right: auto;
    }


    .why_choose_trust_list {

        max-width: 550px;

        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }


    .why_choose_button {

        margin-top: 2px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .why_choose_section {

        padding:
            65px 0 70px;
    }


    .why_choose_container {

        padding:
            0 15px;
    }


    .why_choose_title {

        font-size: 32px;
    }


    .why_choose_description {

        font-size: 12px;

        line-height: 1.75;
    }


    .why_choose_features_grid {

        grid-template-columns:
            1fr;

        gap: 16px;
    }


    .why_choose_feature_card {

        min-height: auto;

        padding: 21px;
    }


    .why_choose_feature_card p {

        font-size: 11px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .why_choose_section {

        padding:
            55px 0 65px;
    }


    .why_choose_container {

        padding:
            0 12px;
    }


    .why_choose_subtitle {

        font-size: 14px;
    }


    .why_choose_title {

        font-size: 28px;

        letter-spacing:
            -.7px;
    }


    .why_choose_description {

        font-size: 11px;
    }


    .why_choose_trust_item {

        align-items: flex-start;
    }


    .why_choose_feature_card {

        padding: 19px;

        border-radius: 13px;
    }


    .why_choose_feature_icon {

        width: 50px;
        height: 50px;

        font-size: 18px;
    }


    .why_choose_feature_card h3 {

        font-size: 16px;
    }


    .why_choose_feature_number {

        font-size: 30px;
    }

}


/* =========================================
   EXTRA SMALL
========================================= */

@media (max-width: 350px) {

    .why_choose_title {

        font-size: 25px;
    }


    .why_choose_button {

        width: 100%;

        justify-content: center;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .why_choose_section *,
    .why_choose_section *::before,
    .why_choose_section *::after {

        animation: none !important;

        transition: none !important;
    }

}
/* why chose us section end  */
/* how it work section start  */
/* =========================================
   HOW IT WORKS SECTION START
========================================= */

.how_it_works_section {

    position: relative;

    width: 100%;

    padding: 95px 0 100px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #f7fbfd 0%,
            #ffffff 100%
        );
}


/* =========================================
   BACKGROUND SHAPES
========================================= */

.how_it_works_bg_shape {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: 0;
}


.how_it_works_bg_shape_one {

    width: 400px;
    height: 400px;

    top: 80px;
    left: -220px;

    background:
        radial-gradient(
            circle,
            rgba(0,174,239,.08),
            transparent 70%
        );

    animation:
        howWorksFloatOne 9s ease-in-out infinite;
}


.how_it_works_bg_shape_two {

    width: 380px;
    height: 380px;

    right: -220px;
    bottom: 50px;

    background:
        radial-gradient(
            circle,
            rgba(0,113,188,.07),
            transparent 70%
        );

    animation:
        howWorksFloatTwo 10s ease-in-out infinite;
}


@keyframes howWorksFloatOne {

    0%,100% {
        transform:
            translate(0,0);
    }

    50% {
        transform:
            translate(30px,-25px);
    }

}


@keyframes howWorksFloatTwo {

    0%,100% {
        transform:
            translate(0,0);
    }

    50% {
        transform:
            translate(-25px,25px);
    }

}


/* =========================================
   CONTAINER
========================================= */

.how_it_works_container {

    position: relative;

    width: 100%;

    max-width: 1250px;

    margin: 0 auto;

    padding: 0 25px;

    z-index: 2;
}


/* =========================================
   HEADING
========================================= */

.how_it_works_heading {

    margin-bottom: 60px;

    text-align: center;
}


.how_it_works_subtitle {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 13px;

    color: #54a83f;

    font-family:
        Georgia,
        serif;

    font-size: 17px;

    font-style: italic;

    opacity: 0;

    transform:
        translateY(15px);

    animation:
        howWorksHeadingIn .8s ease forwards;
}


.how_it_works_subtitle span {

    color:
        var(--hover-color);

    animation:
        howWorksStar 2s ease-in-out infinite;
}


@keyframes howWorksHeadingIn {

    to {

        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes howWorksStar {

    0%,100% {
        transform:
            scale(1)
            rotate(0);
    }

    50% {
        transform:
            scale(1.3)
            rotate(15deg);
    }

}


.how_it_works_title {

    margin: 0;

    color: #111111;

    font-size:
        clamp(
            34px,
            4vw,
            50px
        );

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1.5px;

    opacity: 0;

    transform:
        translateY(20px);

    animation:
        howWorksTitleIn .8s .15s ease forwards;
}


.how_it_works_title span {

    display: inline-block;

    color:
        var(--main-color);

    position: relative;
}


.how_it_works_title span::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 100%;

    height: 3px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--main-color),
            var(--hover-color)
        );

    transform:
        scaleX(0);

    transform-origin:
        left;

    animation:
        howWorksUnderline 1s .8s ease forwards;
}


@keyframes howWorksTitleIn {

    to {

        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes howWorksUnderline {

    to {

        transform:
            scaleX(1);
    }

}


.how_it_works_description {

    max-width: 650px;

    margin:
        18px auto 0;

    color: #758189;

    font-size: 13px;

    line-height: 1.8;

    opacity: 0;

    animation:
        howWorksDescriptionIn .8s .3s ease forwards;
}


@keyframes howWorksDescriptionIn {

    from {

        opacity: 0;

        transform:
            translateY(10px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================
   HEADING LINE
========================================= */

.how_it_works_heading_line {

    width: 80px;

    height: 3px;

    margin:
        20px auto 0;

    overflow: hidden;

    border-radius: 20px;

    background:
        #e1eaee;
}


.how_it_works_heading_line span {

    display: block;

    width: 35px;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--main-color),
            var(--hover-color)
        );

    animation:
        howWorksLineMove 2s ease-in-out infinite;
}


@keyframes howWorksLineMove {

    0% {
        transform:
            translateX(-40px);
    }

    50% {
        transform:
            translateX(80px);
    }

    100% {
        transform:
            translateX(-40px);
    }

}


/* =========================================
   STEPS WRAPPER
========================================= */

.how_it_works_steps_wrapper {

    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0,1fr));

    gap: 25px;

    padding-top: 20px;
}


/* =========================================
   TIMELINE
========================================= */

.how_it_works_timeline {

    position: absolute;

    top: 64px;

    left: 10%;

    width: 80%;

    height: 3px;

    background:
        #dce8ed;

    border-radius: 20px;

    z-index: 0;

    overflow: visible;
}


.how_it_works_timeline_progress {

    width: 0%;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--main-color),
            var(--hover-color)
        );

    transition:
        width 2.5s cubic-bezier(.2,.8,.2,1);
}


.how_it_works_timeline.active
.how_it_works_timeline_progress {

    width: 100%;
}


/* =========================================
   AIRPLANE
========================================= */

.how_it_works_plane {

    position: absolute;

    top: -12px;

    left: 0%;

    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--main-color),
            var(--hover-color)
        );

    border-radius: 50%;

    font-size: 12px;

    box-shadow:
        0 6px 15px
        rgba(0,113,188,.22);

    opacity: 0;

    transition:
        left 2.5s cubic-bezier(.2,.8,.2,1),
        opacity .3s ease;

    z-index: 5;
}


.how_it_works_timeline.active
.how_it_works_plane {

    left: calc(100% - 30px);

    opacity: 1;
}


.how_it_works_plane i {

    animation:
        howWorksPlane 1s ease-in-out infinite;
}


@keyframes howWorksPlane {

    0%,100% {
        transform:
            translateY(0)
            rotate(0);
    }

    50% {
        transform:
            translateY(-2px)
            rotate(-5deg);
    }

}


/* =========================================
   STEP
========================================= */

.how_it_works_step {

    position: relative;

    z-index: 2;

    text-align: center;

    opacity: 0;

    transform:
        translateY(45px)
        scale(.96);

    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.2,.8,.2,1);
}


.how_it_works_step.is-visible {

    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}


/* =========================================
   STEP NUMBER
========================================= */

.how_it_works_step_number {

    position: absolute;

    top: -5px;

    right: 12px;

    color:
        rgba(0,113,188,.08);

    font-size: 45px;

    font-weight: 800;

    line-height: 1;

    transition:
        color .3s ease;
}


.how_it_works_step:hover
.how_it_works_step_number {

    color:
        rgba(0,113,188,.18);
}


/* =========================================
   STEP ICON
========================================= */

.how_it_works_step_icon {

    position: relative;

    width: 88px;
    height: 88px;

    margin:
        0 auto 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        var(--main-color);

    background:
        #ffffff;

    border:
        2px solid
        rgba(0,113,188,.15);

    border-radius: 50%;

    font-size: 27px;

    box-shadow:
        0 10px 30px
        rgba(0,45,75,.09);

    transition:
        all .4s ease;
}


.how_it_works_step_icon::before {

    content: "";

    position: absolute;

    inset: -7px;

    border:
        1px dashed
        rgba(0,174,239,.35);

    border-radius: 50%;

    opacity: 0;

    transform:
        scale(.8);

    transition:
        all .4s ease;
}


.how_it_works_step_icon::after {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--main-color),
            var(--hover-color)
        );

    opacity: 0;

    transform:
        scale(.5);

    transition:
        all .4s ease;

    z-index: -1;
}


.how_it_works_step:hover
.how_it_works_step_icon {

    color: #ffffff;

    border-color:
        transparent;

    transform:
        translateY(-5px)
        rotate(-5deg);

    box-shadow:
        0 15px 35px
        rgba(0,113,188,.20);
}


.how_it_works_step:hover
.how_it_works_step_icon::before {

    opacity: 1;

    transform:
        scale(1);

    animation:
        howWorksIconRing 2s linear infinite;
}


.how_it_works_step:hover
.how_it_works_step_icon::after {

    opacity: 1;

    transform:
        scale(1);
}


@keyframes howWorksIconRing {

    from {
        transform:
            scale(1)
            rotate(0);
    }

    to {
        transform:
            scale(1)
            rotate(360deg);
    }

}


/* =========================================
   STEP CONTENT
========================================= */

.how_it_works_step_content {

    padding:
        0 10px;
}


.how_it_works_step_label {

    display: block;

    margin-bottom: 8px;

    color:
        var(--main-color);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


.how_it_works_step_content h3 {

    margin:
        0 0 10px;

    color: #181818;

    font-size: 17px;

    line-height: 1.4;

    font-weight: 750;

    transition:
        color .3s ease;
}


.how_it_works_step:hover
.how_it_works_step_content h3 {

    color:
        var(--main-color);
}


.how_it_works_step_content p {

    max-width: 230px;

    margin:
        0 auto;

    color: #7c878d;

    font-size: 10px;

    line-height: 1.75;
}


/* =========================================
   BOTTOM CTA
========================================= */

.how_it_works_cta {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 60px;

    padding:
        20px 24px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f2f9fc
        );

    border:
        1px solid
        rgba(0,113,188,.10);

    border-radius: 14px;

    box-shadow:
        0 8px 25px
        rgba(0,45,75,.05);

    opacity: 0;

    transform:
        translateY(25px);

    transition:
        all .7s ease;
}


.how_it_works_cta.is-visible {

    opacity: 1;

    transform:
        translateY(0);
}


.how_it_works_cta_icon {

    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--main-color),
            var(--hover-color)
        );

    border-radius: 14px;

    font-size: 18px;

    animation:
        howWorksCtaPulse 2.5s ease-in-out infinite;
}


@keyframes howWorksCtaPulse {

    0%,100% {
        box-shadow:
            0 0 0 0
            rgba(0,174,239,.25);
    }

    50% {
        box-shadow:
            0 0 0 10px
            rgba(0,174,239,0);
    }

}


.how_it_works_cta_text {

    flex: 1;
}


.how_it_works_cta_text span {

    display: block;

    margin-bottom: 3px;

    color: #7b858c;

    font-size: 10px;
}


.how_it_works_cta_text strong {

    display: block;

    color: #181818;

    font-size: 15px;
}


.how_it_works_cta_button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding:
        12px 19px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--main-color),
            var(--hover-color)
        );

    border-radius: 7px;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 8px 20px
        rgba(0,113,188,.18);

    transition:
        all .35s ease;
}


.how_it_works_cta_button:hover {

    color: #ffffff;

    transform:
        translateY(-3px);

    box-shadow:
        0 13px 28px
        rgba(0,113,188,.25);
}


.how_it_works_cta_button i {

    transition:
        transform .3s ease;
}


.how_it_works_cta_button:hover i {

    transform:
        translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .how_it_works_section {

        padding:
            75px 0 85px;
    }


    .how_it_works_steps_wrapper {

        grid-template-columns:
            repeat(2, minmax(0,1fr));

        gap:
            50px 30px;

        padding-top: 10px;
    }


    .how_it_works_timeline {

        display: none;
    }


    .how_it_works_step_icon {

        margin-bottom: 20px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .how_it_works_section {

        padding:
            65px 0 70px;
    }


    .how_it_works_container {

        padding:
            0 15px;
    }


    .how_it_works_heading {

        margin-bottom: 40px;
    }


    .how_it_works_title {

        font-size: 32px;
    }


    .how_it_works_description {

        font-size: 12px;

        line-height: 1.7;
    }


    .how_it_works_steps_wrapper {

        display: flex;

        flex-direction: column;

        gap: 35px;

        padding-left: 30px;
    }


    /* Vertical Timeline */

    .how_it_works_steps_wrapper::before {

        content: "";

        position: absolute;

        top: 15px;
        bottom: 15px;

        left: 39px;

        width: 2px;

        background:
            linear-gradient(
                180deg,
                var(--main-color),
                var(--hover-color)
            );

        opacity: .2;
    }


    .how_it_works_step {

        display: grid;

        grid-template-columns:
            58px 1fr;

        column-gap: 18px;

        text-align: left;

        align-items: start;
    }


    .how_it_works_step_icon {

        grid-column: 1;

        grid-row: 1 / span 2;

        width: 58px;
        height: 58px;

        margin: 0;

        font-size: 18px;

        border-width: 2px;

        z-index: 3;
    }


    .how_it_works_step_content {

        grid-column: 2;

        grid-row: 1 / span 2;

        padding:
            2px 0 0;
    }


    .how_it_works_step_number {

        display: none;
    }


    .how_it_works_step_content h3 {

        font-size: 17px;
    }


    .how_it_works_step_content p {

        max-width: none;

        margin: 0;

        font-size: 11px;

        line-height: 1.7;
    }


    .how_it_works_step_label {

        margin-bottom: 5px;
    }


    .how_it_works_cta {

        flex-direction: column;

        align-items: stretch;

        margin-top: 45px;
    }


    .how_it_works_cta_button {

        width: 100%;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .how_it_works_section {

        padding:
            55px 0 65px;
    }


    .how_it_works_container {

        padding:
            0 12px;
    }


    .how_it_works_subtitle {

        font-size: 14px;
    }


    .how_it_works_title {

        font-size: 28px;

        letter-spacing:
            -.7px;
    }


    .how_it_works_description {

        font-size: 11px;
    }


    .how_it_works_steps_wrapper {

        padding-left: 20px;

        gap: 30px;
    }


    .how_it_works_steps_wrapper::before {

        left: 29px;
    }


    .how_it_works_step {

        grid-template-columns:
            48px 1fr;

        column-gap: 14px;
    }


    .how_it_works_step_icon {

        width: 48px;
        height: 48px;

        font-size: 16px;
    }


    .how_it_works_step_content h3 {

        font-size: 15px;
    }


    .how_it_works_step_content p {

        font-size: 10px;
    }


    .how_it_works_cta {

        padding:
            18px;
    }


    .how_it_works_cta_icon {

        width: 45px;
        height: 45px;

        font-size: 16px;
    }


    .how_it_works_cta_text strong {

        font-size: 13px;
    }

}


/* =========================================
   EXTRA SMALL
========================================= */

@media (max-width: 350px) {

    .how_it_works_title {

        font-size: 25px;
    }


    .how_it_works_steps_wrapper {

        padding-left: 10px;
    }


    .how_it_works_steps_wrapper::before {

        left: 19px;
    }


    .how_it_works_step {

        grid-template-columns:
            40px 1fr;

        column-gap: 12px;
    }


    .how_it_works_step_icon {

        width: 40px;
        height: 40px;

        font-size: 14px;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .how_it_works_section *,
    .how_it_works_section *::before,
    .how_it_works_section *::after {

        animation: none !important;

        transition: none !important;
    }

}

/* =========================================
   HOW IT WORKS SECTION END
========================================= */
/* how it work section end  */
/* popular destination section start  */
/* =========================================
   POPULAR DESTINATION SECTION START
========================================= */

.popular_destination_section {

    position: relative;

    width: 100%;

    padding: 95px 0 100px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7fbfd 100%
        );
}


/* =========================================
   BACKGROUND SHAPES
========================================= */

.popular_destination_bg_shape {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: 0;
}


.popular_destination_bg_shape_one {

    width: 430px;
    height: 430px;

    left: -250px;
    top: 100px;

    background:
        radial-gradient(
            circle,
            rgba(0,174,239,.07),
            transparent 70%
        );

    animation:
        popularDestinationFloatOne
        9s ease-in-out infinite;
}


.popular_destination_bg_shape_two {

    width: 400px;
    height: 400px;

    right: -230px;
    bottom: 50px;

    background:
        radial-gradient(
            circle,
            rgba(0,113,188,.07),
            transparent 70%
        );

    animation:
        popularDestinationFloatTwo
        10s ease-in-out infinite;
}


@keyframes popularDestinationFloatOne {

    0%,100% {
        transform:
            translate(0,0);
    }

    50% {
        transform:
            translate(30px,-25px);
    }

}


@keyframes popularDestinationFloatTwo {

    0%,100% {
        transform:
            translate(0,0);
    }

    50% {
        transform:
            translate(-25px,30px);
    }

}


/* =========================================
   CONTAINER
========================================= */

.popular_destination_container {

    position: relative;

    width: 100%;

    max-width: 1250px;

    margin: 0 auto;

    padding: 0 25px;

    z-index: 2;
}


/* =========================================
   HEADING
========================================= */

.popular_destination_heading {

    margin-bottom: 50px;

    text-align: center;
}


.popular_destination_subtitle {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 13px;

    color: #54a83f;

    font-family:
        Georgia,
        serif;

    font-size: 17px;

    font-style: italic;

    opacity: 0;

    transform:
        translateY(15px);

    animation:
        popularDestinationHeadingIn
        .8s ease forwards;
}


.popular_destination_subtitle span {

    color:
        var(--hover-color);

    animation:
        popularDestinationStar
        2s ease-in-out infinite;
}


@keyframes popularDestinationHeadingIn {

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes popularDestinationStar {

    0%,100% {
        transform:
            scale(1)
            rotate(0);
    }

    50% {
        transform:
            scale(1.3)
            rotate(15deg);
    }

}


.popular_destination_title {

    margin: 0;

    color: #111111;

    font-size:
        clamp(
            34px,
            4vw,
            50px
        );

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1.5px;

    opacity: 0;

    transform:
        translateY(20px);

    animation:
        popularDestinationTitleIn
        .8s .15s ease forwards;
}


.popular_destination_title span {

    color:
        var(--main-color);

    position: relative;
}


.popular_destination_title span::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 100%;

    height: 3px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--main-color),
            var(--hover-color)
        );

    transform:
        scaleX(0);

    transform-origin:
        left;

    animation:
        popularDestinationUnderline
        1s .8s ease forwards;
}


@keyframes popularDestinationTitleIn {

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes popularDestinationUnderline {

    to {
        transform:
            scaleX(1);
    }

}


.popular_destination_description {

    max-width: 650px;

    margin:
        18px auto 0;

    color: #758189;

    font-size: 13px;

    line-height: 1.8;

    opacity: 0;

    animation:
        popularDestinationDescriptionIn
        .8s .3s ease forwards;
}


@keyframes popularDestinationDescriptionIn {

    from {
        opacity: 0;

        transform:
            translateY(10px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================
   HEADING LINE
========================================= */

.popular_destination_heading_line {

    width: 80px;

    height: 3px;

    margin:
        20px auto 0;

    overflow: hidden;

    border-radius: 20px;

    background:
        #e1eaee;
}


.popular_destination_heading_line span {

    display: block;

    width: 35px;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--main-color),
            var(--hover-color)
        );

    animation:
        popularDestinationLine
        2s ease-in-out infinite;
}


@keyframes popularDestinationLine {

    0% {
        transform:
            translateX(-40px);
    }

    50% {
        transform:
            translateX(80px);
    }

    100% {
        transform:
            translateX(-40px);
    }

}


/* =========================================
   GRID
========================================= */

.popular_destination_grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0,1fr));

    gap: 20px;
}


/* =========================================
   CARD
========================================= */

.popular_destination_card {

    position: relative;

    overflow: hidden;

    background: #ffffff;

    border:
        1px solid #e6eef1;

    border-radius: 15px;

    box-shadow:
        0 8px 25px
        rgba(0,45,75,.06);

    opacity: 0;

    transform:
        translateY(45px)
        scale(.96);

    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.2,.8,.2,1),
        box-shadow .4s ease,
        border-color .4s ease;
}


.popular_destination_card.is-visible {

    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}


.popular_destination_card:hover {

    border-color:
        rgba(0,113,188,.18);

    box-shadow:
        0 22px 45px
        rgba(0,55,90,.14);

    transform:
        translateY(-8px);
}


/* =========================================
   IMAGE
========================================= */

.popular_destination_image_box {

    position: relative;

    height: 245px;

    overflow: hidden;

    background: #eaf1f4;
}


.popular_destination_image {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1s
        cubic-bezier(.2,.8,.2,1),
        filter .5s ease;
}


.popular_destination_card:hover
.popular_destination_image {

    transform:
        scale(1.10);

    filter:
        saturate(1.08)
        contrast(1.02);
}


/* =========================================
   OVERLAY
========================================= */

.popular_destination_overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.03) 20%,
            rgba(0,0,0,.10) 45%,
            rgba(0,0,0,.62) 100%
        );

    z-index: 1;
}


/* =========================================
   IMAGE SHINE
========================================= */

.popular_destination_image_shine {

    position: absolute;

    top: 0;
    left: -130%;

    width: 70%;
    height: 100%;

    z-index: 4;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.28),
            transparent
        );

    transform:
        skewX(-20deg);

    pointer-events: none;
}


.popular_destination_card:hover
.popular_destination_image_shine {

    animation:
        popularDestinationShine
        .8s ease;
}


@keyframes popularDestinationShine {

    from {
        left: -130%;
    }

    to {
        left: 150%;
    }

}


/* =========================================
   COUNTRY CODE
========================================= */

.popular_destination_country_code {

    position: absolute;

    top: 13px;
    right: 13px;

    z-index: 5;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 39px;
    height: 39px;

    color: #ffffff;

    background:
        rgba(0,113,188,.88);

    border:
        1px solid
        rgba(255,255,255,.35);

    border-radius: 50%;

    font-size: 10px;

    font-weight: 800;

    backdrop-filter:
        blur(5px);

    transition:
        all .4s ease;
}


.popular_destination_card:hover
.popular_destination_country_code {

    background:
        var(--hover-color);

    transform:
        rotate(360deg)
        scale(1.08);
}


/* =========================================
   LOCATION
========================================= */

.popular_destination_location {

    position: absolute;

    left: 15px;
    bottom: 15px;

    z-index: 5;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding:
        7px 10px;

    color: #ffffff;

    background:
        rgba(0,0,0,.42);

    border-radius: 5px;

    font-size: 9px;

    font-weight: 600;

    backdrop-filter:
        blur(4px);

    transition:
        all .35s ease;
}


.popular_destination_location i {

    color:
        var(--hover-color);
}


.popular_destination_card:hover
.popular_destination_location {

    background:
        var(--main-color);

    transform:
        translateX(3px);
}


/* =========================================
   CONTENT
========================================= */

.popular_destination_content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    padding:
        16px 17px 17px;
}


.popular_destination_label {

    display: block;

    margin-bottom: 3px;

    color:
        #55a940;

    font-size: 8px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .6px;
}


.popular_destination_content h3 {

    margin:
        0 0 4px;

    color: #181818;

    font-size: 17px;

    line-height: 1.3;

    font-weight: 750;

    transition:
        color .3s ease;
}


.popular_destination_card:hover
.popular_destination_content h3 {

    color:
        var(--main-color);
}


.popular_destination_content p {

    margin: 0;

    color: #858f95;

    font-size: 9px;

    line-height: 1.5;
}


/* =========================================
   ARROW
========================================= */

.popular_destination_arrow {

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 37px;
    height: 37px;

    color: #ffffff;

    background:
        var(--main-color);

    border-radius: 50%;

    text-decoration: none;

    transition:
        all .4s ease;
}


.popular_destination_arrow i {

    font-size: 11px;

    transition:
        transform .3s ease;
}


.popular_destination_card:hover
.popular_destination_arrow {

    background:
        var(--hover-color);

    transform:
        scale(1.08);
}


.popular_destination_card:hover
.popular_destination_arrow i {

    transform:
        translateX(4px);
}


/* =========================================
   VIEW ALL
========================================= */

.popular_destination_view_all {

    margin-top: 42px;

    text-align: center;

    opacity: 0;

    transform:
        translateY(20px);

    transition:
        all .7s ease;
}


.popular_destination_view_all.is-visible {

    opacity: 1;

    transform:
        translateY(0);
}


.popular_destination_view_button {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding:
        12px 18px;

    color:
        var(--main-color);

    background:
        #ffffff;

    border:
        1px solid
        rgba(0,113,188,.15);

    border-radius: 7px;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 5px 18px
        rgba(0,45,75,.04);

    transition:
        all .35s ease;
}


.popular_destination_view_button > i {

    font-size: 15px;

    transition:
        transform .4s ease;
}


.popular_destination_view_button span {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 26px;
    height: 26px;

    color: #ffffff;

    background:
        var(--main-color);

    border-radius: 50%;

    transition:
        all .35s ease;
}


.popular_destination_view_button span i {

    font-size: 9px;

    transition:
        transform .3s ease;
}


.popular_destination_view_button:hover {

    color: #ffffff;

    background:
        var(--main-color);

    border-color:
        var(--main-color);

    transform:
        translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(0,113,188,.18);
}


.popular_destination_view_button:hover > i {

    transform:
        rotate(360deg);
}


.popular_destination_view_button:hover span {

    color:
        var(--main-color);

    background:
        #ffffff;
}


.popular_destination_view_button:hover span i {

    transform:
        translateX(3px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .popular_destination_section {

        padding:
            75px 0 85px;
    }


    .popular_destination_grid {

        grid-template-columns:
            repeat(2, minmax(0,1fr));

        gap: 20px;
    }


    .popular_destination_image_box {

        height: 260px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .popular_destination_section {

        padding:
            65px 0 70px;
    }


    .popular_destination_container {

        padding:
            0 15px;
    }


    .popular_destination_heading {

        margin-bottom: 35px;
    }


    .popular_destination_title {

        font-size: 32px;
    }


    .popular_destination_description {

        font-size: 12px;

        line-height: 1.7;
    }


    .popular_destination_grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }


    .popular_destination_image_box {

        height: 280px;
    }


    .popular_destination_content h3 {

        font-size: 18px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .popular_destination_section {

        padding:
            55px 0 65px;
    }


    .popular_destination_container {

        padding:
            0 12px;
    }


    .popular_destination_subtitle {

        font-size: 14px;
    }


    .popular_destination_title {

        font-size: 28px;

        letter-spacing:
            -.7px;
    }


    .popular_destination_description {

        font-size: 11px;
    }


    .popular_destination_image_box {

        height: 235px;
    }


    .popular_destination_content {

        padding:
            14px 14px 15px;
    }


    .popular_destination_content h3 {

        font-size: 16px;
    }


    .popular_destination_content p {

        font-size: 8px;
    }


    .popular_destination_arrow {

        width: 34px;
        height: 34px;
    }

}


/* =========================================
   EXTRA SMALL
========================================= */

@media (max-width: 350px) {

    .popular_destination_title {

        font-size: 25px;
    }


    .popular_destination_image_box {

        height: 210px;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .popular_destination_section *,
    .popular_destination_section *::before,
    .popular_destination_section *::after {

        animation: none !important;

        transition: none !important;
    }

}

/* =========================================
   POPULAR DESTINATION SECTION END
========================================= */
/* popular destination section end  */
/* faq section start */
/* =========================================
   FAQ SECTION START
========================================= */

.faq_section {

    position: relative;

    width: 100%;

    padding: 95px 0 100px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7fbfd 100%
        );
}


/* =========================================
   BACKGROUND SHAPES
========================================= */

.faq_bg_shape {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: 0;
}


.faq_bg_shape_one {

    width: 400px;
    height: 400px;

    left: -240px;
    top: 80px;

    background:
        radial-gradient(
            circle,
            rgba(0,174,239,.08),
            transparent 70%
        );

    animation:
        faqFloatOne
        9s ease-in-out infinite;
}


.faq_bg_shape_two {

    width: 360px;
    height: 360px;

    right: -220px;
    bottom: 40px;

    background:
        radial-gradient(
            circle,
            rgba(0,113,188,.07),
            transparent 70%
        );

    animation:
        faqFloatTwo
        10s ease-in-out infinite;
}


@keyframes faqFloatOne {

    0%,100% {
        transform:
            translate(0,0);
    }

    50% {
        transform:
            translate(30px,-25px);
    }

}


@keyframes faqFloatTwo {

    0%,100% {
        transform:
            translate(0,0);
    }

    50% {
        transform:
            translate(-25px,25px);
    }

}


/* =========================================
   CONTAINER
========================================= */

.faq_container {

    position: relative;

    width: 100%;

    max-width: 1150px;

    margin: 0 auto;

    padding: 0 25px;

    z-index: 2;
}


/* =========================================
   HEADING
========================================= */

.faq_heading {

    margin-bottom: 50px;

    text-align: center;
}


.faq_subtitle {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 13px;

    color: #54a83f;

    font-family:
        Georgia,
        serif;

    font-size: 17px;

    font-style: italic;

    opacity: 0;

    transform:
        translateY(15px);

    animation:
        faqHeadingIn
        .8s ease forwards;
}


.faq_subtitle i {

    color:
        var(--hover-color);

    animation:
        faqQuestionIcon
        2s ease-in-out infinite;
}


@keyframes faqHeadingIn {

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes faqQuestionIcon {

    0%,100% {
        transform:
            rotate(0)
            scale(1);
    }

    50% {
        transform:
            rotate(-10deg)
            scale(1.15);
    }

}


.faq_title {

    margin: 0;

    color: #111111;

    font-size:
        clamp(
            35px,
            4vw,
            50px
        );

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1.5px;

    opacity: 0;

    transform:
        translateY(20px);

    animation:
        faqTitleIn
        .8s .15s ease forwards;
}


.faq_title span {

    position: relative;

    color:
        var(--main-color);
}


.faq_title span::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 100%;

    height: 3px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--main-color),
            var(--hover-color)
        );

    transform:
        scaleX(0);

    transform-origin:
        left;

    animation:
        faqUnderline
        1s .8s ease forwards;
}


@keyframes faqTitleIn {

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes faqUnderline {

    to {
        transform:
            scaleX(1);
    }

}


.faq_description {

    max-width: 620px;

    margin:
        18px auto 0;

    color: #758189;

    font-size: 13px;

    line-height: 1.8;

    opacity: 0;

    animation:
        faqDescriptionIn
        .8s .3s ease forwards;
}


@keyframes faqDescriptionIn {

    from {
        opacity: 0;

        transform:
            translateY(10px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================
   HEADING LINE
========================================= */

.faq_heading_line {

    width: 80px;

    height: 3px;

    margin:
        20px auto 0;

    overflow: hidden;

    border-radius: 20px;

    background:
        #e1eaee;
}


.faq_heading_line span {

    display: block;

    width: 35px;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--main-color),
            var(--hover-color)
        );

    animation:
        faqLineMove
        2s ease-in-out infinite;
}


@keyframes faqLineMove {

    0% {
        transform:
            translateX(-40px);
    }

    50% {
        transform:
            translateX(80px);
    }

    100% {
        transform:
            translateX(-40px);
    }

}


/* =========================================
   FAQ CONTENT
========================================= */

.faq_content {

    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 20px;

    align-items: start;
}


/* =========================================
   FAQ ITEM
========================================= */

.faq_item {

    position: relative;

    margin-bottom: 14px;

    overflow: hidden;

    background:
        rgba(255,255,255,.9);

    border:
        1px solid #e5edf0;

    border-radius: 12px;

    box-shadow:
        0 6px 22px
        rgba(0,45,75,.045);

    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity .6s ease,
        transform .6s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}


.faq_item.faq_visible {

    opacity: 1;

    transform:
        translateY(0);
}


.faq_item:hover {

    border-color:
        rgba(0,113,188,.18);

    box-shadow:
        0 14px 32px
        rgba(0,45,75,.08);
}


/* =========================================
   QUESTION
========================================= */

.faq_question {

    position: relative;

    width: 100%;

    display: grid;

    grid-template-columns:
        42px 1fr 35px;

    align-items: center;

    gap: 10px;

    padding:
        18px 17px;

    border: 0;

    outline: none;

    cursor: pointer;

    text-align: left;

    background:
        transparent;

    color: #171717;

    font-family: inherit;
}


/* =========================================
   NUMBER
========================================= */

.faq_question_number {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 34px;
    height: 34px;

    color:
        var(--main-color);

    background:
        rgba(0,113,188,.07);

    border-radius: 8px;

    font-size: 10px;

    font-weight: 800;

    transition:
        all .35s ease;
}


.faq_item:hover
.faq_question_number,
.faq_item.active
.faq_question_number {

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--main-color),
            var(--hover-color)
        );

    transform:
        rotate(-4deg);
}


/* =========================================
   QUESTION TEXT
========================================= */

.faq_question_text {

    color: #1b1b1b;

    font-size: 12px;

    line-height: 1.5;

    font-weight: 700;

    transition:
        color .3s ease;
}


.faq_item:hover
.faq_question_text,
.faq_item.active
.faq_question_text {

    color:
        var(--main-color);
}


/* =========================================
   TOGGLE
========================================= */

.faq_toggle {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 31px;
    height: 31px;

    color:
        var(--main-color);

    background:
        #f1f8fb;

    border-radius: 50%;

    transition:
        all .4s ease;
}


.faq_toggle i {

    font-size: 10px;

    transition:
        transform .4s ease;
}


.faq_item.active
.faq_toggle {

    color: #ffffff;

    background:
        var(--main-color);

    transform:
        rotate(180deg);
}


.faq_item.active
.faq_toggle i {

    transform:
        rotate(45deg);
}


/* =========================================
   ANSWER
========================================= */

.faq_answer {

    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows
        .45s cubic-bezier(.2,.8,.2,1);
}


.faq_item.active
.faq_answer {

    grid-template-rows: 1fr;
}


.faq_answer_inner {

    min-height: 0;

    overflow: hidden;
}


.faq_answer_inner p {

    margin: 0;

    padding:
        0 17px 18px 69px;

    color: #7c878d;

    font-size: 10px;

    line-height: 1.8;

    opacity: 0;

    transform:
        translateY(-8px);

    transition:
        opacity .35s ease .05s,
        transform .35s ease .05s;
}


.faq_item.active
.faq_answer_inner p {

    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================
   ACTIVE LEFT BORDER
========================================= */

.faq_item::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 100%;

    background:
        linear-gradient(
            180deg,
            var(--main-color),
            var(--hover-color)
        );

    transform:
        scaleY(0);

    transform-origin:
        top;

    transition:
        transform .4s ease;
}


.faq_item.active::before {

    transform:
        scaleY(1);
}


/* =========================================
   BOTTOM CTA
========================================= */

.faq_bottom {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 32px;

    padding:
        19px 22px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f1f9fc
        );

    border:
        1px solid
        rgba(0,113,188,.10);

    border-radius: 13px;

    box-shadow:
        0 8px 25px
        rgba(0,45,75,.05);

    opacity: 0;

    transform:
        translateY(20px);

    transition:
        all .7s ease;
}


.faq_bottom.faq_bottom_visible {

    opacity: 1;

    transform:
        translateY(0);
}


.faq_bottom_icon {

    flex-shrink: 0;

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--main-color),
            var(--hover-color)
        );

    border-radius: 13px;

    font-size: 17px;

    animation:
        faqHeadsetPulse
        2.5s ease-in-out infinite;
}


@keyframes faqHeadsetPulse {

    0%,100% {
        box-shadow:
            0 0 0 0
            rgba(0,174,239,.22);
    }

    50% {
        box-shadow:
            0 0 0 10px
            rgba(0,174,239,0);
    }

}


.faq_bottom_text {

    flex: 1;
}


.faq_bottom_text span {

    display: block;

    margin-bottom: 3px;

    color: #7c878d;

    font-size: 10px;
}


.faq_bottom_text strong {

    display: block;

    color: #181818;

    font-size: 14px;
}


.faq_bottom_button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding:
        11px 17px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--main-color),
            var(--hover-color)
        );

    border-radius: 7px;

    font-size: 10px;

    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 8px 20px
        rgba(0,113,188,.17);

    transition:
        all .35s ease;
}


.faq_bottom_button i {

    transition:
        transform .3s ease;
}


.faq_bottom_button:hover {

    color: #ffffff;

    transform:
        translateY(-3px);

    box-shadow:
        0 13px 28px
        rgba(0,113,188,.25);
}


.faq_bottom_button:hover i {

    transform:
        translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .faq_section {

        padding:
            75px 0 85px;
    }


    .faq_content {

        grid-template-columns: 1fr;
    }


    .faq_column {

        width: 100%;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .faq_section {

        padding:
            65px 0 70px;
    }


    .faq_container {

        padding:
            0 15px;
    }


    .faq_heading {

        margin-bottom: 35px;
    }


    .faq_title {

        font-size: 32px;
    }


    .faq_description {

        font-size: 12px;

        line-height: 1.7;
    }


    .faq_content {

        gap: 0;
    }


    .faq_item {

        margin-bottom: 12px;
    }


    .faq_question {

        grid-template-columns:
            37px 1fr 32px;

        gap: 9px;

        padding:
            15px 13px;
    }


    .faq_question_number {

        width: 31px;
        height: 31px;

        font-size: 9px;
    }


    .faq_question_text {

        font-size: 11px;
    }


    .faq_toggle {

        width: 29px;
        height: 29px;
    }


    .faq_answer_inner p {

        padding:
            0 13px 16px 59px;

        font-size: 10px;
    }


    .faq_bottom {

        flex-wrap: wrap;

        margin-top: 25px;
    }


    .faq_bottom_button {

        width: 100%;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .faq_section {

        padding:
            55px 0 65px;
    }


    .faq_container {

        padding:
            0 12px;
    }


    .faq_subtitle {

        font-size: 14px;
    }


    .faq_title {

        font-size: 28px;

        letter-spacing:
            -.7px;
    }


    .faq_description {

        font-size: 11px;
    }


    .faq_question {

        grid-template-columns:
            34px 1fr 29px;

        gap: 7px;

        padding:
            14px 11px;
    }


    .faq_question_number {

        width: 29px;
        height: 29px;
    }


    .faq_question_text {

        font-size: 10px;
    }


    .faq_toggle {

        width: 27px;
        height: 27px;
    }


    .faq_answer_inner p {

        padding:
            0 11px 15px 52px;

        font-size: 9px;

        line-height: 1.75;
    }


    .faq_bottom {

        padding:
            17px;
    }


    .faq_bottom_icon {

        width: 44px;
        height: 44px;
    }


    .faq_bottom_text strong {

        font-size: 12px;
    }

}


/* =========================================
   EXTRA SMALL
========================================= */

@media (max-width: 350px) {

    .faq_title {

        font-size: 25px;
    }


    .faq_question {

        grid-template-columns:
            31px 1fr 27px;
    }


    .faq_question_number {

        width: 27px;
        height: 27px;
    }


    .faq_toggle {

        width: 25px;
        height: 25px;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .faq_section *,
    .faq_section *::before,
    .faq_section *::after {

        animation: none !important;

        transition: none !important;
    }

}

/* =========================================
   FAQ SECTION END
========================================= */
/* faq section end */
/* final cta section start  */
/* =========================================
   FINAL CTA SECTION START
========================================= */

.final_cta_section {

    position: relative;

    width: 100%;

    padding:
        90px 0 95px;

    overflow: hidden;

    background:
        #ffffff;
}


/* =========================================
   CONTAINER
========================================= */

.final_cta_container {

    position: relative;

    width: 100%;

    max-width: 1250px;

    margin: 0 auto;

    padding:
        0 25px;

    z-index: 2;
}


/* =========================================
   MAIN CTA BOX
========================================= */

.final_cta_box {

    position: relative;

    min-height: 420px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    padding:
        60px 30px;

    background:
        linear-gradient(
            135deg,
            #005d9e 0%,
            var(--main-color) 45%,
            var(--hover-color) 100%
        );

    border-radius: 25px;

    box-shadow:
        0 25px 60px
        rgba(0,91,150,.22);

    isolation: isolate;

    opacity: 0;

    transform:
        translateY(45px)
        scale(.97);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.2,.8,.2,1);
}


.final_cta_box.is-visible {

    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}


/* =========================================
   GLOW
========================================= */

.final_cta_glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter:
        blur(2px);

    z-index: 0;
}


.final_cta_glow_one {

    width: 430px;
    height: 430px;

    left: -250px;
    top: -180px;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.18),
            transparent 68%
        );

    animation:
        finalCtaGlowOne
        8s ease-in-out infinite;
}


.final_cta_glow_two {

    width: 500px;
    height: 500px;

    right: -270px;
    bottom: -280px;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.15),
            transparent 68%
        );

    animation:
        finalCtaGlowTwo
        9s ease-in-out infinite;
}


@keyframes finalCtaGlowOne {

    0%,100% {
        transform:
            translate(0,0)
            scale(1);
    }

    50% {
        transform:
            translate(40px,30px)
            scale(1.12);
    }

}


@keyframes finalCtaGlowTwo {

    0%,100% {
        transform:
            translate(0,0)
            scale(1);
    }

    50% {
        transform:
            translate(-35px,-25px)
            scale(1.1);
    }

}


/* =========================================
   DOT PATTERN
========================================= */

.final_cta_dots {

    position: absolute;

    display: grid;

    grid-template-columns:
        repeat(3,5px);

    gap: 8px;

    opacity: .3;

    z-index: 1;
}


.final_cta_dots_one {

    left: 35px;

    top: 35px;
}


.final_cta_dots_two {

    right: 35px;

    bottom: 35px;
}


.final_cta_dots span {

    width: 4px;
    height: 4px;

    background:
        rgba(255,255,255,.8);

    border-radius: 50%;

    animation:
        finalCtaDotPulse
        2s ease-in-out infinite;
}


.final_cta_dots span:nth-child(2) {
    animation-delay: .15s;
}

.final_cta_dots span:nth-child(3) {
    animation-delay: .3s;
}

.final_cta_dots span:nth-child(4) {
    animation-delay: .45s;
}

.final_cta_dots span:nth-child(5) {
    animation-delay: .6s;
}

.final_cta_dots span:nth-child(6) {
    animation-delay: .75s;
}


@keyframes finalCtaDotPulse {

    0%,100% {
        opacity: .3;
        transform:
            scale(1);
    }

    50% {
        opacity: 1;
        transform:
            scale(1.5);
    }

}


/* =========================================
   CONTENT
========================================= */

.final_cta_content {

    position: relative;

    max-width: 780px;

    text-align: center;

    z-index: 5;
}


.final_cta_badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 16px;

    padding:
        7px 13px;

    color:
        #ffffff;

    background:
        rgba(255,255,255,.12);

    border:
        1px solid
        rgba(255,255,255,.22);

    border-radius: 30px;

    font-size: 10px;

    font-weight: 700;

    backdrop-filter:
        blur(8px);

    opacity: 0;

    transform:
        translateY(15px);

    transition:
        all .7s ease .15s;
}


.final_cta_box.is-visible
.final_cta_badge {

    opacity: 1;

    transform:
        translateY(0);
}


.final_cta_badge i {

    color:
        #ffffff;

    animation:
        finalCtaPlaneIcon
        2s ease-in-out infinite;
}


@keyframes finalCtaPlaneIcon {

    0%,100% {
        transform:
            translate(0,0);
    }

    50% {
        transform:
            translate(3px,-3px);
    }

}


/* =========================================
   TITLE
========================================= */

.final_cta_title {

    margin: 0;

    color:
        #ffffff;

    font-size:
        clamp(
            38px,
            5vw,
            58px
        );

    line-height: 1.1;

    font-weight: 800;

    letter-spacing:
        -1.7px;

    opacity: 0;

    transform:
        translateY(25px);

    transition:
        all .8s ease .25s;
}


.final_cta_box.is-visible
.final_cta_title {

    opacity: 1;

    transform:
        translateY(0);
}


.final_cta_title span {

    display: block;

    color:
        #ffffff;

    position: relative;

    width: fit-content;

    margin:
        5px auto 0;
}


.final_cta_title span::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -7px;

    width: 100%;

    height: 3px;

    border-radius: 20px;

    background:
        rgba(255,255,255,.85);

    transform:
        scaleX(0);

    transform-origin:
        left;

    transition:
        transform 1s ease .9s;
}


.final_cta_box.is-visible
.final_cta_title span::after {

    transform:
        scaleX(1);
}


/* =========================================
   DESCRIPTION
========================================= */

.final_cta_description {

    max-width: 650px;

    margin:
        22px auto 0;

    color:
        rgba(255,255,255,.82);

    font-size: 13px;

    line-height: 1.8;

    opacity: 0;

    transform:
        translateY(20px);

    transition:
        all .8s ease .4s;
}


.final_cta_box.is-visible
.final_cta_description {

    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================
   BUTTONS
========================================= */

.final_cta_buttons {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-top: 28px;

    opacity: 0;

    transform:
        translateY(20px);

    transition:
        all .8s ease .5s;
}


.final_cta_box.is-visible
.final_cta_buttons {

    opacity: 1;

    transform:
        translateY(0);
}


.final_cta_button {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    min-height: 47px;

    padding:
        7px 10px 7px 8px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    transition:
        all .35s ease;

    position: relative;

    overflow: hidden;
}


.final_cta_button_icon {

    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 6px;

    transition:
        transform .35s ease;
}


.final_cta_primary {

    color:
        var(--main-color);

    background:
        #ffffff;

    box-shadow:
        0 10px 25px
        rgba(0,0,0,.12);
}


.final_cta_primary
.final_cta_button_icon {

    color:
        #ffffff;

    background:
        var(--main-color);
}


.final_cta_whatsapp {

    color:
        #ffffff;

    background:
        rgba(255,255,255,.10);

    border:
        1px solid
        rgba(255,255,255,.35);

    backdrop-filter:
        blur(8px);
}


.final_cta_whatsapp
.final_cta_button_icon {

    color:
        #ffffff;

    background:
        rgba(255,255,255,.15);
}


.final_cta_arrow {

    margin-left: 2px;

    transition:
        transform .3s ease;
}


.final_cta_button:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 15px 30px
        rgba(0,0,0,.18);
}


.final_cta_button:hover
.final_cta_button_icon {

    transform:
        rotate(-5deg)
        scale(1.08);
}


.final_cta_button:hover
.final_cta_arrow {

    transform:
        translateX(4px);
}


/* =========================================
   TRUST
========================================= */

.final_cta_trust {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 25px;

    opacity: 0;

    transform:
        translateY(15px);

    transition:
        all .8s ease .65s;
}


.final_cta_box.is-visible
.final_cta_trust {

    opacity: 1;

    transform:
        translateY(0);
}


.final_cta_trust_item {

    display: flex;

    align-items: center;

    gap: 6px;

    color:
        rgba(255,255,255,.8);

    font-size: 9px;

    font-weight: 600;
}


.final_cta_trust_item i {

    color:
        #ffffff;

    font-size: 11px;
}


/* =========================================
   FLOATING ICONS
========================================= */

.final_cta_floating_icon {

    position: absolute;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        rgba(255,255,255,.9);

    background:
        rgba(255,255,255,.10);

    border:
        1px solid
        rgba(255,255,255,.20);

    border-radius: 13px;

    font-size: 17px;

    backdrop-filter:
        blur(8px);

    z-index: 3;
}


.final_cta_icon_passport {

    left: 9%;

    top: 18%;

    animation:
        finalCtaFloatOne
        4s ease-in-out infinite;
}


.final_cta_icon_globe {

    right: 9%;

    top: 16%;

    animation:
        finalCtaFloatTwo
        5s ease-in-out infinite;
}


.final_cta_icon_ticket {

    left: 8%;

    bottom: 17%;

    animation:
        finalCtaFloatThree
        4.5s ease-in-out infinite;
}


.final_cta_icon_suitcase {

    right: 8%;

    bottom: 16%;

    animation:
        finalCtaFloatOne
        5.5s ease-in-out infinite;
}


@keyframes finalCtaFloatOne {

    0%,100% {
        transform:
            translateY(0)
            rotate(-3deg);
    }

    50% {
        transform:
            translateY(-12px)
            rotate(4deg);
    }

}


@keyframes finalCtaFloatTwo {

    0%,100% {
        transform:
            translateY(0)
            rotate(3deg);
    }

    50% {
        transform:
            translateY(10px)
            rotate(-4deg);
    }

}


@keyframes finalCtaFloatThree {

    0%,100% {
        transform:
            translate(0,0)
            rotate(4deg);
    }

    50% {
        transform:
            translate(8px,-10px)
            rotate(-3deg);
    }

}


/* =========================================
   AIRPLANE
========================================= */

.final_cta_plane {

    position: absolute;

    left: -70px;

    bottom: 38px;

    display: flex;

    align-items: center;

    gap: 5px;

    color:
        rgba(255,255,255,.55);

    font-size: 14px;

    z-index: 2;

    opacity: 0;

    transition:
        opacity .5s ease 1s;
}


.final_cta_box.is-visible
.final_cta_plane {

    opacity: 1;

    animation:
        finalCtaPlaneMove
        8s linear
        infinite;
}


.final_cta_plane_line {

    width: 100px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.4)
        );
}


@keyframes finalCtaPlaneMove {

    0% {
        left: -100px;

        transform:
            translateY(10px)
            rotate(3deg);
    }

    45% {
        transform:
            translateY(-20px)
            rotate(-2deg);
    }

    100% {
        left: calc(100% + 100px);

        transform:
            translateY(-5px)
            rotate(3deg);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .final_cta_section {

        padding:
            75px 0 85px;
    }


    .final_cta_box {

        min-height: 400px;

        padding:
            55px 30px;
    }


    .final_cta_floating_icon {

        width: 42px;
        height: 42px;

        font-size: 15px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .final_cta_section {

        padding:
            65px 0 70px;
    }


    .final_cta_container {

        padding:
            0 15px;
    }


    .final_cta_box {

        min-height: auto;

        padding:
            55px 20px;

        border-radius: 20px;
    }


    .final_cta_title {

        font-size: 34px;

        letter-spacing:
            -.8px;
    }


    .final_cta_description {

        font-size: 11px;

        line-height: 1.75;
    }


    .final_cta_buttons {

        flex-direction: column;

        width: 100%;
    }


    .final_cta_button {

        width: 100%;

        justify-content: center;
    }


    .final_cta_trust {

        gap:
            10px 15px;
    }


    .final_cta_floating_icon {

        width: 38px;
        height: 38px;

        border-radius: 10px;

        font-size: 13px;
    }


    .final_cta_icon_passport {

        left: 5%;
        top: 8%;
    }


    .final_cta_icon_globe {

        right: 5%;
        top: 9%;
    }


    .final_cta_icon_ticket {

        left: 5%;
        bottom: 8%;
    }


    .final_cta_icon_suitcase {

        right: 5%;
        bottom: 8%;
    }


    .final_cta_dots {

        opacity: .2;
    }


    .final_cta_plane {

        display: none;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .final_cta_section {

        padding:
            55px 0 65px;
    }


    .final_cta_container {

        padding:
            0 12px;
    }


    .final_cta_box {

        padding:
            50px 17px;

        border-radius: 18px;
    }


    .final_cta_badge {

        font-size: 8px;

        padding:
            6px 10px;
    }


    .final_cta_title {

        font-size: 29px;
    }


    .final_cta_description {

        font-size: 10px;
    }


    .final_cta_trust_item {

        font-size: 8px;
    }


    .final_cta_trust_item i {

        font-size: 9px;
    }


    .final_cta_floating_icon {

        width: 32px;
        height: 32px;

        font-size: 11px;
    }


    .final_cta_dots_one {

        left: 18px;
        top: 18px;
    }


    .final_cta_dots_two {

        right: 18px;
        bottom: 18px;
    }

}


/* =========================================
   EXTRA SMALL
========================================= */

@media (max-width: 350px) {

    .final_cta_title {

        font-size: 26px;
    }


    .final_cta_description {

        font-size: 9px;
    }


    .final_cta_button {

        font-size: 10px;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .final_cta_section *,
    .final_cta_section *::before,
    .final_cta_section *::after {

        animation: none !important;

        transition: none !important;
    }

}

/* =========================================
   TRAVEL FOOTER START
========================================= */

.travel_footer_section {

    position: relative;

    width: 100%;

    padding:
        75px 20px 0;

    overflow: hidden;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #061827 0%,
            #071f32 45%,
            #03111d 100%
        );

    font-family:
        Poppins,
        sans-serif;
}


/* =========================================
   TOP LINE
========================================= */

.travel_footer_section::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--main-color),
            var(--hover-color),
            var(--main-color)
        );

    background-size:
        200% 100%;

    animation:
        travelFooterGradient
        4s linear infinite;
}


@keyframes travelFooterGradient {

    0% {
        background-position:
            0% 50%;
    }

    100% {
        background-position:
            200% 50%;
    }

}


/* =========================================
   BACKGROUND GLOW
========================================= */

.travel_footer_glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: 0;

    filter: blur(10px);
}


.travel_footer_glow_one {

    width: 450px;
    height: 450px;

    left: -260px;
    top: 50px;

    background:
        radial-gradient(
            circle,
            rgba(0,174,239,.14),
            transparent 68%
        );

    animation:
        travelFooterGlowOne
        9s ease-in-out infinite;
}


.travel_footer_glow_two {

    width: 500px;
    height: 500px;

    right: -280px;
    bottom: -250px;

    background:
        radial-gradient(
            circle,
            rgba(0,113,188,.15),
            transparent 68%
        );

    animation:
        travelFooterGlowTwo
        10s ease-in-out infinite;
}


@keyframes travelFooterGlowOne {

    0%,100% {
        transform:
            translate(0,0)
            scale(1);
    }

    50% {
        transform:
            translate(35px,-25px)
            scale(1.1);
    }

}


@keyframes travelFooterGlowTwo {

    0%,100% {
        transform:
            translate(0,0)
            scale(1);
    }

    50% {
        transform:
            translate(-30px,25px)
            scale(1.12);
    }

}


/* =========================================
   CONTAINER
========================================= */

.travel_footer_container {

    position: relative;

    max-width: 1250px;

    margin: 0 auto;

    z-index: 2;
}


/* =========================================
   ROW
========================================= */

.travel_footer_row {

    display: grid;

    grid-template-columns:
        1.3fr .8fr .8fr;

    gap: 55px;

    align-items: start;
}


/* =========================================
   ABOUT
========================================= */

.travel_footer_about {

    max-width: 500px;
}


.travel_footer_logo {

    display: inline-flex;

    align-items: center;

    transition:
        transform .35s ease;
}


.travel_footer_logo:hover {

    transform:
        translateY(-3px);
}


.travel_footer_logo img {

    display: block;

    width:
        min(220px,100%);

    height: auto;
}


.travel_footer_text {

    max-width: 450px;

    margin:
        20px 0 0;

    color:
        #b8c8d4;

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================
   CONTACT INFO
========================================= */

.travel_footer_infos {

    display: grid;

    gap: 11px;

    margin-top: 22px;
}


.travel_footer_info {

    display: flex;

    align-items: center;

    gap: 11px;

    color:
        #d9e5ec;

    text-decoration: none;

    font-size: 11px;

    line-height: 1.5;

    transition:
        color .3s ease,
        transform .3s ease;
}


.travel_footer_info:hover {

    color:
        #ffffff;

    transform:
        translateX(5px);
}


.travel_footer_info_icon {

    flex:
        0 0 35px;

    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        var(--hover-color);

    background:
        rgba(0,174,239,.10);

    border:
        1px solid
        rgba(0,174,239,.15);

    border-radius: 9px;

    font-size: 12px;

    transition:
        all .35s ease;
}


.travel_footer_info:hover
.travel_footer_info_icon {

    color:
        #ffffff;

    background:
        var(--main-color);

    transform:
        rotate(-5deg);
}


/* =========================================
   ACTION BUTTONS
========================================= */

.travel_footer_actions {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 22px;
}


.travel_footer_action {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 40px;

    padding:
        9px 15px;

    color:
        #ffffff;

    background:
        var(--main-color);

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 7px;

    font-size: 10px;

    font-weight: 700;

    text-decoration: none;

    transition:
        all .35s ease;
}


.travel_footer_action:hover {

    color:
        #ffffff;

    background:
        var(--hover-color);

    transform:
        translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(0,174,239,.20);
}


.travel_footer_whatsapp {

    background:
        #20b85a;
}


.travel_footer_whatsapp:hover {

    background:
        #25d366;
}


/* =========================================
   TITLES
========================================= */

.travel_footer_title {

    position: relative;

    width: fit-content;

    margin:
        0 0 24px;

    padding-bottom:
        12px;

    color:
        #ffffff;

    font-size:
        clamp(19px,2vw,23px);

    line-height: 1.3;

    font-weight: 700;
}


.travel_footer_title::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 45px;
    height: 3px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--main-color),
            var(--hover-color)
        );

    transition:
        width .4s ease;
}


.travel_footer_col:hover
.travel_footer_title::after {

    width: 75px;
}


/* =========================================
   LIST
========================================= */

.travel_footer_list {

    margin: 0;

    padding: 0;

    list-style: none;
}


.travel_footer_list li {

    border-bottom:
        1px solid
        rgba(255,255,255,.07);
}


.travel_footer_list li:last-child {

    border-bottom: 0;
}


.travel_footer_list a {

    display: flex;

    align-items: center;

    gap: 8px;

    min-height: 40px;

    color:
        #b9c7d0;

    font-size: 11px;

    text-decoration: none;

    transition:
        color .3s ease,
        padding-left .3s ease;
}


.travel_footer_list a i {

    color:
        var(--hover-color);

    font-size: 8px;

    transition:
        transform .3s ease;
}


.travel_footer_list a:hover {

    color:
        #ffffff;

    padding-left: 6px;
}


.travel_footer_list a:hover i {

    transform:
        translateX(3px);
}


/* =========================================
   SOCIAL AREA
========================================= */

.travel_footer_social_area {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 50px;

    padding:
        25px 0;

    border-top:
        1px solid
        rgba(255,255,255,.08);

    border-bottom:
        1px solid
        rgba(255,255,255,.08);
}


.travel_footer_social_text span {

    display: block;

    color:
        #ffffff;

    font-size: 14px;

    font-weight: 700;
}


.travel_footer_social_text p {

    margin:
        3px 0 0;

    color:
        #879ba8;

    font-size: 9px;
}


/* =========================================
   SOCIAL ICONS
========================================= */

.travel_footer_social_icons {

    display: flex;

    align-items: center;

    gap: 9px;
}


.travel_footer_social {

    position: relative;

    width: 39px;
    height: 39px;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        #ffffff;

    background:
        rgba(255,255,255,.07);

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 9px;

    font-size: 13px;

    text-decoration: none;

    overflow: hidden;

    transition:
        all .4s ease;
}


.travel_footer_social::before {

    content: "";

    position: absolute;

    inset: 0;

    opacity: 0;

    transition:
        opacity .35s ease;
}


.travel_footer_social i {

    position: relative;

    z-index: 2;

    transition:
        transform .35s ease;
}


.travel_footer_social.facebook::before {

    background:
        #1877f2;
}


.travel_footer_social.instagram::before {

    background:
        linear-gradient(
            135deg,
            #f58529,
            #dd2a7b,
            #8134af
        );
}


.travel_footer_social.youtube::before {

    background:
        #ff0000;
}


.travel_footer_social.tiktok::before {

    background:
        #050505;
}


.travel_footer_social:hover {

    color:
        #ffffff;

    transform:
        translateY(-6px)
        rotate(-3deg);

    border-color:
        transparent;

    box-shadow:
        0 12px 25px
        rgba(0,0,0,.25);
}


.travel_footer_social:hover::before {

    opacity: 1;
}


.travel_footer_social:hover i {

    transform:
        scale(1.15)
        rotate(5deg);
}


/* =========================================
   BOTTOM
========================================= */

.travel_footer_bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding:
        20px 0;

    color:
        #8296a3;

    font-size: 9px;

    line-height: 1.6;
}


.travel_footer_bottom p {

    margin: 0;
}


.travel_footer_bottom a {

    color:
        var(--hover-color);

    font-weight: 700;

    text-decoration: none;

    transition:
        color .3s ease;
}


.travel_footer_bottom a:hover {

    color:
        #ffffff;
}


/* =========================================
   FLOATING WHATSAPP
========================================= */

.travel_footer_whatsapp_float {

    position: fixed;

    left: 25px;
    bottom: 25px;

    z-index: 120;

    width: 56px;
    height: 56px;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        #ffffff;

    background:
        #25d366;

    border-radius: 50%;

    font-size: 28px;

    text-decoration: none;

    box-shadow:
        0 12px 30px
        rgba(37,211,102,.30);

    transition:
        all .35s ease;
}


.travel_footer_whatsapp_float::before {

    content: "";

    position: absolute;

    inset: -6px;

    border:
        2px solid
        rgba(37,211,102,.35);

    border-radius: 50%;

    animation:
        travelWhatsappPulse
        1.8s ease-out infinite;
}


.travel_footer_whatsapp_float span {

    position: absolute;

    right: 68px;

    top: 50%;

    transform:
        translateY(-50%)
        translateX(8px);

    padding:
        7px 10px;

    color:
        #ffffff;

    background:
        #071c2b;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 6px;

    white-space: nowrap;

    font-size: 9px;

    font-weight: 600;

    opacity: 0;

    pointer-events: none;

    transition:
        all .3s ease;
}


.travel_footer_whatsapp_float:hover {

    color:
        #ffffff;

    background:
        #1fb459;

    transform:
        translateY(-5px)
        scale(1.05);
}


.travel_footer_whatsapp_float:hover span {

    opacity: 1;

    transform:
        translateY(-50%)
        translateX(0);
}


@keyframes travelWhatsappPulse {

    0% {

        transform:
            scale(.85);

        opacity: .9;
    }

    100% {

        transform:
            scale(1.4);

        opacity: 0;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .travel_footer_row {

        grid-template-columns:
            1fr 1fr;

        gap:
            40px 30px;
    }


    .travel_footer_about {

        grid-column:
            1 / -1;

        max-width:
            700px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .travel_footer_section {

        padding:
            55px 16px 0;

        text-align:
            center;
    }


    .travel_footer_row {

        grid-template-columns:
            1fr;

        gap:
            38px;
    }


    .travel_footer_about {

        max-width:
            100%;
    }


    .travel_footer_logo {

        justify-content:
            center;
    }


    .travel_footer_logo img {

        width:
            min(200px,80vw);
    }


    .travel_footer_text {

        max-width:
            100%;

        font-size:
            11px;

        line-height:
            1.8;
    }


    .travel_footer_infos {

        justify-items:
            center;
    }


    .travel_footer_info {

        width:
            fit-content;

        max-width:
            100%;

        text-align:
            left;
    }


    .travel_footer_actions {

        justify-content:
            center;
    }


    .travel_footer_action {

        min-width:
            130px;
    }


    .travel_footer_title {

        margin-left:
            auto;

        margin-right:
            auto;

        font-size:
            20px;
    }


    .travel_footer_title::after {

        left:
            50%;

        transform:
            translateX(-50%);
    }


    .travel_footer_col:hover
    .travel_footer_title::after {

        width:
            65px;
    }


    .travel_footer_list {

        max-width:
            250px;

        margin:
            0 auto;
    }


    .travel_footer_list a {

        justify-content:
            flex-start;

        text-align:
            left;
    }


    .travel_footer_social_area {

        flex-direction:
            column;

        justify-content:
            center;

        margin-top:
            35px;
    }


    .travel_footer_bottom {

        flex-direction:
            column;

        justify-content:
            center;

        padding:
            18px 0;

        font-size:
            8px;
    }


    .travel_footer_whatsapp_float {

        left: 18px;
        bottom: 30px;
        width: 52px;
        height: 52px;
        font-size: 25px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .travel_footer_section {

        padding:
            50px 13px 0;
    }


    .travel_footer_text {

        font-size:
            10px;
    }


    .travel_footer_info {

        font-size:
            10px;
    }


    .travel_footer_action {

        width:
            100%;

        max-width:
            210px;
    }


    .travel_footer_social {

        width:
            37px;

        height:
            37px;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .travel_footer_section *,
    .travel_footer_section *::before,
    .travel_footer_section *::after {

        animation:
            none !important;

        transition:
            none !important;
    }

}

/* =========================================
   TRAVEL FOOTER END
========================================= */
/* about section start  */
/* =========================================
   MINI ABOUT SECTION START
========================================= */

.mini_about_section {

    position: relative;

    width: 100%;

    padding:
        75px 20px;

    overflow: hidden;

    background:
        #ffffff;
}


/* =========================================
   CONTAINER
========================================= */

.mini_about_container {

    position: relative;

    width: 100%;

    max-width: 1180px;

    margin: 0 auto;

    z-index: 2;
}


/* =========================================
   ROW
========================================= */

.mini_about_row {

    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    align-items: center;

    gap: 65px;
}


/* =========================================
   IMAGE
========================================= */

.mini_about_image_col {

    position: relative;

    display: flex;

    justify-content: center;

    opacity: 0;

    transform:
        translateX(-40px);

    transition:
        all .8s ease;
}


.mini_about_section.is-visible
.mini_about_image_col {

    opacity: 1;

    transform:
        translateX(0);
}


.mini_about_image_box {

    position: relative;

    width: 400px;

    height: 400px;

    display: flex;

    align-items: center;

    justify-content: center;
}



.mini_about_image {

    position: relative;

    width: 350px;

    height: 350px;

    object-fit: contain;

    z-index: 2;

    filter:
        drop-shadow(
            0 20px 30px
            rgba(0,113,188,.15)
        );

    animation:
        miniAboutImageFloat
        5s ease-in-out infinite;
}


@keyframes miniAboutImageFloat {

    0%,100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-10px);
    }

}


/* =========================================
   EXPERIENCE CARD
========================================= */

.mini_about_experience {

    position: absolute;

    right: 5px;

    bottom: 45px;

    display: flex;

    align-items: center;

    gap: 9px;

    padding:
        12px 15px;

    color:
        #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--main-color),
            var(--hover-color)
        );

    border-radius: 10px;

    box-shadow:
        0 15px 30px
        rgba(0,113,188,.25);

    z-index: 4;

    animation:
        miniAboutCardFloat
        4s ease-in-out infinite;
}


.mini_about_experience strong {

    font-size: 25px;

    line-height: 1;
}


.mini_about_experience span {

    font-size: 8px;

    line-height: 1.35;

    opacity: .9;
}


@keyframes miniAboutCardFloat {

    0%,100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-7px);
    }

}


/* =========================================
   CONTENT
========================================= */

.mini_about_content {

    opacity: 0;

    transform:
        translateX(40px);

    transition:
        all .8s ease .15s;
}


.mini_about_section.is-visible
.mini_about_content {

    opacity: 1;

    transform:
        translateX(0);
}


/* =========================================
   BADGE
========================================= */

.mini_about_badge {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding:
        7px 12px;

    color:
        var(--main-color);

    background:
        rgba(0,113,188,.07);

    border:
        1px solid
        rgba(0,113,188,.12);

    border-radius: 30px;

    font-size: 9px;

    font-weight: 700;
}


.mini_about_badge i {

    color:
        var(--hover-color);

    animation:
        miniAboutPlane
        2s ease-in-out infinite;
}


@keyframes miniAboutPlane {

    0%,100% {
        transform:
            translate(0,0);
    }

    50% {
        transform:
            translate(3px,-3px);
    }

}


/* =========================================
   TITLE
========================================= */

.mini_about_title {

    margin:
        15px 0 0;

    max-width: 600px;

    color:
        #111827;

    font-size:
        clamp(30px,4vw,43px);

    line-height: 1.12;

    font-weight: 800;

    letter-spacing:
        -1.2px;
}


.mini_about_title span {

    display: block;

    color:
        var(--main-color);
}


/* =========================================
   DESCRIPTION
========================================= */

.mini_about_description {

    max-width: 600px;

    margin:
        17px 0 0;

    color:
        #687684;

    font-size: 12px;

    line-height: 1.85;
}


/* =========================================
   FEATURES
========================================= */

.mini_about_features {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:
        12px;

    margin-top:
        24px;
}


.mini_about_feature {

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        11px;

    background:
        #ffffff;

    border:
        1px solid
        #e8eef3;

    border-radius: 10px;

    box-shadow:
        0 6px 20px
        rgba(0,0,0,.035);

    transition:
        all .35s ease;
}


.mini_about_feature:hover {

    border-color:
        rgba(0,174,239,.35);

    transform:
        translateY(-4px);

    box-shadow:
        0 12px 25px
        rgba(0,113,188,.08);
}


.mini_about_feature_icon {

    flex:
        0 0 34px;

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        var(--main-color);

    background:
        rgba(0,113,188,.08);

    border-radius: 8px;

    font-size: 12px;

    transition:
        all .35s ease;
}


.mini_about_feature:hover
.mini_about_feature_icon {

    color:
        #ffffff;

    background:
        var(--main-color);

    transform:
        rotate(-6deg);
}


.mini_about_feature strong {

    display: block;

    color:
        #1b2733;

    font-size: 10px;

    line-height: 1.4;
}


.mini_about_feature span {

    display: block;

    margin-top: 2px;

    color:
        #8996a1;

    font-size: 8px;
}


/* =========================================
   BOTTOM
========================================= */

.mini_about_bottom {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 18px;

    margin-top:
        24px;
}


.mini_about_button {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    min-height: 42px;

    padding:
        9px 15px;

    color:
        #ffffff;

    background:
        var(--main-color);

    border-radius: 7px;

    font-size: 10px;

    font-weight: 700;

    text-decoration: none;

    transition:
        all .35s ease;
}


.mini_about_button:hover {

    color:
        #ffffff;

    background:
        var(--hover-color);

    transform:
        translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(0,174,239,.2);
}


.mini_about_button i {

    transition:
        transform .3s ease;
}


.mini_about_button:hover i {

    transform:
        translateX(4px);
}


.mini_about_trust {

    display: flex;

    align-items: center;

    gap: 6px;

    color:
        #6f7d87;

    font-size: 9px;

    font-weight: 600;
}


.mini_about_trust i {

    color:
        var(--main-color);

    font-size: 11px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .mini_about_section {

        padding:
            65px 20px;
    }


    .mini_about_row {

        gap:
            40px;
    }


    .mini_about_image_box {

        width: 340px;
        height: 340px;
    }


    .mini_about_image_circle {

        width: 270px;
        height: 270px;
    }


    .mini_about_image {

        width: 300px;
        height: 300px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .mini_about_section {

        padding:
            55px 15px;
    }


    .mini_about_row {

        grid-template-columns:
            1fr;

        gap:
            30px;
    }


    .mini_about_image_col {

        order: 1;
    }


    .mini_about_content {

        order: 2;

        text-align:
            center;
    }


    .mini_about_image_box {

        width: 300px;
        height: 300px;
    }


    .mini_about_image_circle {

        width: 235px;
        height: 235px;
    }


    .mini_about_image {

        width: 260px;
        height: 260px;
    }


    .mini_about_experience {

        right: 0;

        bottom: 25px;
    }


    .mini_about_badge {

        font-size: 8px;
    }


    .mini_about_title {

        font-size: 30px;
    }


    .mini_about_description {

        font-size: 11px;

        line-height: 1.8;
    }


    .mini_about_features {

        text-align:
            left;
    }


    .mini_about_bottom {

        justify-content:
            center;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .mini_about_section {

        padding:
            48px 12px;
    }


    .mini_about_image_box {

        width: 260px;
        height: 260px;
    }


    .mini_about_image_circle {

        width: 205px;
        height: 205px;
    }


    .mini_about_image {

        width: 225px;
        height: 225px;
    }


    .mini_about_experience {

        right:
            -5px;

        bottom:
            15px;

        padding:
            9px 11px;
    }


    .mini_about_experience strong {

        font-size:
            21px;
    }


    .mini_about_title {

        font-size:
            27px;
    }


    .mini_about_features {

        grid-template-columns:
            1fr;
    }


    .mini_about_bottom {

        flex-direction:
            column;

        gap:
            12px;
    }


    .mini_about_button {

        width:
            100%;

        justify-content:
            center;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .mini_about_section *,
    .mini_about_section *::before,
    .mini_about_section *::after {

        animation:
            none !important;

        transition:
            none !important;
    }

}

/* =========================================
   MINI ABOUT SECTION END
========================================= */
/* about section end  */
/* about page start  */
/* =====================================================
   ABOUT PAGE GLOBAL
===================================================== */

.about_page_hero_section,
.about_page_who_we_are_section,
.about_page_mission_vission_section,
.about_page_stats_section {

    position: relative;
    overflow: hidden;
    font-family: "Poppins", sans-serif;

}

.about_page_hero_container,
.about_page_who_we_are_container,
.about_page_mission_vission_container,
.about_page_stats_container {

    width: min(1300px, 92%);
    margin: auto;

}


/* =====================================================
   HERO
===================================================== */

.about_page_hero_section {

    padding: 55px 0 90px;
    background:
        radial-gradient(circle at 90% 20%, #e0f5ff 0%, transparent 35%),
        linear-gradient(180deg, #ffffff, #f5fbff);

}


.about_page_hero_section::before {

    content: "";
    position: absolute;

    width: 350px;
    height: 350px;

    left: -180px;
    bottom: -180px;

    background: #e7f6ff;
    border-radius: 50%;

}


.about_page_hero_breadcrumb {

    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 50px;

    color: #6b7280;
    font-size: 14px;

}


.about_page_hero_breadcrumb a {

    color: #007fc4;
    font-weight: 600;
    text-decoration: none;

}


.about_page_hero_breadcrumb i {

    font-size: 10px;
}


.about_page_hero_row {

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;

}


.about_page_hero_content {

    animation: aboutHeroContent 0.9s ease forwards;

}


.about_page_hero_badge,
.about_page_section_badge {

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 16px;

    border-radius: 50px;

    color: #0079bd;
    background: #e8f7ff;

    border: 1px solid #c9edff;

    font-size: 13px;
    font-weight: 600;

}


.about_page_hero_title {

    margin: 22px 0 20px;

    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;

    color: #071522;

}


.about_page_hero_title span {

    display: block;
    color: #0087cf;

}


.about_page_hero_description {

    max-width: 600px;

    color: #65717d;

    font-size: 16px;
    line-height: 1.8;

}


.about_page_hero_buttons {

    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;

}


.about_page_hero_btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding: 0 22px;

    border-radius: 14px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: 0.35s ease;

}


.about_page_hero_btn_primary {

    color: white;

    background: linear-gradient(
        135deg,
        #0079bd,
        #00a5e8
    );

    box-shadow: 0 12px 30px rgba(0, 140, 210, 0.22);

}


.about_page_hero_btn_primary:hover {

    transform: translateY(-4px);

    box-shadow:
        0 18px 35px rgba(0, 140, 210, 0.30);

}


.about_page_hero_btn_secondary {

    color: #0875ad;

    border: 1px solid #cde4ee;

    background: white;

}


.about_page_hero_btn_secondary:hover {

    transform: translateY(-4px);

    border-color: #008bd0;

}


.about_page_hero_trust {

    display: flex;
    flex-wrap: wrap;

    gap: 20px;

    margin-top: 25px;

}


.about_page_hero_trust div {

    display: flex;
    align-items: center;

    gap: 7px;

    font-size: 12px;
    color: #52616d;

}


.about_page_hero_trust i {

    color: #00a6df;

}


/* HERO IMAGE */

.about_page_hero_image_area {

    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

}


.about_page_hero_image_circle {

    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background: linear-gradient(
        145deg,
        #dff5ff,
        #bdeaff
    );

    animation: aboutHeroCircle 6s ease-in-out infinite;

}


.about_page_hero_image {

    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 560px;

    object-fit: contain;

    animation: aboutHeroImage 1s ease forwards;

}


.about_page_hero_floating_card {

    position: absolute;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 13px 17px;

    background: rgba(255,255,255,0.92);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.8);

    border-radius: 15px;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.10);

}


.about_page_hero_card_one {

    top: 90px;
    right: 0;

    animation: aboutFloatingOne 4s ease-in-out infinite;

}


.about_page_hero_card_two {

    left: 5px;
    bottom: 70px;

    animation: aboutFloatingTwo 4.5s ease-in-out infinite;

}


.about_page_hero_card_icon {

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    color: #0087cf;

    background: #e7f7ff;

}


.about_page_hero_floating_card strong,
.about_page_hero_floating_card span {

    display: block;

}


.about_page_hero_floating_card strong {

    font-size: 13px;
    color: #14222c;

}


.about_page_hero_floating_card span {

    margin-top: 3px;

    font-size: 10px;
    color: #7a8790;

}


/* =====================================================
   WHO WE ARE
===================================================== */

.about_page_who_we_are_section {

    padding: 100px 0;

    background: white;

}


.about_page_who_we_are_row {

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 80px;

}


.about_page_who_we_are_image_area {

    position: relative;

    min-height: 470px;

    display: flex;

    justify-content: center;
    align-items: center;

}


.about_page_who_we_are_image_bg {

    position: absolute;

    width: 390px;
    height: 390px;

    border-radius: 50%;

    background: #e4f6ff;

}


.about_page_who_we_are_image {

    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 470px;

    animation: aboutImageFloat 5s ease-in-out infinite;

}


.about_page_who_we_are_experience {

    position: absolute;

    z-index: 4;

    right: 0;
    bottom: 45px;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 15px 20px;

    border-radius: 15px;

    color: white;

    background: linear-gradient(
        135deg,
        #0079bd,
        #00a7e8
    );

    box-shadow:
        0 15px 30px rgba(0, 125, 190, 0.25);

}


.about_page_who_we_are_experience strong {

    font-size: 31px;

}


.about_page_who_we_are_experience span {

    font-size: 10px;
    line-height: 1.3;

}


.about_page_section_title {

    margin: 18px 0;

    font-size: clamp(32px, 4vw, 52px);

    line-height: 1.12;

    color: #071522;

}


.about_page_section_title span {

    color: #0088ce;

}


.about_page_who_we_are_text {

    max-width: 650px;

    color: #687681;

    line-height: 1.8;

    font-size: 15px;

}


.about_page_who_we_are_features {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 28px;

}


.about_page_who_feature {

    display: flex;

    gap: 12px;

    padding: 15px;

    border-radius: 15px;

    background: #f7fbfd;

    border: 1px solid #e5f1f6;

    transition: 0.35s ease;

}


.about_page_who_feature:hover {

    transform: translateY(-5px);

    background: white;

    box-shadow: 0 15px 30px rgba(0,100,150,0.08);

}


.about_page_who_feature > span {

    width: 32px;
    height: 32px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    color: #0086ca;
    background: #e5f6ff;

}


.about_page_who_feature strong,
.about_page_who_feature small {

    display: block;

}


.about_page_who_feature strong {

    font-size: 13px;
    color: #15232c;

}


.about_page_who_feature small {

    margin-top: 4px;

    font-size: 10px;
    color: #84919a;

}


/* =====================================================
   MISSION / VISION
===================================================== */

.about_page_mission_vission_section {

    padding: 100px 0;

    background:
        radial-gradient(
            circle at 10% 20%,
            #e8f8ff,
            transparent 30%
        ),
        #f8fcfe;

}


.about_page_section_heading {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 50px;

}


.about_page_section_heading p {

    color: #74818b;

    font-size: 14px;

    line-height: 1.7;

}


.about_page_mission_vission_row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

}


.about_page_mission_card,
.about_page_vision_card {

    position: relative;

    padding: 32px;

    border-radius: 24px;

    background: white;

    border: 1px solid #e2edf2;

    box-shadow: 0 15px 40px rgba(0,70,110,0.06);

    overflow: hidden;

    transition: 0.4s ease;

}


.about_page_mission_card:hover,
.about_page_vision_card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 25px 50px rgba(0,100,150,0.12);

}


.about_page_mission_card::after,
.about_page_vision_card::after {

    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -70px;
    bottom: -70px;

    border-radius: 50%;

    background: #e8f8ff;

}


.about_page_mission_card_top,
.about_page_vision_card_top {

    display: flex;

    align-items: center;
    justify-content: space-between;

}


.about_page_mission_icon,
.about_page_vision_icon {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 17px;

    font-size: 22px;

    color: #0087ca;

    background: #e7f7ff;

}


.about_page_mission_card_top > span,
.about_page_vision_card_top > span {

    font-size: 50px;

    font-weight: 800;

    color: #edf5f8;

}


.about_page_mission_card h3,
.about_page_vision_card h3 {

    margin: 20px 0 10px;

    font-size: 25px;

    color: #13222b;

}


.about_page_mission_card p,
.about_page_vision_card p {

    color: #71808a;

    font-size: 14px;

    line-height: 1.8;

}


.about_page_mission_line,
.about_page_vision_line {

    width: 55px;
    height: 3px;

    margin: 22px 0 15px;

    border-radius: 20px;

    background: #008bd0;

}


.about_page_mission_card small,
.about_page_vision_card small {

    color: #0084c7;

    font-weight: 600;

}


/* =====================================================
   STATS
===================================================== */

.about_page_stats_section {

    padding: 45px 0;

    background: linear-gradient(
        135deg,
        #006fae,
        #00a1df
    );

}


.about_page_stats_container {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

}


.about_page_stat_item {

    text-align: center;

    color: white;

    padding: 15px;

    border-right: 1px solid rgba(255,255,255,0.2);

}


.about_page_stat_item:last-child {

    border-right: none;

}


.about_page_stat_item i {

    font-size: 22px;

    margin-bottom: 10px;

}


.about_page_stat_item strong {

    display: block;

    font-size: 30px;

}


.about_page_stat_item > span {

    font-size: 12px;

    opacity: 0.85;

}


/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes aboutHeroContent {

    from {

        opacity: 0;
        transform: translateX(-40px);

    }

    to {

        opacity: 1;
        transform: translateX(0);

    }

}


@keyframes aboutHeroImage {

    from {

        opacity: 0;
        transform: translateX(40px) scale(0.92);

    }

    to {

        opacity: 1;
        transform: translateX(0) scale(1);

    }

}


@keyframes aboutHeroCircle {

    0%,100% {

        transform: scale(1) rotate(0deg);

    }

    50% {

        transform: scale(1.06) rotate(5deg);

    }

}


@keyframes aboutFloatingOne {

    0%,100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

}


@keyframes aboutFloatingTwo {

    0%,100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(12px);

    }

}


@keyframes aboutImageFloat {

    0%,100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .about_page_hero_row {

        gap: 35px;

    }

    .about_page_who_we_are_row {

        gap: 40px;

    }

}


@media (max-width: 850px) {

    .about_page_hero_row,
    .about_page_who_we_are_row {

        grid-template-columns: 1fr;

    }


    .about_page_hero_content {

        text-align: center;

    }


    .about_page_hero_badge {

        justify-content: center;

    }


    .about_page_hero_description {

        margin-left: auto;
        margin-right: auto;

    }


    .about_page_hero_buttons,
    .about_page_hero_trust {

        justify-content: center;

    }


    .about_page_hero_image_area {

        min-height: 420px;

    }


    .about_page_who_we_are_content {

        text-align: center;

    }


    .about_page_who_we_are_text {

        margin-left: auto;
        margin-right: auto;

    }


    .about_page_who_we_are_image_area {

        min-height: 400px;

    }


    .about_page_who_we_are_features {

        text-align: left;

    }

}


@media (max-width: 650px) {

    .about_page_hero_section {

        padding: 35px 0 60px;

    }


    .about_page_hero_breadcrumb {

        margin-bottom: 30px;

    }


    .about_page_hero_title {

        font-size: 38px;

    }


    .about_page_hero_description {

        font-size: 14px;

    }


    .about_page_hero_image_area {

        min-height: 330px;

    }


    .about_page_hero_image_circle {

        width: 280px;
        height: 280px;

    }


    .about_page_hero_card_one {

        top: 35px;
        right: -5px;

    }


    .about_page_hero_card_two {

        bottom: 20px;
        left: -5px;

    }


    .about_page_hero_floating_card {

        padding: 9px 11px;

    }


    .about_page_hero_card_icon {

        width: 32px;
        height: 32px;

    }


    .about_page_who_we_are_section,
    .about_page_mission_vission_section {

        padding: 65px 0;

    }


    .about_page_who_we_are_image_area {

        min-height: 300px;

    }


    .about_page_who_we_are_image_bg {

        width: 270px;
        height: 270px;

    }


    .about_page_who_we_are_experience {

        right: 5px;
        bottom: 15px;

        padding: 10px 13px;

    }


    .about_page_section_title {

        font-size: 34px;

    }


    .about_page_who_we_are_features {

        grid-template-columns: 1fr;

    }


    .about_page_mission_vission_row {

        grid-template-columns: 1fr;

    }


    .about_page_mission_card,
    .about_page_vision_card {

        padding: 25px;

    }


    .about_page_stats_container {

        grid-template-columns: 1fr 1fr;

    }


    .about_page_stat_item {

        border-right: none;

        border-bottom: 1px solid rgba(255,255,255,0.2);

    }


    .about_page_stat_item:nth-child(odd) {

        border-right: 1px solid rgba(255,255,255,0.2);

    }


    .about_page_stat_item:nth-last-child(-n+2) {

        border-bottom: none;

    }

}


@media (max-width: 420px) {

    .about_page_hero_buttons {

        flex-direction: column;

    }


    .about_page_hero_btn {

        width: 100%;

    }


    .about_page_hero_trust {

        flex-direction: column;

        align-items: center;

        gap: 9px;

    }


    .about_page_hero_image_area {

        min-height: 280px;

    }


    .about_page_hero_card_one {

        right: -15px;

    }


    .about_page_hero_card_two {

        left: -15px;

    }


    .about_page_stat_item strong {

        font-size: 25px;

    }

}
/* about page end  */
/* gallery page start  */
/* =========================================
   GALLERY PAGE START
========================================= */

.gallery_page_section {
    position: relative;
    padding: 95px 20px 100px;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(0, 157, 220, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 75%,
            rgba(0, 157, 220, 0.07),
            transparent 30%
        ),
        #ffffff;
    overflow: hidden;
}


/* Background Decoration */

.gallery_page_section::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(0, 157, 220, 0.055);
    top: -170px;
    right: -130px;
    animation: galleryFloatOne 7s ease-in-out infinite;
}

.gallery_page_section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(0, 157, 220, 0.04);
    bottom: -140px;
    left: -100px;
    animation: galleryFloatTwo 8s ease-in-out infinite;
}


.gallery_page_container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.gallery_page_heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.gallery_page_heading.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.gallery_page_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 17px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 157, 220, 0.2);
    border-radius: 50px;
    background: rgba(0, 157, 220, 0.07);
    color: #008dcc;
    font-size: 14px;
    font-weight: 600;
}


.gallery_page_heading h1 {
    margin: 0;
    color: #071a2b;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1.5px;
}


.gallery_page_heading h1 span {
    color: #008dcc;
}


.gallery_page_heading p {
    max-width: 650px;
    margin: 18px auto 0;
    color: #637282;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   GALLERY GRID
========================================= */

.gallery_page_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}


/* =========================================
   CARD
========================================= */

.gallery_page_card {
    position: relative;
    height: 310px;
    border-radius: 20px;
    overflow: hidden;
    background: #eef4f7;
    box-shadow:
        0 12px 35px rgba(7, 30, 48, 0.08);

    opacity: 0;
    transform:
        translateY(45px)
        scale(0.96);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        box-shadow 0.35s ease;
}


.gallery_page_card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}


.gallery_page_card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 22px 45px rgba(7, 30, 48, 0.16);
}


/* =========================================
   IMAGE
========================================= */

.gallery_page_image_box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.gallery_page_image_box img {
    width: 100%;
    height: 100%;
    display: block;

    /*
     * Important:
     * সব image একই size দেখাবে
     */
    object-fit: cover;
    object-position: center;

    transition:
        transform 0.8s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),
        filter 0.5s ease;
}


.gallery_page_card:hover img {
    transform: scale(1.09);
}


/* =========================================
   OVERLAY
========================================= */

.gallery_page_overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 22px;

    background:
        linear-gradient(
            to top,
            rgba(2, 17, 29, 0.88) 0%,
            rgba(2, 17, 29, 0.35) 45%,
            transparent 75%
        );

    opacity: 0;

    transition:
        opacity 0.45s ease;
}


.gallery_page_card:hover
.gallery_page_overlay {
    opacity: 1;
}


.gallery_page_overlay_content {
    width: 100%;

    transform: translateY(20px);

    transition:
        transform 0.5s ease;
}


.gallery_page_card:hover
.gallery_page_overlay_content {
    transform: translateY(0);
}


.gallery_page_category {
    display: inline-block;

    margin-bottom: 8px;
    padding: 5px 11px;

    border-radius: 30px;

    background: rgba(0, 157, 220, 0.95);

    color: #fff;

    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.gallery_page_overlay_content h3 {
    margin: 0;

    color: #fff;

    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
}


/* =========================================
   VIEW BUTTON
========================================= */

.gallery_page_view_button {
    position: absolute;

    right: 22px;
    top: 22px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);

    color: #fff;
    font-size: 17px;

    cursor: pointer;

    transform:
        scale(0.75)
        rotate(-20deg);

    opacity: 0;

    transition:
        transform 0.4s ease,
        opacity 0.4s ease,
        background 0.3s ease;
}


.gallery_page_card:hover
.gallery_page_view_button {
    opacity: 1;

    transform:
        scale(1)
        rotate(0);
}


.gallery_page_view_button:hover {
    background: #008dcc;
    border-color: #008dcc;
}


/* =========================================
   BOTTOM CTA
========================================= */

.gallery_page_bottom {
    display: flex;
    align-items: center;
    gap: 18px;

    max-width: 900px;
    margin: 55px auto 0;
    padding: 18px 22px;

    border: 1px solid rgba(0, 157, 220, 0.12);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.9);

    box-shadow:
        0 12px 35px rgba(7, 30, 48, 0.07);

    opacity: 0;
    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.gallery_page_bottom.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.gallery_page_bottom_icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #008dcc,
        #00a8e8
    );

    color: #fff;

    font-size: 19px;

    box-shadow:
        0 8px 20px rgba(0, 141, 204, 0.22);

    animation: galleryPlaneFloat 2.5s ease-in-out infinite;
}


.gallery_page_bottom_text {
    display: flex;
    flex-direction: column;
    gap: 3px;

    flex: 1;
}


.gallery_page_bottom_text strong {
    color: #071a2b;
    font-size: 16px;
}


.gallery_page_bottom_text span {
    color: #73808c;
    font-size: 13px;
}


.gallery_page_bottom_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 45px;
    padding: 11px 19px;

    border-radius: 11px;

    background: #008dcc;
    color: #fff;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.gallery_page_bottom_button:hover {
    color: #fff;

    background: #0079af;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0, 141, 204, 0.25);
}


/* =========================================
   LIGHTBOX
========================================= */

.gallery_page_lightbox {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}


.gallery_page_lightbox.active {
    visibility: visible;
    opacity: 1;
}


.gallery_page_lightbox_backdrop {
    position: absolute;
    inset: 0;

    background: rgba(2, 13, 23, 0.88);

    backdrop-filter: blur(8px);
}


.gallery_page_lightbox_content {
    position: relative;

    z-index: 2;

    width: min(950px, 100%);
    max-height: 90vh;

    display: flex;
    align-items: center;
    justify-content: center;

    transform:
        scale(0.85)
        translateY(20px);

    transition:
        transform 0.4s ease;
}


.gallery_page_lightbox.active
.gallery_page_lightbox_content {
    transform:
        scale(1)
        translateY(0);
}


.gallery_page_lightbox_image {
    display: block;

    width: auto;
    max-width: 100%;
    max-height: 78vh;

    object-fit: contain;

    border-radius: 14px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45);
}


.gallery_page_lightbox_close {
    position: absolute;

    top: -18px;
    right: -18px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #fff;
    color: #071a2b;

    font-size: 18px;

    cursor: pointer;

    z-index: 5;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.gallery_page_lightbox_close:hover {
    background: #008dcc;
    color: #fff;
    transform: rotate(90deg);
}


.gallery_page_lightbox_caption {
    position: absolute;

    bottom: -45px;
    left: 50%;

    transform: translateX(-50%);

    width: max-content;
    max-width: 90%;

    color: #fff;

    font-size: 15px;
    font-weight: 600;

    text-align: center;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes galleryFloatOne {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-25px, 25px);
    }
}


@keyframes galleryFloatTwo {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }
}


@keyframes galleryPlaneFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-4px) rotate(-5deg);
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .gallery_page_section {
        padding: 75px 20px 80px;
    }


    .gallery_page_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }


    .gallery_page_card {
        height: 300px;
    }


    .gallery_page_heading {
        margin-bottom: 42px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .gallery_page_section {
        padding: 60px 15px 65px;
    }


    .gallery_page_heading {
        margin-bottom: 32px;
    }


    .gallery_page_heading h1 {
        font-size: clamp(31px, 9vw, 42px);
        letter-spacing: -0.8px;
    }


    .gallery_page_heading p {
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.7;
    }


    .gallery_page_grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }


    /*
     * Mobile-এও সব card একই height
     */

    .gallery_page_card {
        width: 100%;
        height: 280px;
        border-radius: 17px;
    }


    /*
     * Mobile device-এ hover না থাকায়
     * overlay visible থাকবে
     */

    .gallery_page_overlay {
        opacity: 1;

        background:
            linear-gradient(
                to top,
                rgba(2, 17, 29, 0.88),
                rgba(2, 17, 29, 0.15)
            );
    }


    .gallery_page_overlay_content {
        transform: translateY(0);
    }


    .gallery_page_view_button {
        opacity: 1;

        transform:
            scale(1)
            rotate(0);

        width: 44px;
        height: 44px;
    }


    .gallery_page_overlay_content h3 {
        font-size: 19px;
    }


    .gallery_page_bottom {
        flex-direction: column;
        align-items: center;

        margin-top: 35px;
        padding: 22px 17px;

        text-align: center;
    }


    .gallery_page_bottom_text {
        align-items: center;
    }


    .gallery_page_bottom_button {
        width: 100%;
    }


    .gallery_page_lightbox {
        padding: 15px;
    }


    .gallery_page_lightbox_image {
        max-height: 72vh;
        border-radius: 10px;
    }


    .gallery_page_lightbox_close {
        top: -12px;
        right: -5px;

        width: 40px;
        height: 40px;
    }


    .gallery_page_lightbox_caption {
        bottom: -40px;
        font-size: 13px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .gallery_page_section {
        padding-left: 12px;
        padding-right: 12px;
    }


    .gallery_page_card {
        height: 250px;
    }


    .gallery_page_badge {
        font-size: 12px;
        padding: 7px 13px;
    }


    .gallery_page_bottom_icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .gallery_page_section *,
    .gallery_page_section::before,
    .gallery_page_section::after {
        animation: none !important;
        transition: none !important;
    }

}
/* gallery page end  */
/* event page start  */
/* =========================================
   EVENT PAGE START
========================================= */

.event_page_section {
    position: relative;
    padding: 90px 20px;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(0, 157, 220, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(0, 157, 220, 0.08),
            transparent 30%
        ),
        #f7fbfd;

    overflow: hidden;
}


.event_page_section::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(0, 157, 220, 0.04);
    top: 80px;
    left: -160px;
    animation: eventFloatingCircle 7s ease-in-out infinite;
}


.event_page_section::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(0, 157, 220, 0.04);
    right: -120px;
    bottom: 100px;
    animation: eventFloatingCircle 8s ease-in-out infinite reverse;
}


.event_page_container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}



/* =========================================
   HERO
========================================= */

.event_page_hero {
    position: relative;
    min-height: 270px;
    padding: 55px 65px;
    border-radius: 28px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background:
        linear-gradient(
            135deg,
            #006fae 0%,
            #008ed0 55%,
            #00a9df 100%
        );

    box-shadow:
        0 25px 60px rgba(0, 103, 160, 0.18);

    color: #fff;
}


.event_page_hero::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border: 70px solid rgba(255,255,255,0.06);
    border-radius: 50%;
    right: 80px;
    top: -170px;
}


.event_page_hero::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    right: -60px;
    bottom: -110px;
}


.event_page_hero_content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}


.event_page_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 16px;
    margin-bottom: 18px;

    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;

    background: rgba(255,255,255,0.12);

    font-size: 14px;
    font-weight: 600;

    backdrop-filter: blur(8px);
}


.event_page_hero h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
}


.event_page_hero h1 span {
    display: block;
    color: #dff7ff;
}


.event_page_hero p {
    max-width: 650px;
    margin: 18px 0 0;

    font-size: 16px;
    line-height: 1.8;

    color: rgba(255,255,255,0.86);
}


.event_page_hero_icon {
    position: relative;
    z-index: 2;

    width: 125px;
    height: 125px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 35px;

    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.2);

    font-size: 62px;

    transform: rotate(5deg);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.12);

    animation: eventIconFloat 4s ease-in-out infinite;
}



/* =========================================
   FILTER
========================================= */

.event_page_filter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    margin: 45px auto 40px;
}


.event_filter_btn {
    position: relative;

    min-height: 48px;

    padding: 11px 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    border: 1px solid #dce8ee;
    border-radius: 50px;

    background: #fff;
    color: #52616b;

    font-family: inherit;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.event_filter_btn:hover {
    color: #008ed0;
    border-color: #008ed0;
    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0,142,208,0.12);
}


.event_filter_btn.active {
    color: #fff;
    border-color: transparent;

    background:
        linear-gradient(
            135deg,
            #0078b8,
            #00a5dc
        );

    box-shadow:
        0 12px 28px rgba(0,142,208,0.22);
}



/* =========================================
   GRID
========================================= */

.event_page_grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 26px;
}



/* =========================================
   CARD
========================================= */

.event_page_card {
    min-width: 0;

    overflow: hidden;

    border: 1px solid #e6eef2;
    border-radius: 22px;

    background: #fff;

    box-shadow:
        0 12px 35px rgba(20,65,85,0.07);

    opacity: 0;
    transform: translateY(45px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        box-shadow 0.35s ease;
}


.event_page_card.event_card_visible {
    opacity: 1;
    transform: translateY(0);
}


.event_page_card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 55px rgba(20,65,85,0.14);
}



/* =========================================
   IMAGE
========================================= */

.event_card_image {
    position: relative;

    width: 100%;
    height: 245px;

    overflow: hidden;

    background: #edf3f6;
}


.event_card_image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease,
        filter 0.5s ease;
}


.event_page_card:hover
.event_card_image img {
    transform: scale(1.07);
}



/* =========================================
   STATUS
========================================= */

.event_status_badge {
    position: absolute;

    top: 16px;
    left: 16px;

    z-index: 3;

    display: inline-flex;
    align-items: center;

    padding: 7px 12px;

    border-radius: 30px;

    background: #fff;

    color: #007ab8;

    font-size: 12px;
    font-weight: 700;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.14);
}


.event_status_badge::before {
    content: "";

    width: 7px;
    height: 7px;

    margin-right: 7px;

    border-radius: 50%;

    background: currentColor;
}


.event_status_badge.ongoing {
    color: #e89500;
}


.event_status_badge.completed {
    color: #4b9b54;
}



/* =========================================
   DATE BOX
========================================= */

.event_card_date {
    position: absolute;

    right: 16px;
    bottom: 16px;

    width: 65px;
    height: 68px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: rgba(255,255,255,0.95);

    color: #007dbd;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.15);

    backdrop-filter: blur(8px);
}


.event_card_date strong {
    font-size: 25px;
    line-height: 1;
    font-weight: 800;
}


.event_card_date span {
    margin-top: 4px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
}



/* =========================================
   CONTENT
========================================= */

.event_card_content {
    padding: 24px 24px 26px;
}


.event_card_meta {
    display: flex;
    align-items: center;

    color: #73838d;

    font-size: 13px;
    font-weight: 500;
}


.event_card_meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}


.event_card_meta i {
    color: #008ed0;
}


.event_card_content h2 {
    margin: 14px 0 10px;

    color: #09283a;

    font-size: 21px;
    line-height: 1.4;
    font-weight: 750;
}


.event_card_content p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    /* -webkit-line-clamp: 3; */
    overflow: hidden;

    min-height: 76px;

    margin: 0;

    color: #71818a;

    font-size: 14px;
    line-height: 1.75;
}


.event_card_button {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 20px;

    padding: 11px 17px;

    border-radius: 10px;

    background: #edf8fc;
    color: #007dbd;

    font-size: 13px;
    font-weight: 700;

    overflow: hidden;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}


.event_card_button i {
    transition: transform 0.3s ease;
}


.event_card_button:hover {
    background: #008ed0;
    color: #fff;

    transform: translateX(3px);
}


.event_card_button:hover i {
    transform: translateX(4px);
}



/* =========================================
   EMPTY
========================================= */

.event_page_empty {
    display: none;

    text-align: center;

    padding: 70px 20px;
}


.event_page_empty.show {
    display: block;
}


.event_page_empty i {
    color: #00a0d7;
    font-size: 48px;
}


.event_page_empty h3 {
    margin: 18px 0 6px;

    color: #09283a;

    font-size: 24px;
}


.event_page_empty p {
    margin: 0;

    color: #7a8991;

    font-size: 14px;
}



/* =========================================
   ANIMATIONS
========================================= */

@keyframes eventFloatingCircle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}


@keyframes eventIconFloat {

    0%,
    100% {
        transform:
            rotate(5deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(0deg)
            translateY(-12px);
    }
}



/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .event_page_grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .event_page_hero {
        padding: 45px;
    }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .event_page_section {
        padding: 60px 15px;
    }


    .event_page_hero {
        min-height: auto;

        padding: 40px 25px;

        flex-direction: column;
        align-items: flex-start;

        gap: 25px;

        border-radius: 22px;
    }


    .event_page_hero h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }


    .event_page_hero p {
        font-size: 14px;
        line-height: 1.7;
    }


    .event_page_hero_icon {
        position: absolute;

        right: 20px;
        bottom: 20px;

        width: 75px;
        height: 75px;

        border-radius: 22px;

        font-size: 35px;

        opacity: 0.35;
    }


    .event_page_filter {
        justify-content: flex-start;

        overflow-x: auto;

        flex-wrap: nowrap;

        padding: 4px 2px 12px;

        margin: 30px auto;
    }


    .event_filter_btn {
        flex: 0 0 auto;
    }


    .event_page_grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .event_card_image {
        height: 230px;
    }


    .event_card_content {
        padding: 21px;
    }


    .event_card_content h2 {
        font-size: 20px;
    }

}



/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .event_page_hero {
        padding: 32px 20px;
    }


    .event_page_hero h1 {
        font-size: 31px;
    }


    .event_page_badge {
        font-size: 12px;
    }


    .event_card_image {
        height: 210px;
    }


    .event_card_content p {
        min-height: auto;
    }


    .event_card_button {
        width: 100%;
    }

}


/* =========================================
   EVENT PAGE END
========================================= */
/* event page end  */
/* event view page start  */
/* =========================================
   EVENT VIEW PAGE START
========================================= */

.event_view_page_section {
    position: relative;

    padding: 85px 20px;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(0, 174, 239, 0.07),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 90%,
            rgba(0, 113, 188, 0.06),
            transparent 30%
        ),
        #f7fbfd;

    overflow: hidden;
}


.event_view_page_section::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    background: rgba(0, 174, 239, 0.035);

    top: -120px;
    left: -120px;

    animation:
        eventViewFloat 8s ease-in-out infinite;
}


.event_view_page_section::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background: rgba(0, 113, 188, 0.035);

    right: -100px;
    bottom: -80px;

    animation:
        eventViewFloat 7s ease-in-out infinite reverse;
}


.event_view_page_container {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1100px;

    margin: 0 auto;
}



/* =========================================
   BACK BUTTON
========================================= */

.event_view_back_button {
    display: inline-flex;

    align-items: center;
    gap: 9px;

    margin-bottom: 25px;

    padding: 11px 17px;

    border-radius: 10px;

    background: #ffffff;

    color: #0071bc;

    border: 1px solid #e1edf2;

    font-size: 14px;
    font-weight: 600;

    box-shadow:
        0 7px 20px rgba(20, 70, 90, 0.06);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}


.event_view_back_button:hover {
    color: #ffffff;

    background: #0071bc;

    transform: translateX(-4px);

    box-shadow:
        0 12px 25px rgba(0, 113, 188, 0.18);
}



/* =========================================
   MAIN CARD
========================================= */

.event_view_page_card {
    overflow: hidden;

    border-radius: 26px;

    background: #ffffff;

    border: 1px solid #e4edf1;

    box-shadow:
        0 20px 55px rgba(20, 65, 85, 0.09);

    opacity: 0;

    transform: translateY(35px);

    animation:
        eventViewCardReveal 0.8s ease forwards;
}



/* =========================================
   IMAGE
========================================= */

.event_view_image_box {
    position: relative;

    width: 100%;

    height: 480px;

    overflow: hidden;

    background: #edf4f7;
}


.event_view_image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s ease;
}


.event_view_page_card:hover
.event_view_image {
    transform: scale(1.025);
}



/* =========================================
   STATUS
========================================= */

.event_view_status {
    position: absolute;

    top: 22px;
    left: 22px;

    display: inline-flex;

    align-items: center;
    gap: 8px;

    padding: 9px 15px;

    border-radius: 50px;

    background: rgba(255,255,255,0.95);

    color: #0071bc;

    font-size: 13px;
    font-weight: 700;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.14);

    backdrop-filter: blur(8px);
}


.event_view_status i {
    font-size: 7px;

    color: #00a651;

    animation:
        eventStatusPulse 1.7s infinite;
}



/* =========================================
   CONTENT
========================================= */

.event_view_content {
    padding: 42px 48px 48px;
}


.event_view_meta {
    display: flex;

    flex-wrap: wrap;

    gap: 12px 25px;

    margin-bottom: 17px;
}


.event_view_meta_item {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    color: #6d7e88;

    font-size: 14px;
    font-weight: 500;
}


.event_view_meta_item i {
    color: #00aeef;
}


.event_view_title {
    max-width: 850px;

    margin: 0;

    color: #092d40;

    font-size: clamp(30px, 4vw, 48px);

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -0.8px;
}


.event_view_intro {
    max-width: 850px;

    margin: 18px 0 0;

    color: #687b85;

    font-size: 16px;

    line-height: 1.85;
}



/* =========================================
   DETAILS
========================================= */

.event_view_details {
    margin-top: 38px;

    padding-top: 32px;

    border-top: 1px solid #e7eef2;
}


.event_view_details h2 {
    margin: 0 0 16px;

    color: #092d40;

    font-size: 25px;

    font-weight: 750;
}


.event_view_details p {
    margin: 0 0 14px;

    color: #667982;

    font-size: 15px;

    line-height: 1.85;
}


.event_view_details p:last-child {
    margin-bottom: 0;
}



/* =========================================
   INFORMATION
========================================= */

.event_view_information {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;

    margin-top: 35px;
}


.event_view_info_item {
    display: flex;

    align-items: center;

    gap: 13px;

    min-width: 0;

    padding: 17px;

    border: 1px solid #e5eef2;

    border-radius: 15px;

    background: #f9fcfd;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.event_view_info_item:hover {
    transform: translateY(-4px);

    border-color: rgba(0,174,239,0.35);

    box-shadow:
        0 12px 25px rgba(0, 100, 140, 0.08);
}


.event_view_info_icon {
    flex: 0 0 43px;

    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #0071bc,
            #00aeef
        );

    color: #ffffff;

    font-size: 17px;
}


.event_view_info_item div:last-child {
    min-width: 0;
}


.event_view_info_item span {
    display: block;

    margin-bottom: 4px;

    color: #84939b;

    font-size: 11px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}


.event_view_info_item strong {
    display: block;

    color: #183e50;

    font-size: 13px;

    line-height: 1.45;

    overflow-wrap: anywhere;
}



/* =========================================
   ACTION BUTTONS
========================================= */

.event_view_action {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;

    padding-top: 30px;

    border-top: 1px solid #e7eef2;
}


.event_view_primary_button,
.event_view_secondary_button {
    min-height: 48px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 12px 20px;

    border-radius: 11px;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}


.event_view_primary_button {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0071bc,
            #00aeef
        );

    box-shadow:
        0 10px 25px rgba(0,113,188,0.18);
}


.event_view_primary_button:hover {
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(0,113,188,0.25);
}


.event_view_secondary_button {
    color: #0071bc;

    background: #edf8fc;

    border: 1px solid #d9edf5;
}


.event_view_secondary_button:hover {
    color: #ffffff;

    background: #0071bc;

    transform: translateY(-3px);
}



/* =========================================
   ANIMATIONS
========================================= */

@keyframes eventViewCardReveal {

    from {
        opacity: 0;

        transform:
            translateY(35px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}


@keyframes eventViewFloat {

    0%,
    100% {
        transform:
            translateY(0)
            scale(1);
    }

    50% {
        transform:
            translateY(-20px)
            scale(1.03);
    }
}


@keyframes eventStatusPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(0,166,81,0.4);
    }

    70% {
        box-shadow:
            0 0 0 7px rgba(0,166,81,0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(0,166,81,0);
    }
}



/* =========================================
   TABLET
========================================= */

@media (max-width: 800px) {

    .event_view_page_section {
        padding: 65px 18px;
    }


    .event_view_image_box {
        height: 380px;
    }


    .event_view_content {
        padding: 35px;
    }


    .event_view_information {
        grid-template-columns: 1fr;
    }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .event_view_page_section {
        padding: 45px 14px;
    }


    .event_view_back_button {
        margin-bottom: 18px;

        font-size: 13px;
    }


    .event_view_page_card {
        border-radius: 20px;
    }


    .event_view_image_box {
        height: 260px;
    }


    .event_view_status {
        top: 15px;
        left: 15px;

        padding: 8px 12px;

        font-size: 11px;
    }


    .event_view_content {
        padding: 27px 20px 25px;
    }


    .event_view_meta {
        gap: 9px 16px;

        margin-bottom: 14px;
    }


    .event_view_meta_item {
        font-size: 12px;
    }


    .event_view_title {
        font-size: 29px;

        letter-spacing: -0.5px;
    }


    .event_view_intro {
        margin-top: 14px;

        font-size: 14px;

        line-height: 1.75;
    }


    .event_view_details {
        margin-top: 28px;

        padding-top: 25px;
    }


    .event_view_details h2 {
        font-size: 22px;
    }


    .event_view_details p {
        font-size: 14px;

        line-height: 1.8;
    }


    .event_view_information {
        margin-top: 28px;
    }


    .event_view_info_item {
        padding: 14px;
    }


    .event_view_action {
        margin-top: 27px;

        padding-top: 25px;

        flex-direction: column;
    }


    .event_view_primary_button,
    .event_view_secondary_button {
        width: 100%;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .event_view_image_box {
        height: 220px;
    }


    .event_view_content {
        padding: 24px 17px;
    }


    .event_view_title {
        font-size: 26px;
    }


    .event_view_info_icon {
        flex-basis: 39px;

        width: 39px;
        height: 39px;

        font-size: 15px;
    }

}


/* =========================================
   EVENT VIEW PAGE END
========================================= */
/* event view page end  */
/* blog page start  */
/* =========================================
   BLOG PAGE START
========================================= */

.blog_page_section {
    position: relative;

    padding: 85px 20px;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(0, 174, 239, 0.07),
            transparent 30%
        ),
        #f7fbfd;

    overflow: hidden;
}


.blog_page_section::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    background: rgba(0, 174, 239, 0.035);

    top: -140px;
    left: -120px;

    animation: blog_page_float 8s ease-in-out infinite;
}


.blog_page_section::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background: rgba(0, 113, 188, 0.035);

    right: -100px;
    bottom: -100px;

    animation: blog_page_float 7s ease-in-out infinite reverse;
}


.blog_page_container {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1250px;

    margin: 0 auto;
}



/* =========================================
   HEADING
========================================= */

.blog_page_heading {
    max-width: 760px;

    margin: 0 auto 50px;

    text-align: center;
}


.blog_page_badge {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    padding: 9px 16px;

    margin-bottom: 16px;

    border-radius: 50px;

    background: #e8f7fc;

    color: #0071bc;

    font-size: 13px;
    font-weight: 700;
}


.blog_page_title {
    margin: 0;

    color: #092d40;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -0.8px;
}


.blog_page_title span {
    display: inline-block;

    color: #0071bc;
}


.blog_page_description {
    max-width: 650px;

    margin: 17px auto 0;

    color: #6b7e88;

    font-size: 15px;

    line-height: 1.8;
}



/* =========================================
   BLOG GRID
========================================= */

.blog_page_grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}



/* =========================================
   BLOG CARD
========================================= */

.blog_page_card {
    position: relative;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    min-width: 0;

    border-radius: 20px;

    background: #ffffff;

    border: 1px solid #e3edf1;

    box-shadow:
        0 12px 35px rgba(20, 65, 85, 0.07);

    opacity: 0;

    transform: translateY(35px);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}


.blog_page_card.blog_page_visible {
    opacity: 1;

    transform: translateY(0);
}


.blog_page_card:hover {
    transform: translateY(-8px);

    border-color: rgba(0, 174, 239, 0.3);

    box-shadow:
        0 20px 45px rgba(0, 113, 188, 0.13);
}



/* =========================================
   IMAGE
========================================= */

.blog_page_image_box {
    position: relative;

    width: 100%;

    height: 235px;

    overflow: hidden;

    background: #edf5f8;
}


.blog_page_image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}


.blog_page_card:hover
.blog_page_image {
    transform: scale(1.07);
}



/* =========================================
   DATE
========================================= */

.blog_page_date {
    position: absolute;

    top: 15px;
    left: 15px;

    display: inline-flex;

    align-items: center;
    gap: 7px;

    padding: 8px 12px;

    border-radius: 8px;

    background: rgba(255,255,255,0.94);

    color: #0071bc;

    font-size: 11px;

    font-weight: 700;

    box-shadow:
        0 7px 20px rgba(0,0,0,0.12);

    backdrop-filter: blur(8px);
}



/* =========================================
   CONTENT
========================================= */

.blog_page_content {
    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 24px;
}


.blog_page_category {
    width: fit-content;

    margin-bottom: 11px;

    padding: 6px 10px;

    border-radius: 6px;

    background: #edf8fc;

    color: #0071bc;

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}


.blog_page_card_title {
    margin: 0;

    color: #12394a;

    font-size: 21px;

    line-height: 1.4;

    font-weight: 750;

    transition:
        color 0.3s ease;
}


.blog_page_card:hover
.blog_page_card_title {
    color: #0071bc;
}


.blog_page_card_description {
    margin: 12px 0 20px;

    color: #6b7e88;

    font-size: 14px;

    line-height: 1.75;

    display: -webkit-box;

    /* -webkit-line-clamp: 3; */

    -webkit-box-orient: vertical;

    overflow: hidden;
}



/* =========================================
   READ MORE
========================================= */

.blog_page_read_more {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    width: fit-content;

    margin-top: auto;

    color: #0071bc;

    font-size: 13px;

    font-weight: 700;

    transition:
        gap 0.3s ease,
        color 0.3s ease;
}


.blog_page_read_more i {
    transition:
        transform 0.3s ease;
}


.blog_page_read_more:hover {
    color: #00aeef;

    gap: 12px;
}


.blog_page_read_more:hover i {
    transform: translateX(3px);
}



/* =========================================
   ANIMATION
========================================= */

@keyframes blog_page_float {

    0%,
    100% {
        transform:
            translateY(0)
            scale(1);
    }

    50% {
        transform:
            translateY(-20px)
            scale(1.03);
    }
}



/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .blog_page_section {
        padding: 70px 18px;
    }


    .blog_page_grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }


    .blog_page_image_box {
        height: 220px;
    }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .blog_page_section {
        padding: 55px 15px;
    }


    .blog_page_heading {
        margin-bottom: 35px;
    }


    .blog_page_badge {
        font-size: 12px;

        padding: 8px 13px;
    }


    .blog_page_title {
        font-size: 30px;
    }


    .blog_page_title span {
        display: block;
    }


    .blog_page_description {
        font-size: 14px;

        line-height: 1.75;
    }


    .blog_page_grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .blog_page_card {
        border-radius: 17px;
    }


    .blog_page_image_box {
        height: 230px;
    }


    .blog_page_content {
        padding: 21px;
    }


    .blog_page_card_title {
        font-size: 20px;
    }

}



/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .blog_page_section {
        padding: 45px 12px;
    }


    .blog_page_image_box {
        height: 205px;
    }


    .blog_page_content {
        padding: 18px;
    }


    .blog_page_card_title {
        font-size: 18px;
    }


    .blog_page_card_description {
        font-size: 13px;
    }

}


/* =========================================
   BLOG PAGE END
========================================= */
/* blog page end  */
/* blog view page start  */
/* =========================================
   BLOG VIEW PAGE START
========================================= */

.blog_view_page_section {

    position: relative;

    padding: 85px 20px;

    background:
        radial-gradient(
            circle at 8% 8%,
            rgba(0, 174, 239, 0.07),
            transparent 30%
        ),
        #f7fbfd;

    overflow: hidden;
}


.blog_view_page_section::before {

    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    background:
        rgba(0, 174, 239, 0.035);

    top: -180px;
    left: -150px;

    animation:
        blog_view_page_float 8s ease-in-out infinite;
}


.blog_view_page_section::after {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background:
        rgba(0, 113, 188, 0.025);

    right: -120px;
    bottom: -130px;

    animation:
        blog_view_page_float_reverse 9s ease-in-out infinite;
}


.blog_view_page_container {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1250px;

    margin: 0 auto;
}



/* =========================================
   BACK BUTTON
========================================= */

.blog_view_page_back_button {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 25px;

    padding: 11px 18px;

    border-radius: 10px;

    background: #ffffff;

    border: 1px solid #e1edf2;

    color: #0071bc;

    font-size: 14px;

    font-weight: 600;

    box-shadow:
        0 8px 22px
        rgba(20, 70, 90, 0.06);

    transition:
        all 0.3s ease;
}


.blog_view_page_back_button:hover {

    color: #ffffff;

    background: #0071bc;

    border-color: #0071bc;

    transform:
        translateX(-5px);

    box-shadow:
        0 12px 25px
        rgba(0, 113, 188, 0.18);
}



/* =========================================
   MAIN LAYOUT
========================================= */

.blog_view_page_layout {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        360px;

    align-items: start;

    gap: 32px;
}



/* =========================================
   MAIN ARTICLE
========================================= */

.blog_view_page_article {

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e2edf1;

    border-radius: 24px;

    box-shadow:
        0 18px 55px
        rgba(20, 65, 85, 0.08);

    opacity: 0;

    transform:
        translateY(35px);

    animation:
        blog_view_page_reveal
        0.8s ease forwards;
}



/* =========================================
   MAIN IMAGE
========================================= */

.blog_view_page_image_box {

    width: 100%;

    height: 460px;

    overflow: hidden;

    background: #edf5f8;
}


.blog_view_page_image {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transform: scale(1.02);

    transition:
        transform 0.8s ease;
}


.blog_view_page_article:hover
.blog_view_page_image {

    transform: scale(1.05);
}



/* =========================================
   ARTICLE HEADER
========================================= */

.blog_view_page_header {

    padding:
        38px 42px 0;
}


.blog_view_page_meta {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 10px 20px;

    margin-bottom: 16px;
}


.blog_view_page_category {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding:
        7px 12px;

    border-radius: 8px;

    background: #eaf8fc;

    color: #0071bc;

    font-size: 11px;

    font-weight: 700;
}


.blog_view_page_date {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #7b8e98;

    font-size: 13px;
}


.blog_view_page_date i {

    color: #00aeef;
}


.blog_view_page_title {

    margin: 0;

    color: #092d40;

    font-size:
        clamp(30px, 4vw, 48px);

    line-height: 1.2;

    font-weight: 800;

    letter-spacing:
        -0.8px;
}


.blog_view_page_intro {

    margin:
        17px 0 0;

    color: #687c86;

    font-size: 16px;

    line-height: 1.8;
}



/* =========================================
   BLOG CONTENT
========================================= */

.blog_view_page_content {

    padding:
        32px 42px 38px;

    color: #536b77;

    font-size: 15px;

    line-height: 1.95;
}


.blog_view_page_content p {

    margin:
        0 0 20px;
}


.blog_view_page_content h2 {

    margin:
        35px 0 14px;

    color: #123b4d;

    font-size: 25px;

    line-height: 1.35;

    font-weight: 750;
}


.blog_view_page_content h2:first-child {

    margin-top: 0;
}


.blog_view_page_content ul {

    margin:
        10px 0 24px;

    padding-left: 23px;
}


.blog_view_page_content li {

    margin-bottom: 8px;

    padding-left: 5px;
}


.blog_view_page_content li::marker {

    color: #00aeef;
}



/* =========================================
   SHARE
========================================= */

.blog_view_page_share {

    display: flex;

    align-items: center;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 15px;

    margin:
        0 42px;

    padding:
        20px 0;

    border-top:
        1px solid #e6eef2;

    border-bottom:
        1px solid #e6eef2;
}


.blog_view_page_share_title {

    color: #385664;

    font-size: 14px;

    font-weight: 700;
}


.blog_view_page_share_buttons {

    display: flex;

    gap: 9px;
}


.blog_view_page_share_button {

    position: relative;

    overflow: hidden;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    font-size: 15px;

    transition:
        all 0.3s ease;
}


.blog_view_page_share_button:hover {

    color: #ffffff;

    transform:
        translateY(-4px)
        scale(1.04);

    box-shadow:
        0 9px 20px
        rgba(0, 0, 0, 0.15);
}


.blog_view_page_share_button.facebook {

    background: #1877f2;
}


.blog_view_page_share_button.whatsapp {

    background: #25d366;
}


.blog_view_page_share_button.linkedin {

    background: #0a66c2;
}



/* =========================================
   BOTTOM BUTTON
========================================= */

.blog_view_page_bottom {

    padding:
        25px 42px 35px;
}


.blog_view_page_button {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding:
        12px 18px;

    border-radius: 10px;

    background: #edf8fc;

    color: #0071bc;

    font-size: 13px;

    font-weight: 700;

    transition:
        all 0.3s ease;
}


.blog_view_page_button:hover {

    color: #ffffff;

    background: #0071bc;

    transform:
        translateX(-4px);

    box-shadow:
        0 10px 22px
        rgba(0, 113, 188, 0.16);
}



/* =========================================
   SIDEBAR
========================================= */

.blog_view_page_sidebar {

    position: sticky;

    top: 25px;

    display: flex;

    flex-direction: column;

    gap: 15px;
}


.blog_view_page_sidebar_header {

    padding:
        4px 3px 12px;
}


.blog_view_page_sidebar_badge {

    display: inline-block;

    margin-bottom: 8px;

    color: #00aeef;

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.blog_view_page_sidebar_header h2 {

    margin: 0;

    color: #123b4d;

    font-size: 25px;

    line-height: 1.3;

    font-weight: 800;
}



/* =========================================
   SMALL BLOG CARD
========================================= */

.blog_view_page_small_card {

    display: block;

    overflow: hidden;

    background: #ffffff;

    border:
        1px solid #e1edf2;

    border-radius: 15px;

    box-shadow:
        0 10px 28px
        rgba(20, 65, 85, 0.055);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

    opacity: 0;

    transform:
        translateX(25px);
}


.blog_view_page_small_card.is-visible {

    opacity: 1;

    transform:
        translateX(0);
}


.blog_view_page_small_card:hover {

    border-color:
        rgba(0, 174, 239, 0.35);

    transform:
        translateY(-5px);

    box-shadow:
        0 16px 35px
        rgba(20, 65, 85, 0.10);
}



/* =========================================
   SMALL CARD IMAGE
========================================= */

.blog_view_page_small_image {

    width: 100%;

    height: 155px;

    overflow: hidden;

    background: #edf5f8;
}


.blog_view_page_small_image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.55s ease;
}


.blog_view_page_small_card:hover
.blog_view_page_small_image img {

    transform:
        scale(1.07);
}



/* =========================================
   SMALL CARD CONTENT
========================================= */

.blog_view_page_small_content {

    padding:
        16px 17px 18px;
}


.blog_view_page_small_date {

    display: flex;

    align-items: center;

    gap: 6px;

    margin-bottom: 8px;

    color: #00aeef;

    font-size: 11px;

    font-weight: 600;
}


.blog_view_page_small_content h3 {

    margin: 0;

    color: #183d4e;

    font-size: 16px;

    line-height: 1.45;

    font-weight: 750;

    display:
        -webkit-box;

    /* -webkit-line-clamp: 2; */

    -webkit-box-orient: vertical;

    overflow: hidden;

    transition:
        color 0.3s ease;
}


.blog_view_page_small_card:hover
.blog_view_page_small_content h3 {

    color: #0071bc;
}


.blog_view_page_small_content p {

    margin:
        9px 0 0;

    color: #71838c;

    font-size: 12px;

    line-height: 1.65;

    display:
        -webkit-box;

    /* -webkit-line-clamp: 2; */

    -webkit-box-orient: vertical;

    overflow: hidden;
}



/* =========================================
   ANIMATIONS
========================================= */

@keyframes blog_view_page_reveal {

    from {

        opacity: 0;

        transform:
            translateY(35px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


@keyframes blog_view_page_float {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-22px);

    }

}


@keyframes blog_view_page_float_reverse {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(20px);

    }

}



/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .blog_view_page_section {

        padding:
            65px 18px;
    }


    .blog_view_page_layout {

        grid-template-columns:
            minmax(0, 1fr)
            300px;

        gap: 22px;
    }


    .blog_view_page_image_box {

        height: 400px;
    }


    .blog_view_page_header {

        padding:
            32px 30px 0;
    }


    .blog_view_page_content {

        padding:
            28px 30px 34px;
    }


    .blog_view_page_share {

        margin:
            0 30px;
    }


    .blog_view_page_bottom {

        padding:
            23px 30px 30px;
    }


    .blog_view_page_small_image {

        height: 130px;
    }


    .blog_view_page_small_content {

        padding:
            13px 14px 15px;
    }


    .blog_view_page_small_content h3 {

        font-size:
            14px;
    }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .blog_view_page_section {

        padding:
            50px 14px;
    }


    .blog_view_page_layout {

        grid-template-columns:
            1fr;

        gap: 30px;
    }


    .blog_view_page_sidebar {

        position: static;
    }


    .blog_view_page_sidebar_header {

        padding-top:
            5px;
    }


    .blog_view_page_image_box {

        height:
            300px;
    }


    .blog_view_page_header {

        padding:
            27px 22px 0;
    }


    .blog_view_page_title {

        font-size:
            30px;
    }


    .blog_view_page_content {

        padding:
            27px 22px 32px;
    }


    .blog_view_page_share {

        margin:
            0 22px;
    }


    .blog_view_page_bottom {

        padding:
            22px 22px 28px;
    }


    .blog_view_page_small_card {

        display:
            grid;

        grid-template-columns:
            145px
            minmax(0, 1fr);

        min-height:
            145px;
    }


    .blog_view_page_small_image {

        height:
            100%;
    }


    .blog_view_page_small_content {

        display:
            flex;

        flex-direction:
            column;

        justify-content:
            center;
    }

}



/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .blog_view_page_section {

        padding:
            42px 10px;
    }


    .blog_view_page_article {

        border-radius:
            18px;
    }


    .blog_view_page_image_box {

        height:
            230px;
    }


    .blog_view_page_header {

        padding:
            23px 17px 0;
    }


    .blog_view_page_title {

        font-size:
            26px;

        line-height:
            1.25;
    }


    .blog_view_page_intro {

        font-size:
            14px;

        line-height:
            1.75;
    }


    .blog_view_page_content {

        padding:
            23px 17px 28px;

        font-size:
            14px;

        line-height:
            1.85;
    }


    .blog_view_page_content h2 {

        font-size:
            21px;
    }


    .blog_view_page_share {

        margin:
            0 17px;

        align-items:
            flex-start;

        flex-direction:
            column;
    }


    .blog_view_page_bottom {

        padding:
            20px 17px 25px;
    }


    .blog_view_page_button {

        width: 100%;

        justify-content:
            center;
    }


    .blog_view_page_small_card {

        grid-template-columns:
            110px
            minmax(0, 1fr);

        min-height:
            120px;
    }


    .blog_view_page_small_content {

        padding:
            11px 12px;
    }


    .blog_view_page_small_content h3 {

        font-size:
            13px;
    }


    .blog_view_page_small_content p {

        font-size:
            11px;

        margin-top:
            6px;
    }


    .blog_view_page_small_date {

        font-size:
            10px;

        margin-bottom:
            5px;
    }

}



/* =========================================
   BLOG VIEW PAGE END
========================================= */
/* blog view page end  */
/* service work visa start  */
/* =========================================
   WORK VISA PAGE
========================================= */

.work_visa_page_container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================
   HERO
========================================= */

.work_visa_page_hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(0,174,239,.13),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f7fcff,
            #ffffff
        );
}


.work_visa_page_hero_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 55px;
}


.work_visa_page_hero_content {
    animation: workVisaHeroContent .8s ease both;
}


.work_visa_page_badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 15px;
    border-radius: 50px;
    color: #0071BC;
    background: #eaf8fd;
    border: 1px solid rgba(0,174,239,.15);
    font-size: 13px;
    font-weight: 700;
}


.work_visa_page_hero_content h1 {
    margin: 22px 0 18px;
    color: #082f43;
    font-size: clamp(38px,5vw,64px);
    line-height: 1.1;
    font-weight: 800;
}


.work_visa_page_hero_content h1 span {
    display: block;
    color: #0071BC;
}


.work_visa_page_hero_content > p {
    max-width: 600px;
    margin: 0;
    color: #637984;
    font-size: 17px;
    line-height: 1.8;
}


.work_visa_page_hero_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}


.work_visa_page_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 23px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    transition: .35s ease;
}


.work_visa_page_btn_primary {
    color: #fff;
    background: #0071BC;
    box-shadow: 0 12px 25px rgba(0,113,188,.2);
}


.work_visa_page_btn_primary:hover {
    color: #fff;
    background: #00AEEF;
    transform: translateY(-4px);
}


.work_visa_page_btn_secondary {
    color: #0071BC;
    background: #fff;
    border: 1px solid #dbeaf0;
}


.work_visa_page_btn_secondary:hover {
    color: #fff;
    background: #0071BC;
    transform: translateY(-4px);
}


.work_visa_page_hero_trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 27px;
}


.work_visa_page_hero_trust span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #637984;
    font-size: 12px;
}


.work_visa_page_hero_trust i {
    color: #00AEEF;
}



/* =========================================
   HERO IMAGE
========================================= */

.work_visa_page_hero_image {
    display: flex;
    justify-content: center;
    animation: workVisaHeroImage .9s ease both;
}


.work_visa_page_image_wrapper {
    position: relative;
    width: min(100%,520px);
}


.work_visa_page_image_wrapper::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background: rgba(0,174,239,.08);
    animation: workVisaPulse 4s ease-in-out infinite;
}


.work_visa_page_image_wrapper img {
    position: relative;
    z-index: 2;
    width: 100%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 25px 35px rgba(0,60,90,.13));
    animation: workVisaImageFloat 5s ease-in-out infinite;
}


.work_visa_page_float_card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 16px;
    border-radius: 13px;
    background: rgba(255,255,255,.95);
    border: 1px solid #e2eef2;
    box-shadow: 0 15px 35px rgba(0,60,90,.12);
    backdrop-filter: blur(10px);
}


.work_visa_page_float_card_one {
    top: 15%;
    left: -20px;
    animation: workVisaFloatCard 4s ease-in-out infinite;
}


.work_visa_page_float_card_two {
    right: -15px;
    bottom: 14%;
    animation: workVisaFloatCard 4s 1s ease-in-out infinite;
}


.work_visa_page_float_icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg,#0071BC,#00AEEF);
}


.work_visa_page_float_card strong,
.work_visa_page_float_card small {
    display: block;
}


.work_visa_page_float_card strong {
    color: #173d4d;
    font-size: 12px;
}


.work_visa_page_float_card small {
    margin-top: 3px;
    color: #7a8d96;
    font-size: 10px;
}



/* =========================================
   SECTION HEADING
========================================= */

.work_visa_page_section_heading {
    max-width: 720px;
    margin: 0 auto 45px;
    text-align: center;
}


.work_visa_page_section_heading > span {
    color: #00AEEF;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


.work_visa_page_section_heading h2 {
    margin: 11px 0 12px;
    color: #12394a;
    font-size: clamp(29px,4vw,42px);
    line-height: 1.2;
}


.work_visa_page_section_heading h2 strong {
    color: #0071BC;
}


.work_visa_page_section_heading p {
    margin: 0;
    color: #71858e;
    font-size: 15px;
    line-height: 1.8;
}



/* =========================================
   WHY
========================================= */

.work_visa_page_why_section {
    padding: 85px 0;
    background: #fff;
}


.work_visa_page_why_grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}


.work_visa_page_why_card {
    padding: 28px 22px;
    text-align: center;
    border: 1px solid #e3edf1;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(20,70,90,.045);
    transition: .4s ease;
    opacity: 0;
    transform: translateY(30px);
}


.work_visa_page_why_card.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.work_visa_page_why_card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,174,239,.35);
    box-shadow: 0 18px 40px rgba(20,70,90,.09);
}


.work_visa_page_card_icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg,#0071BC,#00AEEF);
    font-size: 20px;
}


.work_visa_page_why_card h3 {
    margin: 0 0 9px;
    color: #163e4f;
    font-size: 17px;
}


.work_visa_page_why_card p {
    margin: 0;
    color: #71858e;
    font-size: 13px;
    line-height: 1.7;
}



/* =========================================
   COUNTRY
========================================= */

.work_visa_page_country_section {
    padding: 85px 0;
    background: #f7fbfd;
}


.work_visa_page_country_grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}


.work_visa_page_country_card {
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(20,70,90,.07);
    transition: .4s ease;
    opacity: 0;
    transform: translateY(30px);
}


.work_visa_page_country_card.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.work_visa_page_country_card:hover {
    transform: translateY(-7px);
}


.work_visa_page_country_image {
    height: 190px;
    overflow: hidden;
}


.work_visa_page_country_image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: .5s ease;
}


.work_visa_page_country_card:hover img {
    transform: scale(1.08);
}


.work_visa_page_country_content {
    padding: 18px;
}


.work_visa_page_country_content span {
    color: #00AEEF;
    font-size: 10px;
    font-weight: 700;
}


.work_visa_page_country_content h3 {
    margin: 7px 0 13px;
    color: #153e4f;
    font-size: 17px;
}


.work_visa_page_country_content a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #0071BC;
    font-size: 12px;
    font-weight: 700;
}



/* =========================================
   PROCESS
========================================= */

.work_visa_page_process_section {
    padding: 85px 0;
    background: #fff;
}


.work_visa_page_process_grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}


.work_visa_page_process_card {
    position: relative;
    padding: 28px 22px;
    border-radius: 18px;
    border: 1px solid #e2edf1;
    background: #fff;
    transition: .4s ease;
    opacity: 0;
    transform: translateY(30px);
}


.work_visa_page_process_card.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.work_visa_page_process_card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 35px rgba(20,70,90,.08);
}


.work_visa_page_process_number {
    position: absolute;
    top: 14px;
    right: 16px;
    color: #e6f4f9;
    font-size: 30px;
    font-weight: 900;
}


.work_visa_page_process_icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: #0071BC;
    background: #eaf8fd;
}


.work_visa_page_process_card h3 {
    margin: 0 0 9px;
    color: #173f50;
    font-size: 17px;
}


.work_visa_page_process_card p {
    margin: 0;
    color: #71858e;
    font-size: 13px;
    line-height: 1.7;
}



/* =========================================
   DOCUMENT
========================================= */

.work_visa_page_document_section {
    padding: 85px 0;
    background: #f7fbfd;
}


.work_visa_page_document_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}


.work_visa_page_document_content > span {
    color: #00AEEF;
    font-size: 12px;
    font-weight: 800;
}


.work_visa_page_document_content h2 {
    margin: 12px 0 15px;
    color: #153e4f;
    font-size: clamp(30px,4vw,43px);
}


.work_visa_page_document_content h2 strong {
    display: block;
    color: #0071BC;
}


.work_visa_page_document_content > p {
    max-width: 580px;
    color: #71858e;
    font-size: 15px;
    line-height: 1.8;
}


.work_visa_page_document_list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 11px;
    margin-top: 25px;
}


.work_visa_page_document_list div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #45616d;
    font-size: 13px;
}


.work_visa_page_document_list i {
    color: #00AEEF;
}


.work_visa_page_document_image img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: auto;
    animation: workVisaImageFloat 5s ease-in-out infinite;
}



/* =========================================
   FAQ
========================================= */

.work_visa_page_faq_section {
    padding: 85px 0;
    background: #fff;
}


.work_visa_page_faq {
    max-width: 850px;
    margin: auto;
}


.work_visa_page_faq_item {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid #e1edf2;
    border-radius: 13px;
    background: #fff;
}


.work_visa_page_faq_item button {
    width: 100%;
    padding: 19px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border: 0;
    background: transparent;
    color: #173e4f;
    text-align: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}


.work_visa_page_faq_item button i {
    color: #0071BC;
    transition: .3s ease;
}


.work_visa_page_faq_item.active button i {
    transform: rotate(45deg);
}


.work_visa_page_faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}


.work_visa_page_faq_answer p {
    margin: 0;
    padding: 0 20px 19px;
    color: #71858e;
    font-size: 13px;
    line-height: 1.8;
}



/* =========================================
   CTA
========================================= */

.work_visa_page_cta_section {
    padding: 25px 0 85px;
    background: #fff;
}


.work_visa_page_cta {
    position: relative;
    overflow: hidden;
    padding: 65px 30px;
    text-align: center;
    border-radius: 25px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(0,174,239,.28),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #005d9c,
            #0071BC
        );
    box-shadow: 0 25px 50px rgba(0,71,120,.18);
}


.work_visa_page_cta::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    left: -80px;
    bottom: -120px;
}


.work_visa_page_cta_icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #0071BC;
    background: #fff;
    font-size: 23px;
    animation: workVisaIconFloat 3s ease-in-out infinite;
}


.work_visa_page_cta > span {
    color: #bdefff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}


.work_visa_page_cta h2 {
    margin: 11px 0;
    color: #fff;
    font-size: clamp(29px,4vw,43px);
}


.work_visa_page_cta h2 strong {
    color: #b9efff;
}


.work_visa_page_cta p {
    max-width: 550px;
    margin: 0 auto;
    color: #e1f5fc;
    font-size: 14px;
    line-height: 1.7;
}


.work_visa_page_cta_buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}


.work_visa_page_cta_primary,
.work_visa_page_cta_secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 13px 21px;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 700;
    transition: .35s ease;
}


.work_visa_page_cta_primary {
    color: #0071BC;
    background: #fff;
}


.work_visa_page_cta_secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.08);
}


.work_visa_page_cta_primary:hover,
.work_visa_page_cta_secondary:hover {
    color: #0071BC;
    background: #bdefff;
    transform: translateY(-4px);
}



/* =========================================
   ANIMATIONS
========================================= */

@keyframes workVisaHeroContent {
    from {
        opacity: 0;
        transform: translateX(-35px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes workVisaHeroImage {
    from {
        opacity: 0;
        transform: translateX(35px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes workVisaImageFloat {
    0%,100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


@keyframes workVisaFloatCard {
    0%,100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}


@keyframes workVisaPulse {
    0%,100% {
        transform: translate(-50%,-50%) scale(1);
        opacity: .7;
    }
    50% {
        transform: translate(-50%,-50%) scale(1.12);
        opacity: 1;
    }
}


@keyframes workVisaIconFloat {
    0%,100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}



/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .work_visa_page_hero {
        padding: 70px 0;
    }

    .work_visa_page_hero_row {
        gap: 30px;
    }

    .work_visa_page_why_grid,
    .work_visa_page_country_grid,
    .work_visa_page_process_grid {
        grid-template-columns: repeat(2,1fr);
    }

    .work_visa_page_document_row {
        gap: 30px;
    }

    .work_visa_page_float_card_one {
        left: -5px;
    }

    .work_visa_page_float_card_two {
        right: -5px;
    }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .work_visa_page_container {
        padding: 0 16px;
    }

    .work_visa_page_hero {
        padding: 55px 0 70px;
    }

    .work_visa_page_hero_row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .work_visa_page_hero_content > p {
        margin: auto;
    }

    .work_visa_page_hero_buttons,
    .work_visa_page_hero_trust {
        justify-content: center;
    }

    .work_visa_page_hero_image {
        margin-top: 25px;
    }

    .work_visa_page_why_section,
    .work_visa_page_country_section,
    .work_visa_page_process_section,
    .work_visa_page_document_section,
    .work_visa_page_faq_section {
        padding: 65px 0;
    }

    .work_visa_page_document_row {
        grid-template-columns: 1fr;
    }

    .work_visa_page_document_content {
        text-align: center;
    }

    .work_visa_page_document_content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .work_visa_page_document_list {
        text-align: left;
    }

    .work_visa_page_document_image {
        margin-top: 15px;
    }

    .work_visa_page_cta_section {
        padding: 10px 0 65px;
    }

}



/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 520px) {

    .work_visa_page_container {
        padding: 0 13px;
    }

    .work_visa_page_hero_content h1 {
        font-size: 35px;
    }

    .work_visa_page_hero_content > p {
        font-size: 14px;
    }

    .work_visa_page_btn {
        width: 100%;
    }

    .work_visa_page_hero_trust {
        flex-direction: column;
        align-items: center;
    }

    .work_visa_page_float_card {
        padding: 9px 11px;
    }

    .work_visa_page_float_card_one {
        left: 0;
    }

    .work_visa_page_float_card_two {
        right: 0;
    }

    .work_visa_page_float_icon {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .work_visa_page_float_card strong {
        font-size: 10px;
    }

    .work_visa_page_float_card small {
        font-size: 8px;
    }

    .work_visa_page_why_grid,
    .work_visa_page_country_grid,
    .work_visa_page_process_grid {
        grid-template-columns: 1fr;
    }

    .work_visa_page_document_list {
        grid-template-columns: 1fr;
    }

    .work_visa_page_country_image {
        height: 210px;
    }

    .work_visa_page_cta {
        padding: 48px 18px;
        border-radius: 20px;
    }

    .work_visa_page_cta_primary,
    .work_visa_page_cta_secondary {
        width: 100%;
    }

}



/* =========================================
   WORK VISA PAGE END
========================================= */
/* service work visa end  */
/* service tourist visa start  */
/* =========================================
   TOURIST VISA PAGE START
========================================= */

.tourist_visa_page {
    --tourist_blue: #0077b6;
    --tourist_dark: #062b3d;
    --tourist_light_blue: #eaf8ff;
    --tourist_border: #dcecf3;
    --tourist_text: #5d6d76;
    --tourist_white: #ffffff;

    font-family: "Poppins", sans-serif;
    color: var(--tourist_dark);
    overflow: hidden;
    background: #ffffff;
}

.tourist_visa_page *,
.tourist_visa_page *::before,
.tourist_visa_page *::after {
    box-sizing: border-box;
}

.tourist_visa_container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================
   HERO
========================================= */

.tourist_visa_hero_section {
    position: relative;
    padding: 90px 0 85px;
    background:
        radial-gradient(circle at 90% 10%,
            rgba(0, 160, 220, .12),
            transparent 30%),
        linear-gradient(135deg, #f9fdff, #edf9ff);
}

.tourist_visa_hero_container {
    width: min(1200px, calc(100% - 40px));
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.tourist_visa_hero_content {
    opacity: 0;
    transform: translateX(-40px);
    transition: .8s ease;
}

.tourist_visa_hero_content.tourist_visa_active {
    opacity: 1;
    transform: translateX(0);
}

.tourist_visa_hero_badge,
.tourist_visa_section_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 16px;

    border: 1px solid #bde5f5;
    border-radius: 50px;

    color: var(--tourist_blue);
    background: rgba(255,255,255,.7);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
}

.tourist_visa_hero_title {
    margin: 22px 0 18px;

    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.04;
    letter-spacing: -2px;
    font-weight: 800;
}

.tourist_visa_hero_title span {
    display: block;
    color: var(--tourist_blue);
}

.tourist_visa_hero_description {
    max-width: 600px;

    margin-bottom: 28px;

    color: var(--tourist_text);

    font-size: 16px;
    line-height: 1.8;
}

.tourist_visa_hero_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tourist_visa_primary_button,
.tourist_visa_secondary_button {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 13px 22px;

    border-radius: 13px;

    font-size: 14px;
    font-weight: 700;

    transition: .35s ease;
}

.tourist_visa_primary_button {
    background: var(--tourist_blue);
    color: white;
    box-shadow: 0 12px 30px rgba(0,119,182,.22);
}

.tourist_visa_primary_button:hover {
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0,119,182,.32);
}

.tourist_visa_secondary_button {
    border: 1px solid #c9dce5;
    background: white;
    color: var(--tourist_dark);
}

.tourist_visa_secondary_button:hover {
    color: var(--tourist_blue);
    border-color: var(--tourist_blue);
    transform: translateY(-4px);
}

.tourist_visa_hero_features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;

    margin-top: 28px;
}

.tourist_visa_hero_feature {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #506673;
    font-size: 13px;
    font-weight: 600;
}

.tourist_visa_hero_feature i {
    color: #0b9ad6;
}


/* =========================================
   HERO IMAGE
========================================= */

.tourist_visa_hero_image_area {
    min-height: 500px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transform: translateX(40px);
    transition: .9s ease;
}

.tourist_visa_hero_image_area.tourist_visa_active {
    opacity: 1;
    transform: translateX(0);
}

.tourist_visa_hero_circle {
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #dff6ff,
        #bceafa
    );

    animation: touristVisaFloat 5s ease-in-out infinite;
}

.tourist_visa_hero_image {
    position: relative;
    z-index: 2;

    width: min(550px, 100%);
    height: auto;

    filter: drop-shadow(0 25px 30px rgba(0,50,70,.15));
}

.tourist_visa_floating_card {
    position: absolute;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 16px;

    border: 1px solid rgba(255,255,255,.8);
    border-radius: 14px;

    background: rgba(255,255,255,.9);
    backdrop-filter: blur(12px);

    box-shadow: 0 15px 35px rgba(0,60,90,.14);

    animation: touristVisaCardFloat 4s ease-in-out infinite;
}

.tourist_visa_card_one {
    left: 0;
    top: 27%;
}

.tourist_visa_card_two {
    right: 0;
    bottom: 22%;
    animation-delay: 1s;
}

.tourist_visa_card_icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: white;
    background: var(--tourist_blue);
}

.tourist_visa_floating_card strong,
.tourist_visa_floating_card small {
    display: block;
}

.tourist_visa_floating_card strong {
    font-size: 13px;
}

.tourist_visa_floating_card small {
    margin-top: 2px;

    color: #71838c;
    font-size: 10px;
}


/* =========================================
   SECTION HEADING
========================================= */

.tourist_visa_section_heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.tourist_visa_section_heading h2 {
    margin: 15px 0 12px;

    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    letter-spacing: -1px;
}

.tourist_visa_section_heading h2 span {
    color: var(--tourist_blue);
}

.tourist_visa_section_heading p {
    margin: 0 auto;

    color: var(--tourist_text);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   WHY CHOOSE US
========================================= */

.tourist_visa_why_section {
    padding: 90px 0;

    background: white;
}

.tourist_visa_feature_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.tourist_visa_feature_card {
    position: relative;

    padding: 28px 23px;

    border: 1px solid var(--tourist_border);
    border-radius: 20px;

    background: white;

    overflow: hidden;

    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity .7s ease,
        transform .7s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.tourist_visa_feature_card.tourist_visa_active {
    opacity: 1;
    transform: translateY(0);
}

.tourist_visa_feature_card:hover {
    border-color: #a9dced;
    box-shadow: 0 20px 40px rgba(0,80,120,.1);
    transform: translateY(-8px);
}

.tourist_visa_feature_number {
    position: absolute;
    top: 15px;
    right: 18px;

    color: #dceff6;
    font-size: 35px;
    font-weight: 800;
}

.tourist_visa_feature_icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 15px;

    color: var(--tourist_blue);
    background: #e8f7fd;

    font-size: 21px;
}

.tourist_visa_feature_card h3 {
    margin-bottom: 9px;
    font-size: 18px;
}

.tourist_visa_feature_card p {
    margin: 0;

    color: var(--tourist_text);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================
   DESTINATION
========================================= */

.tourist_visa_destination_section {
    padding: 90px 0;

    background: #f6fbfd;
}

.tourist_visa_destination_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.tourist_visa_destination_card {
    overflow: hidden;

    border: 1px solid var(--tourist_border);
    border-radius: 18px;

    background: white;

    opacity: 0;
    transform: translateY(35px);

    transition: .7s ease;
}

.tourist_visa_destination_card.tourist_visa_active {
    opacity: 1;
    transform: translateY(0);
}

.tourist_visa_destination_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,80,120,.13);
}

.tourist_visa_destination_image {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.tourist_visa_destination_image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.tourist_visa_destination_card:hover
.tourist_visa_destination_image img {
    transform: scale(1.08);
}

.tourist_visa_destination_image span {
    position: absolute;
    top: 12px;
    left: 12px;

    padding: 5px 10px;

    border-radius: 30px;

    color: white;
    background: var(--tourist_blue);

    font-size: 10px;
    font-weight: 700;
}

.tourist_visa_destination_content {
    padding: 18px;
}

.tourist_visa_destination_content h3 {
    margin: 0 0 5px;
    font-size: 19px;
}

.tourist_visa_destination_content p {
    margin: 0 0 15px;

    color: var(--tourist_text);
    font-size: 12px;
}

.tourist_visa_destination_content a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--tourist_blue);
    font-size: 12px;
    font-weight: 700;

    transition: .3s ease;
}

.tourist_visa_destination_content a:hover {
    gap: 12px;
}


/* =========================================
   PROCESS
========================================= */

.tourist_visa_process_section {
    padding: 90px 0;
    background: white;
}

.tourist_visa_process_grid {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tourist_visa_process_line {
    position: absolute;

    top: 38px;
    left: 12%;
    right: 12%;

    height: 2px;

    background: #d8edf5;
}

.tourist_visa_process_card {
    position: relative;
    z-index: 2;

    text-align: center;

    opacity: 0;
    transform: translateY(30px);

    transition: .7s ease;
}

.tourist_visa_process_card.tourist_visa_active {
    opacity: 1;
    transform: translateY(0);
}

.tourist_visa_process_icon {
    position: relative;

    width: 76px;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border: 6px solid white;
    border-radius: 50%;

    color: var(--tourist_blue);
    background: #e7f7fd;

    box-shadow: 0 5px 20px rgba(0,100,140,.12);

    font-size: 22px;
}

.tourist_visa_process_icon span {
    position: absolute;

    right: -5px;
    bottom: -5px;

    width: 23px;
    height: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: white;
    background: var(--tourist_blue);

    font-size: 9px;
    font-weight: 700;
}

.tourist_visa_process_card h3 {
    margin-bottom: 8px;
    font-size: 17px;
}

.tourist_visa_process_card p {
    max-width: 230px;
    margin: auto;

    color: var(--tourist_text);
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================
   DOCUMENTS
========================================= */

.tourist_visa_documents_section {
    padding: 90px 0;
    background: #f6fbfd;
}

.tourist_visa_documents_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tourist_visa_documents_content h2 {
    margin: 17px 0;

    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.15;
}

.tourist_visa_documents_content h2 span {
    display: block;
    color: var(--tourist_blue);
}

.tourist_visa_documents_content > p {
    max-width: 570px;

    color: var(--tourist_text);
    font-size: 14px;
    line-height: 1.8;
}

.tourist_visa_document_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;

    margin-top: 28px;
}

.tourist_visa_document_list div {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #3f5966;
    font-size: 13px;
    font-weight: 600;
}

.tourist_visa_document_list i {
    color: var(--tourist_blue);
}

.tourist_visa_documents_visual {
    min-height: 430px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.tourist_visa_document_circle {
    width: 360px;
    height: 360px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #dff6ff,
        #bde9f7
    );

    animation: touristVisaFloat 5s ease-in-out infinite;
}

.tourist_visa_big_icon {
    position: absolute;

    color: var(--tourist_blue);
    font-size: 110px;

    filter: drop-shadow(0 15px 20px rgba(0,80,120,.15));
}

.tourist_visa_document_item {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 13px 17px;

    border: 1px solid white;
    border-radius: 12px;

    background: rgba(255,255,255,.9);
    box-shadow: 0 12px 30px rgba(0,80,110,.12);

    color: var(--tourist_dark);

    font-size: 12px;
    font-weight: 600;

    animation: touristVisaCardFloat 4s ease-in-out infinite;
}

.tourist_visa_document_item i {
    color: var(--tourist_blue);
}

.item_one {
    top: 15%;
    left: 3%;
}

.item_two {
    right: 0;
    top: 35%;
    animation-delay: .7s;
}

.item_three {
    bottom: 15%;
    left: 12%;
    animation-delay: 1.3s;
}


/* =========================================
   FAQ
========================================= */

.tourist_visa_faq_section {
    padding: 90px 0;
    background: white;
}

.tourist_visa_faq_wrapper {
    max-width: 850px;
    margin: auto;
}

.tourist_visa_faq_item {
    margin-bottom: 12px;

    border: 1px solid var(--tourist_border);
    border-radius: 14px;

    overflow: hidden;

    transition: .3s ease;
}

.tourist_visa_faq_item.active {
    border-color: #a7ddeb;
    box-shadow: 0 10px 30px rgba(0,80,120,.07);
}

.tourist_visa_faq_question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px;

    border: 0;
    outline: 0;

    background: white;

    color: var(--tourist_dark);

    text-align: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
}

.tourist_visa_faq_question i {
    color: var(--tourist_blue);

    transition: .3s ease;
}

.tourist_visa_faq_item.active
.tourist_visa_faq_question i {
    transform: rotate(45deg);
}

.tourist_visa_faq_answer {
    max-height: 0;
    overflow: hidden;

    transition: max-height .4s ease;
}

.tourist_visa_faq_answer p {
    margin: 0;
    padding: 0 20px 20px;

    color: var(--tourist_text);
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================
   CTA
========================================= */

.tourist_visa_cta_section {
    padding: 30px 0 90px;
}

.tourist_visa_cta_box {
    position: relative;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 25px;

    padding: 35px 40px;

    overflow: hidden;

    border-radius: 24px;

    background:
        radial-gradient(circle at 100% 0,
            rgba(255,255,255,.15),
            transparent 30%),
        linear-gradient(
            120deg,
            #006b9f,
            #009ddd
        );

    color: white;

    box-shadow: 0 25px 50px rgba(0,100,160,.2);

    opacity: 0;
    transform: translateY(30px);
    transition: .8s ease;
}

.tourist_visa_cta_box.tourist_visa_active {
    opacity: 1;
    transform: translateY(0);
}

.tourist_visa_cta_icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background: rgba(255,255,255,.15);

    font-size: 24px;
}

.tourist_visa_cta_content span {
    font-size: 12px;
    opacity: .8;
}

.tourist_visa_cta_content h2 {
    margin: 5px 0;

    font-size: clamp(24px, 3vw, 35px);
}

.tourist_visa_cta_content strong {
    color: #dff8ff;
}

.tourist_visa_cta_content p {
    margin: 0;

    max-width: 600px;

    font-size: 12px;
    line-height: 1.7;

    opacity: .85;
}

.tourist_visa_cta_button {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 14px 20px;

    border-radius: 12px;

    background: white;
    color: var(--tourist_blue);

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    transition: .3s ease;
}

.tourist_visa_cta_button:hover {
    color: var(--tourist_blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,.15);
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes touristVisaFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes touristVisaCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .tourist_visa_hero_container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tourist_visa_hero_content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .tourist_visa_hero_description {
        max-width: 700px;
    }

    .tourist_visa_hero_image_area {
        min-height: 430px;
        max-width: 650px;
        width: 100%;
        margin: auto;
    }

    .tourist_visa_feature_grid,
    .tourist_visa_destination_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tourist_visa_process_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 25px;
    }

    .tourist_visa_process_line {
        display: none;
    }

    .tourist_visa_documents_wrapper {
        grid-template-columns: 1fr;
    }

    .tourist_visa_documents_visual {
        max-width: 550px;
        width: 100%;
        margin: auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .tourist_visa_container,
    .tourist_visa_hero_container {
        width: min(100% - 28px, 1200px);
    }

    .tourist_visa_hero_section {
        padding: 55px 0;
    }

    .tourist_visa_hero_title {
        font-size: clamp(34px, 10vw, 48px);
        letter-spacing: -1px;
    }

    .tourist_visa_hero_description {
        font-size: 14px;
    }

    .tourist_visa_hero_buttons {
        width: 100%;
        flex-direction: column;
    }

    .tourist_visa_primary_button,
    .tourist_visa_secondary_button {
        width: 100%;
    }

    .tourist_visa_hero_features {
        justify-content: center;
        gap: 10px;
    }

    .tourist_visa_hero_feature {
        font-size: 11px;
    }

    .tourist_visa_hero_image_area {
        min-height: 330px;
    }

    .tourist_visa_hero_circle {
        width: 280px;
        height: 280px;
    }

    .tourist_visa_floating_card {
        padding: 8px 10px;
    }

    .tourist_visa_card_one {
        left: 0;
        top: 20%;
    }

    .tourist_visa_card_two {
        right: 0;
        bottom: 15%;
    }

    .tourist_visa_card_icon {
        width: 34px;
        height: 34px;
    }

    .tourist_visa_floating_card strong {
        font-size: 10px;
    }

    .tourist_visa_floating_card small {
        font-size: 8px;
    }

    .tourist_visa_why_section,
    .tourist_visa_destination_section,
    .tourist_visa_process_section,
    .tourist_visa_documents_section,
    .tourist_visa_faq_section {
        padding: 60px 0;
    }

    .tourist_visa_section_heading {
        margin-bottom: 32px;
    }

    .tourist_visa_section_heading h2 {
        font-size: 29px;
    }

    .tourist_visa_section_heading p {
        font-size: 13px;
    }

    .tourist_visa_feature_grid,
    .tourist_visa_destination_grid,
    .tourist_visa_process_grid {
        grid-template-columns: 1fr;
    }

    .tourist_visa_feature_card {
        padding: 24px 20px;
    }

    .tourist_visa_destination_image {
        height: 220px;
    }

    .tourist_visa_process_grid {
        gap: 30px;
    }

    .tourist_visa_documents_wrapper {
        gap: 35px;
    }

    .tourist_visa_documents_content h2 {
        font-size: 30px;
    }

    .tourist_visa_document_list {
        grid-template-columns: 1fr;
    }

    .tourist_visa_documents_visual {
        min-height: 320px;
    }

    .tourist_visa_document_circle {
        width: 260px;
        height: 260px;
    }

    .tourist_visa_big_icon {
        font-size: 75px;
    }

    .tourist_visa_document_item {
        padding: 9px 12px;
        font-size: 10px;
    }

    .item_one {
        top: 5%;
    }

    .item_two {
        right: 0;
        top: 35%;
    }

    .item_three {
        bottom: 7%;
        left: 3%;
    }

    .tourist_visa_cta_section {
        padding: 10px 0 60px;
    }

    .tourist_visa_cta_box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
    }

    .tourist_visa_cta_icon {
        margin: auto;
    }

    .tourist_visa_cta_button {
        width: 100%;
        justify-content: center;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .tourist_visa_hero_title {
        font-size: 32px;
    }

    .tourist_visa_section_heading h2 {
        font-size: 27px;
    }

    .tourist_visa_hero_features {
        flex-direction: column;
        align-items: center;
    }

    .tourist_visa_hero_image_area {
        min-height: 290px;
    }

    .tourist_visa_hero_circle {
        width: 235px;
        height: 235px;
    }

    .tourist_visa_floating_card {
        transform: scale(.85);
    }

}


/* =========================================
   TOURIST VISA PAGE END
========================================= */
/* service tourist visa end  */
/* service hajj and umrah visa start  */
/* =========================================
   HAJJ & UMRAH VISA PAGE
========================================= */

.hajj_umrah_visa_page_section {
    --hu-primary: #0077b6;
    --hu-primary-dark: #005b8f;
    --hu-secondary: #08a8e0;
    --hu-dark: #061b2b;
    --hu-text: #173042;
    --hu-muted: #657786;
    --hu-bg: #f5fbfe;
    --hu-white: #ffffff;
    --hu-border: rgba(0, 119, 182, 0.12);

    font-family: "Poppins", sans-serif;
    color: var(--hu-text);
    background: #fff;
    overflow: hidden;
}


/* =========================================
   CONTAINER
========================================= */

.hajj_umrah_visa_container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================
   HERO
========================================= */

.hajj_umrah_visa_hero_section {
    position: relative;
    padding: 90px 0 85px;
    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(8, 168, 224, 0.14),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #f8fdff,
            #eef9fd
        );
}

.hajj_umrah_visa_hero_grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    align-items: center;
    gap: 50px;
}

.hajj_umrah_visa_hero_content {
    position: relative;
    z-index: 2;
}

.hajj_umrah_visa_badge,
.hajj_umrah_visa_small_badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 17px;
    border: 1px solid rgba(0,119,182,.2);
    border-radius: 50px;
    background: rgba(255,255,255,.75);
    color: var(--hu-primary);
    font-size: 13px;
    font-weight: 700;
}

.hajj_umrah_visa_hero_content h1 {
    max-width: 680px;
    margin: 25px 0 20px;
    color: var(--hu-dark);
    font-size: clamp(43px, 5vw, 70px);
    line-height: 1.05;
    letter-spacing: -2.5px;
    font-weight: 800;
}

.hajj_umrah_visa_hero_content h1 span {
    display: block;
    color: var(--hu-primary);
}

.hajj_umrah_visa_hero_content p {
    max-width: 650px;
    margin: 0;
    color: var(--hu-muted);
    font-size: 16px;
    line-height: 1.85;
}

.hajj_umrah_visa_hero_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hajj_umrah_visa_primary_btn,
.hajj_umrah_visa_secondary_btn {
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: .35s ease;
}

.hajj_umrah_visa_primary_btn {
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--hu-primary),
        var(--hu-secondary)
    );
    box-shadow: 0 14px 30px rgba(0,119,182,.2);
}

.hajj_umrah_visa_primary_btn:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0,119,182,.3);
}

.hajj_umrah_visa_secondary_btn {
    color: var(--hu-primary);
    border: 1px solid rgba(0,119,182,.2);
    background: #fff;
}

.hajj_umrah_visa_secondary_btn:hover {
    color: var(--hu-primary);
    transform: translateY(-4px);
    border-color: var(--hu-primary);
}

.hajj_umrah_visa_trust_items {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 24px;
}

.hajj_umrah_visa_trust_items span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #456273;
    font-size: 13px;
    font-weight: 600;
}

.hajj_umrah_visa_trust_items i {
    color: var(--hu-primary);
}


/* =========================================
   HERO IMAGE
========================================= */

.hajj_umrah_visa_hero_image_area {
    min-height: 510px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hajj_umrah_visa_hero_blob {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: linear-gradient(
        145deg,
        #dff5fd,
        #bde7f6
    );
    animation: huBlobFloat 5s ease-in-out infinite;
}

.hajj_umrah_visa_hero_image {
    position: relative;
    z-index: 2;
    width: min(560px, 100%);
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 25px 35px rgba(0,50,80,.14));
    animation: huImageFloat 5s ease-in-out infinite;
}

.hajj_umrah_visa_floating_card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 16px;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 15px;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0,50,80,.12);
    animation: huCardFloat 4s ease-in-out infinite;
}

.hajj_umrah_visa_floating_card strong {
    display: block;
    color: var(--hu-dark);
    font-size: 13px;
}

.hajj_umrah_visa_floating_card small {
    display: block;
    margin-top: 2px;
    color: #71818b;
    font-size: 10px;
}

.hajj_umrah_visa_float_icon {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--hu-primary),
        var(--hu-secondary)
    );
}

.card_one {
    top: 18%;
    left: 0;
}

.card_two {
    right: 0;
    bottom: 18%;
    animation-delay: 1s;
}


/* =========================================
   SECTION HEADING
========================================= */

.hajj_umrah_visa_section_heading {
    max-width: 700px;
    margin: 0 auto 48px;
    text-align: center;
}

.hajj_umrah_visa_section_heading > span {
    color: var(--hu-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.hajj_umrah_visa_section_heading h2 {
    margin: 12px 0;
    color: var(--hu-dark);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    letter-spacing: -1.3px;
}

.hajj_umrah_visa_section_heading h2 strong {
    color: var(--hu-primary);
}

.hajj_umrah_visa_section_heading p {
    margin: 0;
    color: var(--hu-muted);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   WHY CHOOSE US
========================================= */

.hajj_umrah_visa_why_section {
    padding: 90px 0;
    background: #fff;
}

.hajj_umrah_visa_why_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.hajj_umrah_visa_feature_card {
    position: relative;
    overflow: hidden;
    padding: 28px 24px;
    border: 1px solid var(--hu-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0,70,100,.05);
    transition: .4s ease;
}

.hajj_umrah_visa_feature_card:hover {
    transform: translateY(-9px);
    box-shadow: 0 20px 45px rgba(0,100,150,.12);
    border-color: rgba(0,119,182,.25);
}

.hajj_umrah_visa_feature_card > span {
    position: absolute;
    top: 20px;
    right: 22px;
    color: #dcecf3;
    font-size: 25px;
    font-weight: 800;
}

.hajj_umrah_visa_feature_icon {
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--hu-primary);
    background: #eaf8fd;
    font-size: 21px;
}

.hajj_umrah_visa_feature_card h3 {
    margin: 0 0 10px;
    color: var(--hu-dark);
    font-size: 18px;
}

.hajj_umrah_visa_feature_card p {
    margin: 0;
    color: var(--hu-muted);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================
   SERVICES
========================================= */

.hajj_umrah_visa_services_section {
    padding: 90px 0;
    background: var(--hu-bg);
}

.hajj_umrah_visa_services_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hajj_umrah_visa_service_card {
    position: relative;
    overflow: hidden;
    padding: 32px 25px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--hu-border);
    transition: .4s ease;
}

.hajj_umrah_visa_service_card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--hu-primary),
        var(--hu-secondary)
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s ease;
}

.hajj_umrah_visa_service_card:hover::before {
    transform: scaleX(1);
}

.hajj_umrah_visa_service_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,80,120,.1);
}

.hajj_umrah_visa_service_number {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #e7f3f8;
    font-size: 26px;
    font-weight: 800;
}

.hajj_umrah_visa_service_icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--hu-primary),
        var(--hu-secondary)
    );
    font-size: 23px;
}

.hajj_umrah_visa_service_card h3 {
    margin: 0 0 10px;
    color: var(--hu-dark);
    font-size: 18px;
}

.hajj_umrah_visa_service_card p {
    margin: 0;
    color: var(--hu-muted);
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================
   DOCUMENT SECTION
========================================= */

.hajj_umrah_visa_documents_section {
    padding: 95px 0;
    background: #fff;
}

.hajj_umrah_visa_documents_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.hajj_umrah_visa_documents_content h2 {
    max-width: 550px;
    margin: 20px 0;
    color: var(--hu-dark);
    font-size: clamp(33px, 4vw, 48px);
    line-height: 1.15;
}

.hajj_umrah_visa_documents_content h2 strong {
    display: block;
    color: var(--hu-primary);
}

.hajj_umrah_visa_documents_content > p {
    max-width: 600px;
    color: var(--hu-muted);
    font-size: 15px;
    line-height: 1.8;
}

.hajj_umrah_visa_document_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 25px;
    margin-top: 28px;
}

.hajj_umrah_visa_document_list div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #38576a;
    font-size: 13px;
    font-weight: 600;
}

.hajj_umrah_visa_document_list i {
    color: var(--hu-primary);
}

.hajj_umrah_visa_documents_visual {
    min-height: 430px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hajj_umrah_visa_document_circle {
    width: 330px;
    height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--hu-primary);
    background: linear-gradient(
        145deg,
        #e5f6fc,
        #c9edf8
    );
    box-shadow: inset 0 0 0 30px rgba(255,255,255,.25);
    font-size: 90px;
    animation: huBlobFloat 5s ease-in-out infinite;
}

.hajj_umrah_document_badge {
    position: absolute;
    padding: 13px 17px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 13px;
    background: #fff;
    color: #23495e;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(0,70,100,.12);
    animation: huCardFloat 4s ease-in-out infinite;
}

.document_badge_one {
    top: 12%;
    left: 4%;
}

.document_badge_two {
    top: 43%;
    right: 0;
    animation-delay: .8s;
}

.document_badge_three {
    bottom: 13%;
    left: 5%;
    animation-delay: 1.4s;
}


/* =========================================
   PROCESS
========================================= */

.hajj_umrah_visa_process_section {
    padding: 90px 0;
    background: var(--hu-bg);
}

.hajj_umrah_visa_process_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.hajj_umrah_visa_process_card {
    position: relative;
    padding: 30px 23px;
    border: 1px solid var(--hu-border);
    border-radius: 20px;
    background: #fff;
    transition: .4s ease;
}

.hajj_umrah_visa_process_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,70,100,.1);
}

.hajj_umrah_process_icon {
    width: 56px;
    height: 56px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: var(--hu-primary);
    font-size: 19px;
}

.hajj_umrah_visa_process_card small {
    color: #91a9b5;
    font-weight: 800;
}

.hajj_umrah_visa_process_card h3 {
    margin: 10px 0;
    color: var(--hu-dark);
    font-size: 17px;
}

.hajj_umrah_visa_process_card p {
    margin: 0;
    color: var(--hu-muted);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================
   INFO
========================================= */

.hajj_umrah_visa_info_section {
    padding: 45px 0;
    background: #fff;
}

.hajj_umrah_visa_info_box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgba(0,119,182,.12);
    background: #f3fbfe;
}

.hajj_umrah_visa_info_icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    background: var(--hu-primary);
    font-size: 21px;
}

.hajj_umrah_visa_info_box h3 {
    margin: 2px 0 7px;
    color: var(--hu-dark);
    font-size: 19px;
}

.hajj_umrah_visa_info_box p {
    margin: 0;
    color: var(--hu-muted);
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================
   FAQ
========================================= */

.hajj_umrah_visa_faq_section {
    padding: 90px 0;
    background: #fff;
}

.hajj_umrah_visa_faq_wrap {
    max-width: 900px;
    margin: auto;
}

.hajj_umrah_visa_faq_item {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,119,182,.12);
    border-radius: 15px;
    background: #fff;
    transition: .3s ease;
}

.hajj_umrah_visa_faq_item.active {
    border-color: rgba(0,119,182,.3);
    box-shadow: 0 12px 30px rgba(0,80,120,.07);
}

.hajj_umrah_visa_faq_question {
    width: 100%;
    border: 0;
    outline: none;
    cursor: pointer;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: transparent;
    color: var(--hu-dark);
    text-align: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
}

.hajj_umrah_visa_faq_question i {
    color: var(--hu-primary);
    transition: .35s ease;
}

.hajj_umrah_visa_faq_item.active
.hajj_umrah_visa_faq_question i {
    transform: rotate(45deg);
}

.hajj_umrah_visa_faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.hajj_umrah_visa_faq_answer p {
    margin: 0;
    padding: 0 22px 20px;
    color: var(--hu-muted);
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================
   CTA
========================================= */

.hajj_umrah_visa_cta_section {
    padding: 20px 0 90px;
}

.hajj_umrah_visa_cta_box {
    position: relative;
    overflow: hidden;
    padding: 55px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-radius: 25px;
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(255,255,255,.15),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #006ca7,
            #08a8e0
        );
    color: #fff;
    box-shadow: 0 25px 55px rgba(0,100,160,.2);
}

.hajj_umrah_visa_cta_content {
    position: relative;
    z-index: 2;
}

.hajj_umrah_visa_cta_content > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
}

.hajj_umrah_visa_cta_content h2 {
    max-width: 680px;
    margin: 12px 0;
    font-size: clamp(28px, 4vw, 45px);
    line-height: 1.15;
}

.hajj_umrah_visa_cta_content h2 strong {
    display: block;
}

.hajj_umrah_visa_cta_content p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.84);
    font-size: 14px;
    line-height: 1.7;
}

.hajj_umrah_visa_cta_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.hajj_umrah_cta_primary,
.hajj_umrah_cta_secondary {
    padding: 13px 20px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: .3s ease;
}

.hajj_umrah_cta_primary {
    color: var(--hu-primary);
    background: #fff;
}

.hajj_umrah_cta_secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,.4);
    background: rgba(255,255,255,.1);
}

.hajj_umrah_cta_primary:hover,
.hajj_umrah_cta_secondary:hover {
    transform: translateY(-4px);
    color: var(--hu-primary);
}

.hajj_umrah_cta_secondary:hover {
    color: #fff;
    background: rgba(255,255,255,.18);
}

.hajj_umrah_visa_cta_icon {
    width: 190px;
    height: 190px;
    flex: 0 0 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgba(255,255,255,.9);
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.08);
    font-size: 85px;
    animation: huKaabaFloat 4s ease-in-out infinite;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes huImageFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes huBlobFloat {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

@keyframes huCardFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes huKaabaFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(3deg);
    }
}


/* =========================================
   SCROLL REVEAL
========================================= */

.hajj_umrah_visa_feature_card,
.hajj_umrah_visa_service_card,
.hajj_umrah_visa_process_card,
.hajj_umrah_visa_documents_content,
.hajj_umrah_visa_documents_visual {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity .7s ease,
        transform .7s ease;
}

.hajj_umrah_visa_feature_card.hu_reveal,
.hajj_umrah_visa_service_card.hu_reveal,
.hajj_umrah_visa_process_card.hu_reveal,
.hajj_umrah_visa_documents_content.hu_reveal,
.hajj_umrah_visa_documents_visual.hu_reveal {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .hajj_umrah_visa_hero_grid {
        gap: 30px;
    }

    .hajj_umrah_visa_why_grid,
    .hajj_umrah_visa_services_grid,
    .hajj_umrah_visa_process_grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 850px) {

    .hajj_umrah_visa_hero_grid,
    .hajj_umrah_visa_documents_grid {
        grid-template-columns: 1fr;
    }

    .hajj_umrah_visa_hero_content {
        text-align: center;
    }

    .hajj_umrah_visa_hero_content h1 {
        margin-left: auto;
        margin-right: auto;
    }

    .hajj_umrah_visa_hero_content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hajj_umrah_visa_hero_buttons,
    .hajj_umrah_visa_trust_items {
        justify-content: center;
    }

    .hajj_umrah_visa_hero_image_area {
        min-height: 450px;
    }

    .hajj_umrah_visa_documents_content {
        text-align: center;
    }

    .hajj_umrah_visa_documents_content h2,
    .hajj_umrah_visa_documents_content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hajj_umrah_visa_document_list {
        text-align: left;
    }

    .hajj_umrah_visa_cta_box {
        padding: 45px 35px;
    }

}


@media (max-width: 600px) {

    .hajj_umrah_visa_container {
        width: min(100% - 30px, 1180px);
    }

    .hajj_umrah_visa_hero_section {
        padding: 55px 0;
    }

    .hajj_umrah_visa_hero_content h1 {
        font-size: clamp(34px, 10vw, 48px);
        letter-spacing: -1.5px;
    }

    .hajj_umrah_visa_hero_content p {
        font-size: 14px;
    }

    .hajj_umrah_visa_hero_buttons {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .hajj_umrah_visa_primary_btn,
    .hajj_umrah_visa_secondary_btn {
        width: 100%;
    }

    .hajj_umrah_visa_trust_items {
        flex-direction: column;
        gap: 9px;
        align-items: center;
    }

    .hajj_umrah_visa_hero_image_area {
        min-height: 350px;
    }

    .hajj_umrah_visa_hero_blob {
        width: 290px;
        height: 290px;
    }

    .hajj_umrah_visa_floating_card {
        padding: 9px 11px;
    }

    .hajj_umrah_visa_float_icon {
        width: 33px;
        height: 33px;
    }

    .hajj_umrah_visa_floating_card strong {
        font-size: 11px;
    }

    .hajj_umrah_visa_floating_card small {
        font-size: 8px;
    }

    .card_one {
        left: 0;
    }

    .card_two {
        right: 0;
    }

    .hajj_umrah_visa_why_section,
    .hajj_umrah_visa_services_section,
    .hajj_umrah_visa_documents_section,
    .hajj_umrah_visa_process_section,
    .hajj_umrah_visa_faq_section {
        padding: 65px 0;
    }

    .hajj_umrah_visa_why_grid,
    .hajj_umrah_visa_services_grid,
    .hajj_umrah_visa_process_grid {
        grid-template-columns: 1fr;
    }

    .hajj_umrah_visa_document_list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hajj_umrah_visa_documents_visual {
        min-height: 340px;
    }

    .hajj_umrah_visa_document_circle {
        width: 250px;
        height: 250px;
        font-size: 70px;
    }

    .hajj_umrah_document_badge {
        font-size: 10px;
        padding: 10px 12px;
    }

    .document_badge_one {
        left: 0;
    }

    .document_badge_two {
        right: 0;
    }

    .document_badge_three {
        left: 0;
    }

    .hajj_umrah_visa_info_box {
        flex-direction: column;
        padding: 22px;
    }

    .hajj_umrah_visa_cta_section {
        padding-bottom: 60px;
    }

    .hajj_umrah_visa_cta_box {
        padding: 35px 22px;
        text-align: center;
        flex-direction: column;
    }

    .hajj_umrah_visa_cta_content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hajj_umrah_visa_cta_buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .hajj_umrah_cta_primary,
    .hajj_umrah_cta_secondary {
        width: 100%;
    }

    .hajj_umrah_visa_cta_icon {
        width: 120px;
        height: 120px;
        flex-basis: 120px;
        font-size: 55px;
    }

}


@media (prefers-reduced-motion: reduce) {

    .hajj_umrah_visa_hero_image,
    .hajj_umrah_visa_hero_blob,
    .hajj_umrah_visa_floating_card,
    .hajj_umrah_visa_document_circle,
    .hajj_umrah_document_badge,
    .hajj_umrah_visa_cta_icon {
        animation: none;
    }

    .hajj_umrah_visa_feature_card,
    .hajj_umrah_visa_service_card,
    .hajj_umrah_visa_process_card,
    .hajj_umrah_visa_documents_content,
    .hajj_umrah_visa_documents_visual {
        opacity: 1;
        transform: none;
        transition: none;
    }

}
/* service hajj and umrah visa end  */
/* service visit visa start  
/* =========================================================
   VISIT VISA PAGE - ROOT
========================================================= */

.visit_visa_page {
    --visit-primary: #0077b6;
    --visit-primary-dark: #005b8a;
    --visit-secondary: #00a8e8;
    --visit-dark: #071b2b;
    --visit-text: #263746;
    --visit-muted: #667788;
    --visit-light: #f5fbff;
    --visit-border: #dcebf3;
    --visit-white: #ffffff;
    --visit-shadow: 0 18px 50px rgba(0, 90, 130, 0.10);

    color: var(--visit-text);
    overflow: hidden;
    background: #fff;
    font-family: inherit;
}

.visit_visa_page *,
.visit_visa_page *::before,
.visit_visa_page *::after {
    box-sizing: border-box;
}

.visit_visa_container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.visit_visa_section {
    padding: 90px 0;
}

.visit_visa_section_header {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.visit_visa_section_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border: 1px solid rgba(0, 119, 182, .20);
    border-radius: 50px;
    background: rgba(0, 168, 232, .06);
    color: var(--visit-primary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.visit_visa_section_badge i {
    font-size: 12px;
}

.visit_visa_section_title {
    margin: 0 0 14px;
    color: var(--visit-dark);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    font-weight: 800;
}

.visit_visa_section_title span {
    color: var(--visit-primary);
}

.visit_visa_section_description {
    margin: 0 auto;
    max-width: 650px;
    color: var(--visit-muted);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   HERO
========================================================= */

.visit_visa_hero_section {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 90% 15%, rgba(0, 168, 232, .13), transparent 30%),
        radial-gradient(circle at 10% 90%, rgba(0, 119, 182, .07), transparent 30%),
        linear-gradient(135deg, #f8fdff 0%, #eef9fd 100%);
    overflow: hidden;
}

.visit_visa_hero_section::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(0, 168, 232, .06);
    top: -180px;
    right: -130px;
}

.visit_visa_hero_section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(0, 119, 182, .05);
    bottom: -150px;
    left: -100px;
}

.visit_visa_hero_container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 60px;
}

.visit_visa_hero_content {
    animation: visitVisaFadeUp .8s ease both;
}

.visit_visa_hero_badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 17px;
    border: 1px solid rgba(0, 119, 182, .22);
    border-radius: 50px;
    background: rgba(255,255,255,.75);
    color: var(--visit-primary);
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(8px);
    margin-bottom: 22px;
}

.visit_visa_hero_badge i {
    font-size: 14px;
}

.visit_visa_hero_title {
    margin: 0 0 22px;
    color: var(--visit-dark);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -2px;
    font-weight: 850;
}

.visit_visa_hero_title span {
    color: var(--visit-primary);
}

.visit_visa_hero_description {
    max-width: 600px;
    margin: 0 0 30px;
    color: var(--visit-muted);
    font-size: 17px;
    line-height: 1.8;
}

.visit_visa_hero_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.visit_visa_btn {
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 10px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: .3s ease;
    cursor: pointer;
}

.visit_visa_btn_primary {
    color: #fff;
    background: linear-gradient(135deg, var(--visit-primary), var(--visit-secondary));
    box-shadow: 0 12px 25px rgba(0, 119, 182, .20);
}

.visit_visa_btn_primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 32px rgba(0, 119, 182, .25);
    color: #fff;
}

.visit_visa_btn_outline {
    color: var(--visit-primary);
    background: rgba(255,255,255,.8);
    border-color: var(--visit-border);
}

.visit_visa_btn_outline:hover {
    transform: translateY(-3px);
    border-color: var(--visit-primary);
    background: #fff;
}

.visit_visa_hero_trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.visit_visa_trust_item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #4e6676;
    font-size: 13px;
    font-weight: 600;
}

.visit_visa_trust_item i {
    color: #08a66a;
}

/* Hero Image */

.visit_visa_hero_visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: visitVisaFadeRight .9s ease both;
}

.visit_visa_hero_circle {
    position: absolute;
    width: min(440px, 90%);
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(
        145deg,
        rgba(0, 168, 232, .13),
        rgba(0, 119, 182, .06)
    );
}

.visit_visa_hero_image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 540px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 35px rgba(0, 60, 90, .16));
    animation: visitVisaFloat 5s ease-in-out infinite;
}

/* Floating cards */

.visit_visa_float_card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 155px;
    padding: 12px 15px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 14px;
    box-shadow: 0 16px 35px rgba(0, 60, 90, .13);
    backdrop-filter: blur(10px);
}

.visit_visa_float_card_icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    background: var(--visit-primary);
}

.visit_visa_float_card strong {
    display: block;
    color: var(--visit-dark);
    font-size: 12px;
}

.visit_visa_float_card small {
    display: block;
    margin-top: 3px;
    color: var(--visit-muted);
    font-size: 10px;
}

.visit_visa_float_one {
    top: 18%;
    left: 2%;
    animation: visitVisaFloatSmall 4s ease-in-out infinite;
}

.visit_visa_float_two {
    right: 0;
    bottom: 18%;
    animation: visitVisaFloatSmall 4.5s ease-in-out infinite reverse;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.visit_visa_why_section {
    background: #fff;
}

.visit_visa_why_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.visit_visa_why_card {
    position: relative;
    padding: 30px 25px;
    border: 1px solid var(--visit-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 80, 120, .05);
    overflow: hidden;
    transition: .35s ease;
}

.visit_visa_why_card::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    right: -40px;
    top: -40px;
    background: rgba(0,168,232,.06);
}

.visit_visa_why_card:hover {
    transform: translateY(-8px);
    box-shadow: var(--visit-shadow);
    border-color: rgba(0,119,182,.20);
}

.visit_visa_why_icon {
    position: relative;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #eaf8fd;
    color: var(--visit-primary);
    font-size: 20px;
}

.visit_visa_why_card h3 {
    margin: 0 0 10px;
    color: var(--visit-dark);
    font-size: 19px;
}

.visit_visa_why_card p {
    margin: 0;
    color: var(--visit-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   PROCESS
========================================================= */

.visit_visa_process_section {
    background: var(--visit-light);
}

.visit_visa_process_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.visit_visa_process_card {
    position: relative;
    padding: 28px 22px;
    background: #fff;
    border: 1px solid var(--visit-border);
    border-radius: 18px;
    text-align: center;
    transition: .3s ease;
}

.visit_visa_process_card:hover {
    transform: translateY(-6px);
    box-shadow: var(--visit-shadow);
}

.visit_visa_process_number {
    width: 50px;
    height: 50px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--visit-primary), var(--visit-secondary));
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.visit_visa_process_card h3 {
    margin: 0 0 9px;
    color: var(--visit-dark);
    font-size: 17px;
}

.visit_visa_process_card p {
    margin: 0;
    color: var(--visit-muted);
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   DOCUMENT SECTION
========================================================= */

.visit_visa_documents_section {
    background: #fff;
}

.visit_visa_documents_wrapper {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 65px;
    align-items: center;
}

.visit_visa_documents_visual {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visit_visa_documents_circle {
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: #edf9fd;
}

.visit_visa_documents_image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 430px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,80,120,.12));
}

.visit_visa_documents_content .visit_visa_section_badge {
    margin-bottom: 15px;
}

.visit_visa_documents_content h2 {
    margin: 0 0 16px;
    color: var(--visit-dark);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
}

.visit_visa_documents_content h2 span {
    color: var(--visit-primary);
}

.visit_visa_documents_content > p {
    margin: 0 0 25px;
    color: var(--visit-muted);
    line-height: 1.8;
}

.visit_visa_document_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.visit_visa_document_list li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #355061;
    font-size: 14px;
    font-weight: 600;
}

.visit_visa_document_list i {
    color: #08a66a;
}


/* =========================================================
   DESTINATIONS
========================================================= */

.visit_visa_destination_section {
    background: var(--visit-light);
}

.visit_visa_destination_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.visit_visa_destination_card {
    position: relative;
    min-height: 230px;
    overflow: hidden;
    border-radius: 18px;
    background: #dfeef3;
    cursor: pointer;
}

.visit_visa_destination_card img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
    transition: transform .5s ease;
}

.visit_visa_destination_card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 20, 35, .75),
        transparent 60%
    );
}

.visit_visa_destination_card:hover img {
    transform: scale(1.08);
}

.visit_visa_destination_info {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    bottom: 16px;
    color: #fff;
}

.visit_visa_destination_info h3 {
    margin: 0 0 4px;
    font-size: 17px;
}

.visit_visa_destination_info p {
    margin: 0;
    font-size: 11px;
    opacity: .85;
}


/* =========================================================
   FAQ
========================================================= */

.visit_visa_faq_section {
    background: #fff;
}

.visit_visa_faq_wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.visit_visa_faq_item {
    border: 1px solid var(--visit-border);
    border-radius: 13px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
    transition: .3s ease;
}

.visit_visa_faq_item.active {
    border-color: rgba(0,119,182,.25);
    box-shadow: 0 8px 25px rgba(0,80,120,.07);
}

.visit_visa_faq_question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 19px 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: var(--visit-dark);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.visit_visa_faq_question i {
    color: var(--visit-primary);
    transition: transform .3s ease;
}

.visit_visa_faq_item.active .visit_visa_faq_question i {
    transform: rotate(180deg);
}

.visit_visa_faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.visit_visa_faq_answer_inner {
    padding: 0 21px 20px;
    color: var(--visit-muted);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   CTA
========================================================= */

.visit_visa_cta_section {
    padding: 30px 0 90px;
}

.visit_visa_cta {
    position: relative;
    overflow: hidden;
    padding: 55px 60px;
    border-radius: 25px;
    background: linear-gradient(
        135deg,
        #006da5,
        #009dd7
    );
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,100,150,.18);
}

.visit_visa_cta::before,
.visit_visa_cta::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
}

.visit_visa_cta::before {
    width: 260px;
    height: 260px;
    left: -90px;
    top: -120px;
}

.visit_visa_cta::after {
    width: 350px;
    height: 350px;
    right: -160px;
    bottom: -220px;
}

.visit_visa_cta_content {
    position: relative;
    z-index: 2;
}

.visit_visa_cta h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(28px, 4vw, 44px);
}

.visit_visa_cta p {
    max-width: 650px;
    margin: 0 auto 25px;
    color: rgba(255,255,255,.85);
    font-size: 15px;
    line-height: 1.7;
}

.visit_visa_cta .visit_visa_btn {
    background: #fff;
    color: var(--visit-primary);
}

.visit_visa_cta .visit_visa_btn:hover {
    transform: translateY(-3px);
}


/* =========================================================
   ANIMATIONS
========================================================= */

.visit_visa_reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.visit_visa_reveal.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes visitVisaFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes visitVisaFadeRight {
    from {
        opacity: 0;
        transform: translateX(35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes visitVisaFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes visitVisaFloatSmall {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .visit_visa_hero_container {
        gap: 30px;
    }

    .visit_visa_hero_title {
        font-size: 52px;
    }

    .visit_visa_process_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .visit_visa_destination_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 850px) {

    .visit_visa_section {
        padding: 70px 0;
    }

    .visit_visa_hero_section {
        min-height: auto;
        padding: 75px 0;
    }

    .visit_visa_hero_container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .visit_visa_hero_content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .visit_visa_hero_description {
        max-width: 650px;
    }

    .visit_visa_hero_visual {
        min-height: 430px;
    }

    .visit_visa_hero_image {
        max-width: 470px;
    }

    .visit_visa_why_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .visit_visa_documents_wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .visit_visa_documents_visual {
        order: 2;
    }

    .visit_visa_documents_content {
        order: 1;
    }

    .visit_visa_documents_content {
        text-align: center;
    }

    .visit_visa_documents_content .visit_visa_section_badge {
        display: inline-flex;
    }

    .visit_visa_document_list {
        text-align: left;
    }
}


@media (max-width: 600px) {

    .visit_visa_container {
        width: min(100% - 28px, 1180px);
    }

    .visit_visa_section {
        padding: 55px 0;
    }

    .visit_visa_hero_section {
        padding: 55px 0 65px;
    }

    .visit_visa_hero_title {
        font-size: 39px;
        letter-spacing: -1.2px;
    }

    .visit_visa_hero_description {
        font-size: 14px;
        line-height: 1.7;
    }

    .visit_visa_hero_buttons {
        width: 100%;
        flex-direction: column;
    }

    .visit_visa_btn {
        width: 100%;
    }

    .visit_visa_hero_trust {
        justify-content: center;
        gap: 10px 15px;
    }

    .visit_visa_trust_item {
        font-size: 11px;
    }

    .visit_visa_hero_visual {
        min-height: 330px;
    }

    .visit_visa_hero_circle {
        width: 300px;
    }

    .visit_visa_float_card {
        min-width: 125px;
        padding: 9px;
        gap: 7px;
    }

    .visit_visa_float_card_icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
        font-size: 12px;
    }

    .visit_visa_float_card strong {
        font-size: 10px;
    }

    .visit_visa_float_card small {
        font-size: 8px;
    }

    .visit_visa_float_one {
        left: 0;
        top: 10%;
    }

    .visit_visa_float_two {
        right: 0;
        bottom: 10%;
    }

    .visit_visa_why_grid,
    .visit_visa_process_grid,
    .visit_visa_destination_grid {
        grid-template-columns: 1fr;
    }

    .visit_visa_section_title {
        font-size: 31px;
    }

    .visit_visa_section_description {
        font-size: 14px;
    }

    .visit_visa_documents_visual {
        min-height: 300px;
    }

    .visit_visa_documents_circle {
        width: 260px;
        height: 260px;
    }

    .visit_visa_document_list {
        grid-template-columns: 1fr;
    }

    .visit_visa_destination_card,
    .visit_visa_destination_card img {
        min-height: 260px;
    }

    .visit_visa_cta {
        padding: 40px 22px;
        border-radius: 20px;
    }

    .visit_visa_cta h2 {
        font-size: 29px;
    }

    .visit_visa_cta p {
        font-size: 13px;
    }
}


@media (prefers-reduced-motion: reduce) {

    .visit_visa_page *,
    .visit_visa_page *::before,
    .visit_visa_page *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
/* service visit visa end   */
/* destination page start  */

/* =========================================================
   DESTINATIONS PAGE
   GLOBAL
========================================================= */

.destinations_page_container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.destinations_page_hero_section,
.destinations_page_popular_destinations,
.destinations_page_destination_cards {
    font-family: "Poppins", sans-serif;
}


/* =========================================================
   01. HERO
========================================================= */

.destinations_page_hero_section {
    position: relative;
    overflow: hidden;
    padding: 95px 0 90px;
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(15, 112, 166, 0.10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f8fcff 0%,
            #eef8fc 100%
        );
}

.destinations_page_hero_container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;

    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 50px;
}


/* Hero Content */

.destinations_page_hero_badge,
.destinations_page_section_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 16px;

    border: 1px solid rgba(0, 108, 163, .20);
    border-radius: 50px;

    color: #05699d;
    background: rgba(255,255,255,.75);

    font-size: 13px;
    font-weight: 600;
}

.destinations_page_hero_content h1 {
    margin: 22px 0 18px;

    max-width: 650px;

    color: #071927;

    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -2px;
}

.destinations_page_hero_content h1 span {
    display: block;
    color: #066da3;
}

.destinations_page_hero_content p {
    max-width: 620px;

    margin: 0 0 30px;

    color: #526473;

    font-size: 16px;
    line-height: 1.8;
}


/* Buttons */

.destinations_page_hero_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.destinations_page_primary_btn,
.destinations_page_secondary_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 52px;
    padding: 0 23px;

    border-radius: 12px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: .3s ease;
}

.destinations_page_primary_btn {
    color: #fff;
    background: #056b9f;
    box-shadow: 0 12px 30px rgba(5,107,159,.18);
}

.destinations_page_primary_btn:hover {
    transform: translateY(-3px);
    background: #045b88;
}

.destinations_page_secondary_btn {
    color: #056b9f;
    background: #fff;
    border: 1px solid #c9dce5;
}

.destinations_page_secondary_btn:hover {
    transform: translateY(-3px);
    border-color: #056b9f;
}


/* Hero Points */

.destinations_page_hero_points {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

    margin-top: 27px;
}

.destinations_page_hero_points div {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #526473;
    font-size: 12px;
    font-weight: 500;
}

.destinations_page_hero_points i {
    color: #0877aa;
}


/* Hero Visual */

.destinations_page_hero_visual {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.destinations_page_hero_circle {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background: rgba(9, 110, 160, .10);

    animation: destinations_page_float_circle 5s ease-in-out infinite;
}

.destinations_page_hero_image {
    position: relative;
    z-index: 2;

    width: min(100%, 500px);
    max-height: 500px;

    object-fit: contain;

    filter: drop-shadow(0 25px 35px rgba(0,0,0,.12));

    animation: destinations_page_hero_image_float 5s ease-in-out infinite;
}


/* Floating Labels */

.destinations_page_hero_float {
    position: absolute;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 13px 16px;

    border: 1px solid rgba(255,255,255,.7);
    border-radius: 15px;

    background: rgba(255,255,255,.90);

    box-shadow: 0 15px 35px rgba(20,60,80,.12);

    backdrop-filter: blur(10px);
}

.destinations_page_hero_float strong {
    display: block;

    color: #092033;
    font-size: 12px;
}

.destinations_page_hero_float small {
    display: block;

    margin-top: 2px;

    color: #71808b;
    font-size: 10px;
}

.destinations_page_float_icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    color: #fff;
    background: #066d9f;
}

.destinations_page_hero_float_one {
    top: 90px;
    left: 5px;
}

.destinations_page_hero_float_two {
    right: 0;
    bottom: 85px;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.destinations_page_section_heading {
    max-width: 700px;

    margin: 0 auto 45px;

    text-align: center;
}

.destinations_page_section_heading h2,
.destinations_page_cards_heading h2 {
    margin: 18px 0 12px;

    color: #071927;

    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    letter-spacing: -1px;
}

.destinations_page_section_heading h2 span,
.destinations_page_cards_heading h2 span {
    color: #066da3;
}

.destinations_page_section_heading p,
.destinations_page_cards_heading p {
    margin: 0;

    color: #667783;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   02. POPULAR DESTINATIONS
========================================================= */

.destinations_page_popular_destinations {
    padding: 95px 0;

    background: #fff;
}

.destinations_page_popular_grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.destinations_page_popular_card {
    overflow: hidden;

    border: 1px solid #e3edf2;
    border-radius: 22px;

    background: #fff;

    box-shadow: 0 10px 35px rgba(18,70,90,.06);

    transition: .4s ease;
}

.destinations_page_popular_card:hover {
    transform: translateY(-8px);

    box-shadow: 0 22px 45px rgba(18,70,90,.13);
}

.destinations_page_popular_image {
    position: relative;

    height: 245px;

    overflow: hidden;
}

.destinations_page_popular_image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: .5s ease;
}

.destinations_page_popular_card:hover
.destinations_page_popular_image img {
    transform: scale(1.07);
}

.destinations_page_popular_image span {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 7px 11px;

    border-radius: 30px;

    color: #056b9f;
    background: rgba(255,255,255,.92);

    font-size: 10px;
    font-weight: 700;
}

.destinations_page_popular_content {
    padding: 23px;
}

.destinations_page_popular_content > div {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #778892;

    font-size: 11px;
}

.destinations_page_popular_content > div i {
    color: #0673a8;
}

.destinations_page_popular_content h3 {
    margin: 9px 0 8px;

    color: #092033;
    font-size: 24px;
}

.destinations_page_popular_content p {
    min-height: 48px;

    margin: 0 0 17px;

    color: #71808a;

    font-size: 12px;
    line-height: 1.7;
}

.destinations_page_popular_content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #056b9f;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
}

.destinations_page_popular_content a i {
    transition: .3s ease;
}

.destinations_page_popular_content a:hover i {
    transform: translateX(5px);
}


/* =========================================================
   03. DESTINATION CARDS
========================================================= */

.destinations_page_destination_cards {
    padding: 95px 0;

    background: #f5fafc;
}

.destinations_page_cards_heading {
    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 45px;
}

.destinations_page_cards_heading h2 {
    margin-bottom: 0;
}

.destinations_page_cards_heading p {
    max-width: 420px;

    padding-bottom: 4px;
}


/* Dynamic Cards */

.destinations_page_cards_grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.destinations_page_destination_card {
    overflow: hidden;

    border: 1px solid #e0ebf0;
    border-radius: 20px;

    background: #fff;

    box-shadow: 0 8px 28px rgba(10,60,80,.05);

    transition: .4s ease;
}

.destinations_page_destination_card:hover {
    transform: translateY(-7px);

    box-shadow: 0 20px 40px rgba(10,60,80,.12);
}

.destinations_page_destination_image {
    position: relative;

    height: 220px;

    overflow: hidden;
}

.destinations_page_destination_image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s ease;
}

.destinations_page_destination_card:hover
.destinations_page_destination_image img {
    transform: scale(1.08);
}

.destinations_page_destination_country {
    position: absolute;

    left: 15px;
    bottom: 15px;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 7px 11px;

    border-radius: 30px;

    color: #fff;
    background: rgba(0,0,0,.60);

    font-size: 10px;
    font-weight: 500;

    backdrop-filter: blur(5px);
}

.destinations_page_destination_content {
    padding: 21px;
}

.destinations_page_destination_content h3 {
    margin: 0 0 8px;

    color: #092033;

    font-size: 21px;
}

.destinations_page_destination_content p {
    min-height: 44px;

    margin: 0 0 17px;

    color: #71808a;

    font-size: 12px;
    line-height: 1.7;
}

.destinations_page_destination_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 15px;

    border-top: 1px solid #edf2f4;
}

.destinations_page_destination_type {
    color: #697b85;

    font-size: 10px;
}

.destinations_page_destination_button {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color: #fff;
    background: #066d9f;

    text-decoration: none;

    transition: .3s ease;
}

.destinations_page_destination_button:hover {
    background: #045b88;
    transform: translateX(3px);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes destinations_page_hero_image_float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes destinations_page_float_circle {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}


/* Scroll Animation */

.destinations_page_popular_card,
.destinations_page_destination_card {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease,
        box-shadow .4s ease;
}

.destinations_page_popular_card.destinations_page_show,
.destinations_page_destination_card.destinations_page_show {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .destinations_page_hero_container {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .destinations_page_hero_content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .destinations_page_hero_content h1 {
        max-width: 750px;
    }

    .destinations_page_hero_visual {
        min-height: 450px;
    }

    .destinations_page_popular_grid,
    .destinations_page_cards_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destinations_page_cards_heading {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .destinations_page_container,
    .destinations_page_hero_container {
        width: min(100% - 28px, 600px);
    }

    .destinations_page_hero_section {
        padding: 65px 0 60px;
    }

    .destinations_page_hero_content h1 {
        font-size: 42px;
        letter-spacing: -1.5px;
    }

    .destinations_page_hero_content p {
        font-size: 13px;
    }

    .destinations_page_hero_buttons {
        width: 100%;

        flex-direction: column;
    }

    .destinations_page_primary_btn,
    .destinations_page_secondary_btn {
        width: 100%;
    }

    .destinations_page_hero_points {
        justify-content: center;
        gap: 10px 15px;
    }

    .destinations_page_hero_visual {
        min-height: 360px;
    }

    .destinations_page_hero_circle {
        width: 300px;
        height: 300px;
    }

    .destinations_page_hero_float {
        padding: 9px 11px;
    }

    .destinations_page_hero_float strong {
        font-size: 10px;
    }

    .destinations_page_hero_float small {
        font-size: 8px;
    }

    .destinations_page_float_icon {
        width: 30px;
        height: 30px;
    }

    .destinations_page_hero_float_one {
        top: 25px;
        left: 0;
    }

    .destinations_page_hero_float_two {
        right: 0;
        bottom: 35px;
    }

    .destinations_page_popular_destinations,
    .destinations_page_destination_cards {
        padding: 65px 0;
    }

    .destinations_page_popular_grid,
    .destinations_page_cards_grid {
        grid-template-columns: 1fr;
    }

    .destinations_page_section_heading {
        margin-bottom: 32px;
    }

    .destinations_page_section_heading h2,
    .destinations_page_cards_heading h2 {
        font-size: 34px;
    }

    .destinations_page_cards_heading {
        gap: 15px;
        margin-bottom: 30px;
    }

    .destinations_page_cards_heading p {
        font-size: 13px;
    }

}


/* Small Mobile */

@media (max-width: 420px) {

    .destinations_page_hero_content h1 {
        font-size: 35px;
    }

    .destinations_page_hero_visual {
        min-height: 310px;
    }

    .destinations_page_hero_circle {
        width: 250px;
        height: 250px;
    }

    .destinations_page_hero_float_one {
        left: -5px;
    }

    .destinations_page_hero_float_two {
        right: -5px;
    }

}
/* destination page end  */
/* contact page start  */
/* =========================================
   CONTACT PAGE SECTION
========================================= */

.contact_page_section {
    position: relative;
    padding: 110px 20px;
    background: #f6fbfe;
    overflow: hidden;
}

.contact_page_section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    top: -200px;
    right: -150px;
    border-radius: 50%;
    background: rgba(0, 116, 181, 0.06);
    pointer-events: none;
}

.contact_page_section::after {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    bottom: -170px;
    left: -130px;
    border-radius: 50%;
    background: rgba(0, 116, 181, 0.05);
    pointer-events: none;
}


.contact_page_container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1180px;
    margin: auto;
}


/* =========================================
   HEADING
========================================= */

.contact_page_heading {
    max-width: 720px;
    margin: 0 auto 65px;
    text-align: center;
    animation: contact_page_fade_up 0.8s ease both;
}

.contact_page_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border: 1px solid rgba(0, 116, 181, 0.25);
    border-radius: 50px;
    background: #ffffff;
    color: #0074b5;
    font-size: 13px;
    font-weight: 700;
}

.contact_page_heading h2 {
    margin: 20px 0 0;
    color: #071b2b;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: -2px;
    font-weight: 800;
}

.contact_page_heading h2 span {
    color: #0074b5;
}

.contact_page_heading p {
    max-width: 650px;
    margin: 22px auto 0;
    color: #667887;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   MAIN CONTENT
========================================= */

.contact_page_content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 55px;
    align-items: stretch;
}


/* =========================================
   CONTACT INFO
========================================= */

.contact_page_info {
    animation: contact_page_fade_left 0.9s ease both;
}

.contact_page_info_header > span {
    color: #0074b5;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact_page_info_header h3 {
    margin: 14px 0;
    color: #071b2b;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.contact_page_info_header h3 strong {
    color: #0074b5;
}

.contact_page_info_header p {
    max-width: 480px;
    color: #687988;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   INFO CARDS
========================================= */

.contact_page_info_cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 35px;
}

.contact_page_info_card {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 17px 20px;
    border: 1px solid #e0e9ee;
    border-radius: 15px;
    background: #ffffff;
    transition: all 0.35s ease;
}

.contact_page_info_card:hover {
    transform: translateX(7px);
    border-color: rgba(0, 116, 181, 0.25);
    box-shadow: 0 15px 35px rgba(0, 44, 75, 0.08);
}

.contact_page_info_icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #0074b5;
    color: #ffffff;
    font-size: 18px;
}

.contact_page_info_card small {
    display: block;
    margin-bottom: 3px;
    color: #8997a2;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact_page_info_card h4 {
    margin: 0;
    color: #102c3f;
    font-size: 15px;
}

.contact_page_info_card p {
    margin: 3px 0 0;
    color: #8795a0;
    font-size: 12px;
}


/* =========================================
   SOCIAL
========================================= */

.contact_page_social {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
}

.contact_page_social > span {
    color: #536675;
    font-size: 13px;
    font-weight: 700;
}

.contact_page_social_links {
    display: flex;
    gap: 8px;
}

.contact_page_social_links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce7ed;
    border-radius: 50%;
    background: #ffffff;
    color: #006da8;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact_page_social_links a:hover {
    transform: translateY(-4px);
    border-color: #0074b5;
    background: #0074b5;
    color: #ffffff;
}


/* =========================================
   FORM
========================================= */

.contact_page_form_wrapper {
    padding: 38px;
    border: 1px solid #e0e9ee;
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 25px 70px rgba(12, 58, 88, 0.09);
    animation: contact_page_fade_right 0.9s ease both;
}

.contact_page_form_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.contact_page_form_top span {
    color: #0074b5;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact_page_form_top h3 {
    margin: 7px 0 0;
    color: #092235;
    font-size: 27px;
}

.contact_page_form_icon {
    width: 53px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #eaf6fb;
    color: #0074b5;
    font-size: 22px;
}


/* =========================================
   FORM ROW
========================================= */

.contact_page_form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.contact_page_form_group {
    margin-bottom: 18px;
}

.contact_page_form_group label {
    display: block;
    margin-bottom: 8px;
    color: #263f50;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================
   INPUT
========================================= */

.contact_page_input,
.contact_page_textarea {
    position: relative;
}

.contact_page_input i,
.contact_page_textarea i {
    position: absolute;
    left: 16px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    color: #78909f;
    pointer-events: none;
}

.contact_page_textarea i {
    top: 20px;
    transform: none;
}

.contact_page_input input,
.contact_page_input select,
.contact_page_textarea textarea {
    width: 100%;
    border: 1px solid #dce6eb;
    outline: none;
    border-radius: 11px;
    background: #f9fcfd;
    color: #193446;
    font-family: inherit;
    font-size: 14px;
    transition: 0.3s ease;
}

.contact_page_input input,
.contact_page_input select {
    height: 51px;
    padding: 0 15px 0 44px;
}

.contact_page_textarea textarea {
    min-height: 130px;
    resize: vertical;
    padding: 15px 15px 15px 44px;
}

.contact_page_input input:focus,
.contact_page_input select:focus,
.contact_page_textarea textarea:focus {
    border-color: #0074b5;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 116, 181, 0.08);
}


/* =========================================
   BUTTON
========================================= */

.contact_page_submit {
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: none;
    border-radius: 12px;
    background: #0074b5;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.35s ease;
}

.contact_page_submit:hover {
    background: #005d91;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 116, 181, 0.25);
}

.contact_page_submit i {
    transition: 0.3s ease;
}

.contact_page_submit:hover i {
    transform: translateX(5px);
}

.contact_page_form_message {
    min-height: 20px;
    margin-top: 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}


/* =========================================
   MAP SECTION
========================================= */

.contact_page_map_section {
    margin-top: 70px;
    animation: contact_page_fade_up 1s ease both;
}

.contact_page_map_header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 25px;
}

.contact_page_map_header span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #0074b5;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.contact_page_map_header h3 {
    margin: 9px 0;
    color: #092235;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -1px;
}

.contact_page_map_header h3 strong {
    color: #0074b5;
}

.contact_page_map_header p {
    max-width: 560px;
    margin: 0;
    color: #71818d;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   MAP BUTTON
========================================= */

.contact_page_map_button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
    padding: 13px 19px;
    border: 1px solid #d5e2e9;
    border-radius: 10px;
    background: #ffffff;
    color: #006da8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s ease;
}

.contact_page_map_button:hover {
    border-color: #0074b5;
    background: #0074b5;
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================
   MAP
========================================= */

.contact_page_map {
    position: relative;
    width: 100%;
    height: 430px;
    overflow: hidden;
    border: 1px solid #dce6eb;
    border-radius: 24px;
    background: #e9f1f4;
    box-shadow: 0 20px 55px rgba(10, 55, 80, 0.09);
}

.contact_page_map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    filter: saturate(0.85);
}


/* =========================================
   MAP OVERLAY
========================================= */

.contact_page_map_overlay {
    position: absolute;
    left: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
}

.contact_page_map_pin {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #0074b5;
    color: #ffffff;
}

.contact_page_map_overlay strong {
    display: block;
    color: #102d40;
    font-size: 14px;
}

.contact_page_map_overlay span {
    display: block;
    margin-top: 3px;
    color: #7b8b96;
    font-size: 11px;
}


/* =========================================
   WHATSAPP CTA
========================================= */

.contact_page_bottom {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 55px;
    padding: 25px 30px;
    border-radius: 18px;
    background: #08283c;
    color: #ffffff;
    animation: contact_page_fade_up 1s ease both;
}

.contact_page_bottom_icon {
    width: 53px;
    height: 53px;
    min-width: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #18a957;
    font-size: 24px;
}

.contact_page_bottom_text {
    flex: 1;
}

.contact_page_bottom_text span {
    display: block;
    margin-bottom: 3px;
    color: #9eb6c5;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact_page_bottom_text h3 {
    margin: 0;
    font-size: 20px;
}

.contact_page_whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 20px;
    border-radius: 9px;
    background: #ffffff;
    color: #0873aa;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s ease;
}

.contact_page_whatsapp:hover {
    background: #18a957;
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes contact_page_fade_up {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes contact_page_fade_left {

    from {
        opacity: 0;
        transform: translateX(-35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


@keyframes contact_page_fade_right {

    from {
        opacity: 0;
        transform: translateX(35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .contact_page_section {
        padding: 80px 20px;
    }

    .contact_page_content {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact_page_info_header {
        text-align: center;
    }

    .contact_page_info_header p {
        margin-left: auto;
        margin-right: auto;
    }

    .contact_page_info_cards {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact_page_social {
        justify-content: center;
    }

    .contact_page_form_wrapper {
        max-width: 750px;
        width: 100%;
        margin: auto;
    }

    .contact_page_map_header {
        align-items: flex-start;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .contact_page_section {
        padding: 65px 15px;
    }

    .contact_page_heading {
        margin-bottom: 45px;
    }

    .contact_page_heading h2 {
        font-size: 37px;
        letter-spacing: -1px;
    }

    .contact_page_heading p {
        font-size: 14px;
    }

    .contact_page_info_header h3 {
        font-size: 34px;
    }

    .contact_page_form_wrapper {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .contact_page_form_row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .contact_page_form_top h3 {
        font-size: 23px;
    }

    .contact_page_info_card {
        padding: 14px;
    }

    .contact_page_info_icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    /* MAP */

    .contact_page_map_section {
        margin-top: 55px;
    }

    .contact_page_map_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .contact_page_map_header h3 {
        font-size: 32px;
    }

    .contact_page_map {
        height: 330px;
        border-radius: 18px;
    }

    .contact_page_map_overlay {
        left: 15px;
        bottom: 15px;
        padding: 10px 13px;
    }

    .contact_page_map_pin {
        width: 38px;
        height: 38px;
    }

    /* CTA */

    .contact_page_bottom {
        flex-wrap: wrap;
        padding: 22px;
    }

    .contact_page_bottom_text {
        min-width: calc(100% - 75px);
    }

    .contact_page_whatsapp {
        width: 100%;
        justify-content: center;
    }

}


@media (max-width: 400px) {

    .contact_page_heading h2 {
        font-size: 32px;
    }

    .contact_page_info_header h3 {
        font-size: 30px;
    }

    .contact_page_form_wrapper {
        padding: 20px 15px;
    }

    .contact_page_social {
        flex-direction: column;
        gap: 12px;
    }

    .contact_page_map {
        height: 290px;
    }

}
/* contact page end  */
/* visa application page stat  */
/* =========================================
   VISA APPLICATION PAGE
========================================= */

.visa_apply_page_section {
    position: relative;
    padding: 100px 20px;
    background: #f6fbfe;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

.visa_apply_page_section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -260px;
    right: -180px;
    border-radius: 50%;
    background: rgba(0, 116, 181, 0.055);
    pointer-events: none;
}

.visa_apply_page_section::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    bottom: -220px;
    left: -170px;
    border-radius: 50%;
    background: rgba(0, 116, 181, 0.045);
    pointer-events: none;
}

.visa_apply_page_container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}


/* =========================================
   HERO
========================================= */

.visa_apply_page_hero {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 70px;
    min-height: 500px;
    margin-bottom: 80px;
}

.visa_apply_page_hero_content {
    animation: visa_apply_page_fade_left .9s ease both;
}

.visa_apply_page_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border: 1px solid rgba(0, 116, 181, .22);
    border-radius: 50px;
    background: #fff;
    color: #0074b5;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.visa_apply_page_hero h1 {
    max-width: 680px;
    margin: 22px 0 20px;
    color: #082335;
    font-size: clamp(43px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -3px;
    font-weight: 800;
}

.visa_apply_page_hero h1 span {
    display: block;
    color: #0074b5;
}

.visa_apply_page_hero_content > p {
    max-width: 600px;
    margin: 0;
    color: #687b88;
    font-size: 16px;
    line-height: 1.85;
}

.visa_apply_page_hero_points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
}

.visa_apply_page_hero_points div {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #365464;
    font-size: 13px;
    font-weight: 600;
}

.visa_apply_page_hero_points i {
    color: #18a957;
}


/* =========================================
   HERO VISUAL
========================================= */

.visa_apply_page_hero_visual {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: visa_apply_page_fade_right .9s ease both;
}

.visa_apply_page_hero_visual::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: #e4f3fa;
    animation: visa_apply_page_float 5s ease-in-out infinite;
}

.visa_apply_page_passport_card {
    position: relative;
    z-index: 3;
    width: 280px;
    height: 360px;
    padding: 25px;
    border-radius: 20px;
    background: linear-gradient(145deg, #086b9f, #063f61);
    box-shadow: 0 30px 60px rgba(5, 52, 79, .25);
    transform: rotate(5deg);
    animation: visa_apply_page_passport_float 4s ease-in-out infinite;
}

.visa_apply_page_passport_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255,255,255,.9);
}

.visa_apply_page_passport_top i {
    font-size: 24px;
}

.visa_apply_page_passport_top span {
    font-size: 8px;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.visa_apply_page_passport_body {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 70px;
}

.visa_apply_page_passport_photo {
    width: 78px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: rgba(255,255,255,.18);
    color: rgba(255,255,255,.7);
    font-size: 30px;
}

.visa_apply_page_passport_lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.visa_apply_page_passport_lines span {
    display: block;
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: rgba(255,255,255,.25);
}

.visa_apply_page_passport_lines span:nth-child(2) {
    width: 75%;
}

.visa_apply_page_passport_lines span:nth-child(3) {
    width: 55%;
}

.visa_apply_page_passport_bottom {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.75);
    font-size: 9px;
    letter-spacing: 2px;
    text-align: center;
}

.visa_apply_page_floating_icon {
    position: absolute;
    z-index: 5;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #f6fbfe;
    border-radius: 17px;
    background: #fff;
    color: #0074b5;
    font-size: 21px;
    box-shadow: 0 15px 35px rgba(0,0,0,.1);
}

.visa_apply_page_floating_icon.icon_one {
    top: 60px;
    right: 15px;
    animation: visa_apply_page_float 3.5s ease-in-out infinite;
}

.visa_apply_page_floating_icon.icon_two {
    bottom: 65px;
    left: 30px;
    animation: visa_apply_page_float 4s ease-in-out infinite .4s;
}

.visa_apply_page_floating_icon.icon_three {
    right: 35px;
    bottom: 30px;
    animation: visa_apply_page_float 3.8s ease-in-out infinite .8s;
}


/* =========================================
   MAIN AREA
========================================= */

.visa_apply_page_main {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(290px, .75fr);
    gap: 30px;
    align-items: start;
}


/* =========================================
   FORM CARD
========================================= */

.visa_apply_page_form_card {
    padding: 40px;
    border: 1px solid #dfe9ee;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 25px 70px rgba(8, 51, 76, .08);
    animation: visa_apply_page_fade_up .8s ease both;
}

.visa_apply_page_form_header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 28px;
    border-bottom: 1px solid #edf1f3;
}

.visa_apply_page_form_header > div:first-child > span {
    color: #0074b5;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.visa_apply_page_form_header h2 {
    margin: 7px 0;
    color: #092537;
    font-size: 29px;
}

.visa_apply_page_form_header p {
    max-width: 560px;
    margin: 0;
    color: #788994;
    font-size: 13px;
    line-height: 1.7;
}

.visa_apply_page_form_header_icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #e9f6fb;
    color: #0074b5;
    font-size: 23px;
}


/* =========================================
   PROGRESS
========================================= */

.visa_apply_page_progress {
    display: flex;
    align-items: center;
    margin: 30px 0 35px;
}

.visa_apply_page_progress_item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.visa_apply_page_progress_item span {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e9eef1;
    color: #71818b;
    font-size: 12px;
    font-weight: 700;
}

.visa_apply_page_progress_item.active span {
    background: #0074b5;
    color: #fff;
}

.visa_apply_page_progress_item small {
    color: #71818b;
    font-size: 10px;
    font-weight: 700;
}

.visa_apply_page_progress_item.active small {
    color: #0074b5;
}

.visa_apply_page_progress_line {
    flex: 1;
    height: 1px;
    margin: 0 10px;
    background: #e2e8eb;
}


/* =========================================
   FORM SECTION
========================================= */

.visa_apply_page_form_section {
    padding: 27px 0;
    border-bottom: 1px solid #edf1f3;
}

.visa_apply_page_form_section_title {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 24px;
}

.visa_apply_page_form_section_title > span {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #eaf6fb;
    color: #0074b5;
    font-size: 11px;
    font-weight: 800;
}

.visa_apply_page_form_section_title h3 {
    margin: 0 0 2px;
    color: #173447;
    font-size: 17px;
}

.visa_apply_page_form_section_title p {
    margin: 0;
    color: #8a98a1;
    font-size: 11px;
}


/* =========================================
   FORM GRID
========================================= */

.visa_apply_page_form_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.visa_apply_page_group {
    margin-bottom: 18px;
}

.visa_apply_page_group label {
    display: block;
    margin-bottom: 8px;
    color: #294354;
    font-size: 12px;
    font-weight: 700;
}

.visa_apply_page_group label b {
    color: #e34a4a;
}


/* =========================================
   INPUTS
========================================= */

.visa_apply_page_input,
.visa_apply_page_textarea {
    position: relative;
}

.visa_apply_page_input > i,
.visa_apply_page_textarea > i {
    position: absolute;
    z-index: 2;
    left: 15px;
    top: 50%;
    color: #82929c;
    transform: translateY(-50%);
    pointer-events: none;
}

.visa_apply_page_textarea > i {
    top: 19px;
    transform: none;
}

.visa_apply_page_input input,
.visa_apply_page_input select,
.visa_apply_page_textarea textarea {
    width: 100%;
    outline: none;
    border: 1px solid #dce6eb;
    border-radius: 10px;
    background: #f9fcfd;
    color: #183344;
    font-family: inherit;
    font-size: 13px;
    transition: .3s ease;
}

.visa_apply_page_input input,
.visa_apply_page_input select {
    height: 50px;
    padding: 0 14px 0 43px;
}

.visa_apply_page_textarea textarea {
    min-height: 125px;
    padding: 14px 14px 14px 43px;
    resize: vertical;
}

.visa_apply_page_input input:focus,
.visa_apply_page_input select:focus,
.visa_apply_page_textarea textarea:focus {
    border-color: #0074b5;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0,116,181,.07);
}


/* =========================================
   TERMS
========================================= */

.visa_apply_page_terms {
    margin: 28px 0 20px;
}

.visa_apply_page_terms label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.visa_apply_page_terms input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: #0074b5;
}

.visa_apply_page_terms span {
    color: #72828d;
    font-size: 11px;
    line-height: 1.7;
}


/* =========================================
   SUBMIT
========================================= */

.visa_apply_page_submit {
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 11px;
    background: #0074b5;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease;
}

.visa_apply_page_submit:hover {
    background: #005e91;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,116,181,.22);
}

.visa_apply_page_submit i {
    transition: .3s ease;
}

.visa_apply_page_submit:hover i {
    transform: translateX(5px);
}

.visa_apply_page_form_message {
    min-height: 20px;
    margin-top: 12px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
}


/* =========================================
   SIDEBAR
========================================= */

.visa_apply_page_sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 25px;
}

.visa_apply_page_side_card {
    padding: 28px;
    border-radius: 20px;
    background: #082a3e;
    color: #fff;
    overflow: hidden;
}

.visa_apply_page_side_badge {
    color: #7bc8ec;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.visa_apply_page_side_card h3 {
    margin: 10px 0;
    font-size: 24px;
    line-height: 1.2;
}

.visa_apply_page_side_card h3 strong {
    color: #6ec5ec;
}

.visa_apply_page_side_card > p {
    margin: 0;
    color: #a9bfcb;
    font-size: 12px;
    line-height: 1.7;
}


/* Benefits */

.visa_apply_page_benefits {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 25px;
}

.visa_apply_page_benefits > div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.visa_apply_page_benefits > div > span {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,.09);
    color: #76c9eb;
}

.visa_apply_page_benefits h4 {
    margin: 0 0 3px;
    font-size: 13px;
}

.visa_apply_page_benefits p {
    margin: 0;
    color: #9bb3bf;
    font-size: 10px;
    line-height: 1.5;
}


/* =========================================
   PROCESS
========================================= */

.visa_apply_page_process_card {
    padding: 27px;
    border: 1px solid #dfe9ee;
    border-radius: 20px;
    background: #fff;
}

.visa_apply_page_process_card > span {
    color: #0074b5;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.visa_apply_page_process_card h3 {
    margin: 7px 0 22px;
    color: #163448;
    font-size: 23px;
}

.visa_apply_page_process_list {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.visa_apply_page_process_list > div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.visa_apply_page_process_list strong {
    width: 33px;
    height: 33px;
    min-width: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #eaf6fb;
    color: #0074b5;
    font-size: 10px;
}

.visa_apply_page_process_list h4 {
    margin: 0 0 3px;
    color: #294354;
    font-size: 12px;
}

.visa_apply_page_process_list p {
    margin: 0;
    color: #87959e;
    font-size: 10px;
    line-height: 1.5;
}


/* =========================================
   HELP CARD
========================================= */

.visa_apply_page_help_card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border-radius: 17px;
    background: #eaf8f0;
}

.visa_apply_page_help_icon {
    width: 43px;
    height: 43px;
    min-width: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #18a957;
    color: #fff;
    font-size: 20px;
}

.visa_apply_page_help_card > div:nth-child(2) {
    flex: 1;
}

.visa_apply_page_help_card span {
    display: block;
    color: #5b8a70;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.visa_apply_page_help_card h3 {
    margin: 3px 0 0;
    color: #17462c;
    font-size: 13px;
}

.visa_apply_page_help_card > a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #18a957;
    text-decoration: none;
    transition: .3s ease;
}

.visa_apply_page_help_card > a:hover {
    background: #18a957;
    color: #fff;
    transform: translateX(3px);
}


/* =========================================
   DOCUMENTS
========================================= */

.visa_apply_page_documents {
    margin-top: 100px;
}

.visa_apply_page_documents_heading {
    max-width: 700px;
    margin: auto auto 40px;
    text-align: center;
}

.visa_apply_page_documents_heading > span {
    color: #0074b5;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.visa_apply_page_documents_heading h2 {
    margin: 9px 0 10px;
    color: #092537;
    font-size: clamp(30px, 4vw, 43px);
}

.visa_apply_page_documents_heading p {
    margin: 0;
    color: #788a95;
    font-size: 13px;
    line-height: 1.7;
}

.visa_apply_page_document_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.visa_apply_page_document_card {
    padding: 25px 20px;
    border: 1px solid #dfe9ee;
    border-radius: 17px;
    background: #fff;
    text-align: center;
    transition: .35s ease;
}

.visa_apply_page_document_card:hover {
    transform: translateY(-7px);
    border-color: rgba(0,116,181,.2);
    box-shadow: 0 18px 40px rgba(9,56,82,.08);
}

.visa_apply_page_document_card > div {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 14px;
    background: #eaf6fb;
    color: #0074b5;
    font-size: 21px;
}

.visa_apply_page_document_card h3 {
    margin: 15px 0 7px;
    color: #1b394c;
    font-size: 14px;
}

.visa_apply_page_document_card p {
    margin: 0;
    color: #84939c;
    font-size: 11px;
    line-height: 1.6;
}


/* =========================================
   FINAL CTA
========================================= */

.visa_apply_page_cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 75px;
    padding: 30px 35px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0074b5, #075379);
    color: #fff;
    overflow: hidden;
}

.visa_apply_page_cta_icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255,255,255,.12);
    font-size: 23px;
}

.visa_apply_page_cta_content {
    flex: 1;
}

.visa_apply_page_cta_content > span {
    color: #9cdbf3;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.visa_apply_page_cta_content h2 {
    margin: 4px 0;
    font-size: 22px;
}

.visa_apply_page_cta_content p {
    margin: 0;
    color: #c3e2ef;
    font-size: 11px;
}

.visa_apply_page_cta_button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 21px;
    border-radius: 10px;
    background: #fff;
    color: #006da8;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    transition: .3s ease;
}

.visa_apply_page_cta_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes visa_apply_page_fade_left {

    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes visa_apply_page_fade_right {

    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes visa_apply_page_fade_up {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes visa_apply_page_float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}

@keyframes visa_apply_page_passport_float {

    0%,
    100% {
        transform: rotate(5deg) translateY(0);
    }

    50% {
        transform: rotate(5deg) translateY(-12px);
    }

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .visa_apply_page_hero {
        gap: 35px;
    }

    .visa_apply_page_main {
        grid-template-columns: 1fr;
    }

    .visa_apply_page_sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .visa_apply_page_help_card {
        grid-column: 1 / -1;
    }

    .visa_apply_page_document_grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 800px) {

    .visa_apply_page_section {
        padding: 70px 16px;
    }

    .visa_apply_page_hero {
        grid-template-columns: 1fr;
        text-align: center;
        margin-bottom: 60px;
    }

    .visa_apply_page_hero_content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .visa_apply_page_hero_points {
        justify-content: center;
    }

    .visa_apply_page_hero_visual {
        min-height: 400px;
    }

    .visa_apply_page_form_card {
        padding: 30px 24px;
    }

}


@media (max-width: 600px) {

    .visa_apply_page_section {
        padding: 55px 13px;
    }

    .visa_apply_page_hero h1 {
        font-size: 42px;
        letter-spacing: -1.5px;
    }

    .visa_apply_page_hero_content > p {
        font-size: 14px;
    }

    .visa_apply_page_hero_points {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .visa_apply_page_hero_visual {
        min-height: 350px;
    }

    .visa_apply_page_passport_card {
        width: 235px;
        height: 300px;
    }

    .visa_apply_page_passport_body {
        margin-top: 55px;
    }

    .visa_apply_page_passport_photo {
        width: 65px;
        height: 80px;
    }

    .visa_apply_page_floating_icon {
        width: 48px;
        height: 48px;
        border-width: 3px;
        font-size: 17px;
    }

    .visa_apply_page_form_card {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .visa_apply_page_form_header {
        gap: 10px;
    }

    .visa_apply_page_form_header h2 {
        font-size: 23px;
    }

    .visa_apply_page_form_header_icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 18px;
    }

    .visa_apply_page_progress_item small {
        display: none;
    }

    .visa_apply_page_progress_line {
        margin: 0 7px;
    }

    .visa_apply_page_form_grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .visa_apply_page_sidebar {
        grid-template-columns: 1fr;
    }

    .visa_apply_page_help_card {
        grid-column: auto;
    }

    .visa_apply_page_document_grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .visa_apply_page_document_card {
        padding: 20px 12px;
    }

    .visa_apply_page_cta {
        flex-wrap: wrap;
        padding: 24px 20px;
    }

    .visa_apply_page_cta_content {
        min-width: calc(100% - 80px);
    }

    .visa_apply_page_cta_button {
        width: 100%;
        justify-content: center;
    }

}


@media (max-width: 380px) {

    .visa_apply_page_document_grid {
        grid-template-columns: 1fr;
    }

    .visa_apply_page_hero h1 {
        font-size: 36px;
    }

}
/* visa application page end  */