:root {
    --theme-color: #14294e;
    --theme-color2: #00B2AC;
    --primary-color: #0B59DB;
    --title-color: #0B1422;
    --breadcumb-bg-color: #258b88;
    --body-color: #6E7070;
    --smoke-color: #F2F5FA;
    --smoke-color2: #F3F4F6;
    --smoke-color3: #EEF1FF;
    --smoke-color4: #F4F6F8;
    --black-color: #000000;
    --black-color2: #0D0D0C;
    --gray-color: #E1E4E5;
    --gray-color2: #999999;
    --white-color: #ffffff;
    --light-color: #E1E4E5;
    --light-bg-color: #242528;
    --dark-bg-color: #1A1B1D;
    --yellow-color: #FFB539;
    --success-color: #28a745;
    --error-color: #dc3545;
    --th-border-color: #D5D7DA;
    --th-border-color2: #E6E6E6;
    --brand-color: #79F4E4;
    --light-blue-color: #001C49;
    --title-font: "Plus Jakarta Sans", sans-serif;
    --body-font: "Open Sans", sans-serif;
    --style-font: "Nunito", sans-serif;
    --icon-font: "Font Awesome 6 Pro";
    --main-container: 1320px;
    --container-gutters: 24px;
    --section-space: 120px;
    --section-space-mobile: 80px;
    --section-title-space: 60px;
    --ripple-ani-duration: 2s
}

/* Active/Selected Page */
.selected_page {
    border: 1px solid #00b6b9;   /* teal border */
    color: #0a2c4d;              /* dark blue text */
    background-color: rgba(0, 182, 185, 0.1); /* subtle background */
    border-radius: 13px;         /* rounded corners */
    padding: 3px 12px !important;
    text-decoration: none;       /* remove underline */
    }

    .active_glow {
        position: relative;
        color: #001E4E;                   /* deep navy text */
        font-weight: 600;
        text-decoration: none;
        padding: 6px 10px;
        display: inline-block;
    }

    .active_glow::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 100%;
        background: linear-gradient(90deg, #00B2AC, #0a2c4d);
        border-radius: 1px
    }





.popup-search-box {
    position: fixed;
    top: 0;
    left: 50%;
    background-color: rgba(0, 0, 0, .95);
    height: 0;
    width: 0;
    overflow: hidden;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    border-radius: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all ease .4s;
    transition: all ease .4s
}

.popup-search-box button.searchClose {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 40px;
    right: 40px;
    border-width: 1px;
    border-style: solid;
    border-color: var(--theme-color2);
    background-color: rgba(0, 0, 0, 0);
    font-size: 22px;
    border-radius: 50%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all ease .4s;
    transition: all ease .4s;
    color: var(--theme-color2)
}

.popup-search-box button.searchClose:hover {
    color: var(--body-color);
    background-color: #fff;
    border-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.popup-search-box form {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    padding-bottom: 40px;
    cursor: auto;
    width: 100%;
    max-width: 700px;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    -webkit-transition: -webkit-transform ease .4s;
    transition: -webkit-transform ease .4s;
    transition: transform ease .4s;
    transition: transform ease .4s, -webkit-transform ease .4s
}

@media(max-width: 1199px) {
    .popup-search-box form {
        max-width: 600px
    }
}

.popup-search-box form input {
    font-size: 18px;
    height: 70px;
    width: 100%;
    border: 2px solid var(--theme-color2);
    background-color: rgba(0, 0, 0, 0);
    padding-left: 30px;
    color: #fff;
    border-radius: 50px
}

.popup-search-box form input::-moz-placeholder {
    color: #fff
}

.popup-search-box form input::-webkit-input-placeholder {
    color: #fff
}

.popup-search-box form input:-ms-input-placeholder {
    color: #fff
}

.popup-search-box form input::-ms-input-placeholder {
    color: #fff
}

.popup-search-box form input::placeholder {
    color: #fff
}

.popup-search-box form button {
    position: absolute;
    top: 0px;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    color: #fff;
    font-size: 24px;
    right: 12px;
    color: var(--white-color);
    cursor: pointer;
    width: 70px;
    height: 70px;
    -webkit-transition: all ease .4s;
    transition: all ease .4s;
    -webkit-transform: scale(1.001);
    transform: scale(1.001)
}

.popup-search-box form button:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.popup-search-box.show {
    opacity: 1;
    visibility: visible;
    width: 100.1%;
    height: 100%;
    -webkit-transition: all ease .4s;
    transition: all ease .4s;
    border-radius: 0
}

.popup-search-box.show form {
    -webkit-transition-delay: .5s;
    transition-delay: .5s;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1)
}




/* FIXED SOCIAL LINKS START HERE */

.fixed-social-icons {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px 0 0 8px;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.fixed-social-icons a {
color: #0a2c4d; /* dark blue base */
font-size: 20px;
text-align: center;
transition: all 0.3s ease;
}

/* Hover styles based on logo theme */
.fixed-social-icons a:hover:nth-child(1) { color: #00b6b9; } /* teal for phone */
.fixed-social-icons a:hover:nth-child(2) { color: #f97316; } /* orange for WhatsApp */
.fixed-social-icons a:hover:nth-child(3) { color: #00b6b9; } /* teal for email */
.fixed-social-icons a:hover:nth-child(4) { color: #f97316; } /* orange for location */
.fixed-social-icons a:hover:nth-child(5) { color: #00B2AC; } /* orange for location */




/* FIXED SOCIAL LINKS END HERE  */




/* Breadcrumb Start Here...... */
/* Alternative Style: Minimalist Luxury Glassmorphism */

.breadcumb-wrapper {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0 60px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.breadcumb-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, 
        rgba(20, 41, 78, 0.88) 0%,      /* --theme-color base */
        rgba(206, 240, 239, 0.78) 50%,   /* --breadcumb-bg-color teal */
        rgba(189, 250, 242, 0.45) 100% /* Fade to --brand-color */
    );
    backdrop-filter: blur(4px);
    z-index: 1;
}

/* Minimal Frosted Glass Card */
.glass-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.07);
    
    border: 1px solid rgba(121, 244, 228, 0.22); /* Soft --brand-color edge */
    border-radius: 36px;
    padding: 40px 60px;
    max-width: 760px;
    margin-left: 0;
    margin-right: auto;
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

/* Very subtle asymmetric glows */
.glass-card::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -60px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(121, 244, 228, 0.18), transparent 72%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
    animation: float-glow 24s infinite ease-in-out;
}

.glass-card::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -40px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(102, 83, 232, 0.15), transparent 75%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    animation: float-glow 26s infinite ease-in-out reverse;
}

@keyframes float-glow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

/* Typography - Bolder & More Elegant */
.breadcumb-title {
    font-family: var(--title-font);
    font-size: 78px;
    font-weight: 800;
    color: var(--white-color);
    margin: 0 0 20px 0;
    line-height: 1.02;
    letter-spacing: -2px;
}

.breadcumb-info {
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 44px 0;
    line-height: 1.7;
    max-width: 88%;
}

.breadcumb-menu {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: var(--body-font);
    font-size: 19px;
    font-weight: 500;
}

.breadcumb-menu a {
    color: var(--white-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcumb-menu .sub-text {
    color: var(--theme-color);
    
}

.breadcumb-menu a:hover {
    color: var(--brand-color);
}

.breadcumb-menu .separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 991px) {
    .breadcumb-wrapper { padding: 180px 0 140px; }
    .breadcumb-title { font-size: 64px; }
}

@media (max-width: 767px) {
    .breadcumb-title { font-size: 56px; }
    .glass-card { padding: 56px 44px; text-align: center; margin: 0 auto; max-width: 700px; }
    .breadcumb-info { max-width: 100%; }
    .breadcumb-menu { justify-content: center; }
}

@media (max-width: 575px) {
    .breadcumb-wrapper { padding: 30px 0 30px; }
    .breadcumb-title { font-size: 40px; }
    .glass-card { border-radius: 28px; padding: 48px 32px; }
}


/* ITS BreadCrumb End here */



.hero-3 {
    position: relative;
    z-index: 3;
    overflow: initial
}

.hero-3 .th-hero-bg {
    width: 100%;
    height: 100%;
    border-radius: 20px 20px 0 0;
}

.hero-3 .th-hero-bg:before {
    content: "";
    position: absolute;
    inset: 0;
    background: -webkit-gradient(linear, left top, right top, from(rgba(11, 20, 34, 0)), color-stop(36.56%, rgba(11, 20, 34, 0.39)), color-stop(44.27%, rgba(11, 20, 34, 0.56)), color-stop(54.37%, rgba(11, 20, 34, 0.72)), color-stop(67.71%, rgba(11, 20, 34, 0.87)), color-stop(84.64%, #0b1422));
    background: linear-gradient(90deg, rgba(11, 20, 34, 0) 0%, rgba(11, 20, 34, 0.39) 36.56%, rgba(11, 20, 34, 0.56) 44.27%, rgba(11, 20, 34, 0.72) 54.37%, rgba(11, 20, 34, 0.87) 67.71%, #0b1422 84.64%);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.hero-3 video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden
}

.hero-3 .scroll-down {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: left;
    transform-origin: left;
    position: absolute;
    bottom: 30px;
    right: -50px;
    width: 150px;
    height: 141px;
    text-align: center;
    z-index: 2;
    color: var(--white-color)
}

@media(max-width: 1699px) {
    .hero-3 .scroll-down {
        right: -70px;
        width: 142px;
        height: 10px
    }
}

@media(max-width: 1699px) {
    .hero-3 .scroll-down {
        display: none
    }
}

.hero-3 .scroll-down .scroll-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: var(--title-font);
    font-size: 16px;
    color: var(--white-color);
    font-weight: 300
}

.hero-3 .scroll-down .scroll-wrap span {
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    border: 1px solid var(--white-color)
}

.hero-3 .scroll-down .scroll-wrap span img {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    margin-bottom: 4px
}

.hero-slider-3 {
    position: relative
}

.hero-style3 {
    position: relative;
    padding: 285px 0 282px 0;
    padding-bottom: 320px;
    max-width: 750px;
    display: block;
    z-index: 4
}

@media(max-width: 1199px) {
    .hero-style3 {
        padding: 200px 0 430px 0
    }
}

@media(max-width: 991px) {
    .hero-style3 {
        text-align: center;
        padding: 170px 0 200px 0
    }
}

@media(max-width: 767px) {
    .hero-style3 {
        padding: 200px 0 220px 0
    }
}

.hero-style3 .hero-title {
    font-size: 70px;
    line-height: 1.2;
    text-transform: capitalize;
    color: var(--white-color);
    margin-top: -1.2rem;
    margin-bottom: 20px
}

@media(max-width: 1299px) {
    .hero-style3 .hero-title {
        font-size: 74px;
        line-height: 84px
    }
}

@media(max-width: 1199px) {
    .hero-style3 .hero-title {
        font-size: 64px;
        line-height: 74px;
        margin-top: -1rem
    }
}

@media(max-width: 767px) {
    .hero-style3 .hero-title {
        font-size: 54px;
        line-height: 64px
    }
}

@media(max-width: 575px) {
    .hero-style3 .hero-title {
        font-size: 40px;
        line-height: 50px;
        margin-top: -0.8rem
    }
}

@media(max-width: 375px) {
    .hero-style3 .hero-title {
        font-size: 30px;
        line-height: 40px
    }
}

.hero-style3 .hero-text {
    font-family: var(--style-font);
    color: #d5d7da;
    font-weight: 400;
    font-size: 18px;
    max-width: 575px;
    margin-bottom: 40px;
    line-height: 1.6
}

@media(max-width: 991px) {
    .hero-style3 .hero-text {
        display: block;
        margin: auto auto 40px auto
    }
}

.hero-style3 .th-btn {
    padding: 19px 30px
}

.hero-style3 .th-btn:hover {
    color: var(--title-color)
}

.hero-style3 .th-btn:hover::before {
    background-color: var(--white-color)
}

.hero3Thumbs {
    position: relative;
    right: 0;
    bottom: 110px;
    max-width: 424px;
    height: 186px
}

@media(max-width: 1299px) {
    .hero3Thumbs {
        bottom: 99px
    }
}

@media(max-width: 1199px) {
    .hero3Thumbs {
        bottom: 65px
    }
}

@media(max-width: 991px) {
    .hero3Thumbs {
        display: none
    }
}

.hero3-card {
    cursor: pointer
}

.hero3-card_wrapp {
    position: absolute;
    bottom: 0;
    background-color: var(--theme-color);
    border-radius: 24px 24px 0 0;
    max-width: 424px;
    min-height: 296px;
    z-index: 9
}

.hero3-card .hero-img {
    position: relative;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    z-index: 2
}

.hero3-card .hero-img:before {
    content: "";
    position: absolute;
    inset: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(13, 13, 12, 0.2)), to(rgba(13, 13, 12, 0.2)));
    background: linear-gradient(0deg, rgba(13, 13, 12, 0.2), rgba(13, 13, 12, 0.2));
    border-radius: 16px 16px 0px 0px;
    z-index: 1
}

.hero3-card .hero-img .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.hero3-card .hero-img .play-btn>i {
    background: rgba(0, 0, 0, 0);
    --icon-size: 40px;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    font-size: 16px
}

.hero3-swiper-custom {
    position: relative;
    right: 0;
    bottom: -186px;
    height: 110px;
    background-color: var(--theme-color);
    z-index: 99
}

@media(max-width: 1399px) {
    .hero3-swiper-custom {
        min-width: 390px
    }
}

@media(max-width: 1299px) {
    .hero3-swiper-custom {
        min-width: 100%
    }
}

@media(max-width: 991px) {
    .hero3-swiper-custom {
        bottom: 0
    }
}

@media(max-width: 1199px) {

    .hero3-swiper-custom .swiper-button-next,
    .hero3-swiper-custom .swiper-button-prev {
        top: var(--swiper-navigation-top-offset, 55%)
    }
}

.hero3-swiper-custom .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, 32px)
}

.hero3-swiper-custom .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 32px)
}

.hero3-swiper-custom .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 40px);
    z-index: 8
}

.hero3-swiper-custom .swiper-button-next,
.hero3-swiper-custom .swiper-button-prev {
    padding: 8px;
    width: 32px;
    height: 32px;
    border: 1px solid #fff;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 48px;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.hero3-swiper-custom .swiper-button-next:after,
.hero3-swiper-custom .swiper-button-prev:after {
    display: none !important
}

.hero3-swiper-custom .swiper-button-next img,
.hero3-swiper-custom .swiper-button-prev img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.hero3-swiper-custom .swiper-button-next:hover,
.hero3-swiper-custom .swiper-button-prev:hover {
    background-color: var(--white-color)
}

.hero3-swiper-custom .swiper-button-next:hover img,
.hero3-swiper-custom .swiper-button-prev:hover img {
    -webkit-filter: none;
    filter: none
}

.hero3-swiper-custom .swiper-pagination {
    color: var(--white-color)
}

.hero3-wrapper {
    position: relative;
    margin-top: -296px
}

@media(max-width: 991px) {
    .hero3-wrapper {
        margin-top: 0
    }

    .hero3-wrapper .container {
        max-width: 100%
    }
}

.hero-3thumbs {
    max-width: 396px
}

@media(max-width: 991px) {
    .hero3-feature-wrapp {
        margin-top: -100px
    }
}

@media(max-width: 767px) {
    .hero3-feature-wrapp {
        width: 100%
    }
}

.hero-featured {
    width: 924px;
    border-radius: 15px 0 0 0
}

@media(max-width: 1299px) {
    .hero-featured {
        max-width: 822px
    }
}

@media(max-width: 1199px) {
    .hero-featured {
        max-width: 100%;
        border-radius: 15px 15px 0 0
    }
}

@media(max-width: 991px) {
    .hero-featured {
        width: 100%;
        border-radius: 15px
    }
}

.hero-featured-icon {
    border-radius: 15px
}

@media(max-width: 767px) {
    .hero-featured-item {
        margin: 30px 0
    }
}