:root {
    --theme-color: #14294e;
    --theme-color2: #36afa0;
    --theme-color3: #f1873b;
    --primary-color: #0B59DB;
    --title-color: #0B1422;
    --breadcumb-bg-color: #36afa0;
    --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: 80px;
    --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
}

/* separator css icon */
.unique-separator-icon {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0.5rem;
}

.unique-separator-icon img {

    height: 24px;
    opacity: 0.1;
}


.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)
}


/* header customized based on mobile width : */


.company-title-slogan {
    text-align: left;
}

.company-link {
    text-decoration: none;
}

.company-name {
    color: #001E4E;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
}

.company-highlight {
    color: #00B2AC;
}

.company-slogan {
    font-size: 8px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.3px;
    color: #6c757d;
    /* Bootstrap's text-muted */
    margin-bottom: 0;
}


@media(max-width: 375px) {


    .company-name {
        font-size: 10px;
        flex-wrap: nowrap;

    }

    .company-slogan {
        font-size: 8px;

    }

    .th-menu-toggle {
        width: 45px;
        height: 45px;
    }
}






/* 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: 48px;
    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;
    height: 892px;

}

.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: 40px;
    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;
    border: 1px solid var(--white-color);
    /* Explicit border */
}

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

.hero-style3 .th-btn:hover::before {
    background-color: var(--theme-color2);

}



.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 img {
    /* target the actual <img> inside */
    width: 100%;
    height: 250px;
    object-fit: cover;
    /* fills container, no gaps, crops overflow */
    display: block;
    /* removes any bottom gap from inline image */
    object-position: center;
    /* optional: center crop, change to top, bottom if needed */
}

.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
    }
}



/*  css for the login button .. */
/* Your new login button customizations */
.mainLoginBtn {
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    /* comfortable padding */
    border-radius: 50px 10px;
    /* pill / rounded look - popular in 2025 */
    font-size: 0.95rem;
    transition: all 0.25s ease;
    white-space: nowrap;
    border-color: var(--theme-color);
    color: var(--theme-color2);
}

/* If using outline button and want stronger hover */
.btn-outline-primary.mainLoginBtn:hover {
    background-color: var(--theme-color2);
    color: white;
    border-color: var(--theme-color2);
}

/* Extra small screens inside xl breakpoint if needed */
@media (max-width: 1199.98px) {

    .mainLoginBtn {
        padding: 0.45rem 1rem;
        font-size: 0.9rem;
    }
}



/* Fixed bottom section (mobile only) */
.mobile-fixed-bottom {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 0.75rem 1rem;
    border-top: 1px solid #dee2e6;
    z-index: 10;
    margin-top: -25px;

}

/* Login button tweaks */
.mobile-fixed-bottom .login-btn {
    font-size: 0.875rem;
    /* small & clean */
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 10px 100px;
    border-color: var(--theme-color);
    color: var(--theme-color2);
}


.mobile-fixed-bottom .login-btn:hover {
    background-color: var(--theme-color2);
    color: white;
    border-color: var(--theme-color2);
    box-shadow: none;
}

/* Help link */
.support-link {
    font-size: 0.75rem;
    color: #6c757d;
    /* Bootstrap muted */
    text-decoration: none;
}

.support-link:hover {
    text-decoration: underline;
}







/*  contact us page css */

.contact-wrapp2 {
    border-radius: 30px
}

.contact-infobox-top {
    padding: 35px 95px
}

@media(max-width: 1299px) {
    .contact-infobox-top {
        padding: 35px 30px
    }
}

.contact-infobox-bottom {
    padding: 0 60px;
    border-top: 3px solid var(--white-color);
    border-radius: 20px 90px 20px 90px;
}

@media(max-width: 1299px) {
    .contact-infobox-bottom {
        padding: 0 30px
    }
}

@media(max-width: 767px) {
    .contact-infobox-bottom {
        padding: 0 20px;
        border-radius: 20px 20px 20px 20px;
    }
}

.contact-infobox-bottom .about-contact-grid {
    margin-bottom: 0;
    border: 0;
    padding: 40px 0
}

.contact-infobox-bottom .about-contact-grid:not(:last-child) {
    padding-right: 56px;
    border-right: 3px solid var(--white-color)
}

@media(max-width: 1299px) {
    .contact-infobox-bottom .about-contact-grid:not(:last-child) {
        padding-right: 22px
    }
}

@media(max-width: 1199px) {
    .contact-infobox-bottom .about-contact-grid:not(:last-child) {
        border-right: 0;
        border-bottom: 3px solid var(--white-color)
    }
}

@media(max-width: 767px) {
    .contact-infobox-bottom .about-contact-grid:not(:last-child) {
        padding-right: 0
    }
}

.contact-infobox-bottom .about-contact-icon {
    color: var(--theme-color2)
}


.contact-titlebox2 {
    margin-bottom: 0
}

@media(max-width: 991px) {
    .contact-titlebox2 {
        padding: 30px 0
    }
}

.contact-titlebox2 .sub-title {
    font-size: 18px
}


.contact-titlebox2 .sec-text {
    padding: 0 30px;
    margin-bottom: 0
}

@media(max-width: 1299px) {
    .contact-titlebox2 .sec-text {
        padding: 0 15px
    }
}

@media(max-width: 767px) {
    .contact-titlebox2 .sec-text {
        padding: 0
    }
}



/* Title data customized */

.custom-sec-title .sec-title {
    font-size: 16px;
    margin-bottom: 18px;
    margin-left: -66px;
    margin-top: -12px;
}

@media(max-width: 767px) {
    .custom-sec-title .sec-title {
        font-size: 14px
    }
}



/*  service category btn */

.service-cat-btn {
    border: 0;
    font-size: 14px;
    padding: 7px 25px;
    border-radius: 10px;
    -webkit-transition: .4s;
    transition: .4s;
    background: #eef1ff
}

.service-cat-btn:not(:last-child) {
    margin-right: 6px;
    margin-bottom: 10px
}

.service-cat-btn.active {
    color: var(--white-color);
    background: var(--theme-color)
}

.service-cat-btn:hover {
    color: var(--white-color);
    background: var(--theme-color)
}




/* Prjct descriptions */

.prjct-short-desc {
    color: var(--theme-color2);
}




/* Tech Stack we Use Section start from here  */

/* Section Root */
.ts-app-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Inter', -apple-system, sans-serif;
}

/* --- TAB NAVIGATION (Mobile Scroll & Pill Style) --- */

.ts-app-nav-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    display: block;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Hide for Firefox */
    padding: 10px 0;
}

/* Hide scrollbar for Chrome/Safari */
.ts-app-nav-scroll::-webkit-scrollbar {
    display: none;
}

.ts-app-nav {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start;
    gap: 12px;
    border: none !important;
    /* Removes default Bootstrap line */
}

/* Desktop centering */
@media (min-width: 992px) {
    .ts-app-nav {
        justify-content: center;
    }
}

/* Base Pill Style (Reference: image_631244.png) */
.ts-app-nav .ts-app-nav-link {
    flex: 0 0 auto;
    border: 1px solid #e0e0e0 !important;
    border-radius: 10px !important;
    background-color: #ffffff !important;
    color: var(--theme-color) !important;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* REMOVED: The underline (::after) effect is deleted to match reference images */

/* Active Pill State (Reference: image_631244.png) */
.ts-app-nav .ts-app-nav-link.active {
    color: var(--theme-color2) !important;
    /* Theme color text */
    border-color: var(--theme-color2) !important;
    /* Theme color border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* --- MAIN CONTAINER & CARDS --- */

.ts-app-main-container {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 24px;
    padding: 70px 40px;
    margin-top: 20px;
}

.ts-app-card {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid transparent;
}

.ts-app-card:hover {
    transform: translateY(-10px);
    border-color: var(--theme-color3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.ts-app-icon-wrap {
    width: 90px;
    height: 90px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    /* Added subtle border to icon box */
    padding: 15px;
    transition: 0.3s ease;
}

.ts-app-card:hover .ts-app-icon-wrap {
    border-color: var(--theme-color2);
}

.ts-app-icon-wrap img {
    max-width: 100%;
    height: auto;
    transition: 0.3s ease;
}

.ts-app-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* End here */



/* Fouder css section  */

/* Executive Founder Unique Styles */
.its-founder-section {
    padding: 100px 0;
    background-color: #f8fafc;
    font-family: 'Inter', sans-serif;
}

/* Container Box with shadow */
.its-founder-box-shadow {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 51, 102, 0.08);
}

/* --- IMAGE AREA --- */
.its-founder-image-area {
    position: relative;
    height: 100%;
    min-height: 450px;
}

.its-founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Premium "Founded Year" Badge */
.its-founder-experience {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 12px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 10;
    transition: transform 0.3s ease;
}

.its-founder-experience:hover {
    transform: translateY(-5px);
}

.its-exp-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 8px 15px rgba(0, 51, 102, 0.3);
}

.its-exp-text {
    line-height: 1.2;
}

.its-exp-since {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #003366;
    font-weight: 800;
    opacity: 0.8;
}

.its-exp-text strong {
    font-size: 13px;
    color: #1e293b;
    font-weight: 700;
}

/* --- DETAILS AREA --- */
.its-founder-details {
    padding: 60px;
}

.its-founder-pre {
    color: #003366;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
}

.its-founder-name {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.its-founder-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 30px;
}

.its-status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
}

.its-founder-bio p {
    font-size: 14px;
    font-family: var(--style-font);
    line-height: 1.8;
    color: #475569;
    margin-bottom: 35px;
    text-align: justify;
}

/* Contact Grid */
.its-founder-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.its-contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
    transition: 0.3s;
}

.its-contact-link:hover {
    color: #003366;
}

.its-contact-icon {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #003366;
}

/* Footer Section */
.its-founder-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
}

.its-social-item {
    color: #94a3b8;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: 0.3s;
}

.its-social-item:hover {
    color: #003366;
    transform: translateY(-3px);
}

.its-btn-modern {
    background: #003366;
    color: #fff !important;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 51, 102, 0.15);
}

.its-btn-modern:hover {
    background: #002244;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .its-founder-details {
        padding: 40px 30px;
    }

    .its-founder-name {
        font-size: 2.2rem;
    }

    .its-founder-footer {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .its-founder-experience {
        left: 20px;
        bottom: 20px;
        padding: 10px 20px;
    }
}

/* End here */




/* potfolio sections */

/* Project Item Structure */
.its-project-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 0;
    margin-bottom: -120px;

}

/* Image Styling */
.its-project-image {
    width: 65%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.its-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- THE PREMIUM GLASS CARD --- */
.its-project-card {
    width: 45%;
    margin-left: -10%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 24px;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 50px rgba(0, 51, 102, 0.08);
    /* Hover Transition */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Universal Hover Effect for Standard and Reverse */
.its-project-card:hover {
    border-color: var(--theme-color3);
    /* Changes from subtle white to corporate blue */
    box-shadow: 0 40px 90px rgba(0, 51, 102, 0.18);
}

/* Interaction: Zoom image when item area is entered */
.its-project-item:hover .its-project-image img {
    transform: scale(1.1);
}

/* Interaction: Fade in the Ghost Number more clearly */
.its-project-item:hover .its-project-number {
    color: #e2e8f0;
    transform: translateX(20px);
}

/* Content Styling */
.its-cat {
    display: block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--theme-color2);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.its-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--theme-color);
    margin-bottom: 20px;
}

.its-desc {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 30px;
}



/* Reversing for alternating layout */
.its-reverse {
    flex-direction: row-reverse;
}

.its-reverse .its-project-card {
    margin-left: 0;
    margin-right: -10%;
}

/* Specifically updating your requested reverse hover */
.its-reverse .its-project-card:hover {
    border-color: #003366;
    /* Switched from red to blue for premium feel, change to 'red' if preferred */
}

.its-reverse .its-project-number {
    left: auto;
    right: -20px;
}

.its-reverse .its-project-item:hover .its-project-number {
    transform: translateX(-20px);
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 991px) {
    .its-project-section {
        padding: 60px 0;
    }

    .its-project-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: -20px;
        padding: 0;
    }

    .its-project-image,
    .its-project-card {
        width: 100%;
        margin: 0;
    }

    .its-project-card {
        margin-top: -60px;
        padding: 30px;
        border-radius: 20px;
        backdrop-filter: blur(10px);
    }

    .its-main-title {
        font-size: 2.5rem;
    }

    .its-project-image {
        height: 300px;
    }
}


/* End Here */


/* service Aside detasils css */

/* --- Sidebar & Stats --- */
.ex-sidebar {
    padding-left: 40px;
}

.ex-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.ex-stat-item {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #f1f5f9;
}

.ex-stat-val {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #003366;
}

.ex-stat-lab {
    font-size: 11px;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 1px;
}

/* --- Download Section (db-) --- */
.db-download-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 25px;
    border: 1px solid #e2e8f0;
}

.db-card-content {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.db-file-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--theme-color);
    border: 1px solid #e2e8f0;
}

.db-file-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #ef4444;
    color: #fff;
    font-size: 9px;
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: bold;
}

.db-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: #0f172a;
}

.db-meta {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

.db-download-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--theme-color);
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.db-btn-progress {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.5s;
}

.db-download-btn:hover .db-btn-progress {
    left: 0;
}

/* --- Global Standards Widget Styling --- */
.ex-global-standards {
    background: #ffffff;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.03);
    margin-bottom: 25px;
}

.ex-widget-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--theme-color);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f8fafc;
}

.ex-standard-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.ex-standard-icon {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background: #f0f7ff;
    color: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 16px;
}

.ex-standard-info h6 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}

.ex-standard-info p {
    font-size: 13px;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

/* Featured Link to Portfolio */
.ex-view-work-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    font-size: 13px;
    font-weight: 700;
    color: var(--theme-color);
    text-decoration: none;
    transition: 0.3s ease;
}

.ex-view-work-link:hover {
    color: #10b981;
}

.ex-view-work-link i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.ex-view-work-link:hover i {
    transform: translateX(5px);
}

/* --- Contact Card --- */
.ex-contact-card {
    background: #0f172a;
    color: #fff;
    padding: 35px;
    border-radius: 20px;
}

.ex-card-tag {
    color: #10b981;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 800;
}

.ex-contact-info a {
    color: #fff;
    text-decoration: none;
    display: block;
    font-weight: 600;
    margin: 15px 0;
}

.ex-main-btn {
    width: 100%;
    background: var(--theme-color);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.3s;
}

.ex-main-btn:hover {
    background: #10b981;
    transform: translateY(-3px);
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .ex-sidebar {
        padding-left: 0;
        margin-top: 30px;
    }

    .ex-content-row {
        margin-top: -80px;
    }
}



/*  Unsubscribe page */

/* --- Root Styling --- */
.its-un-wrapper {
    background-color: var(--smoke-color4);
    font-family: 'Inter', sans-serif;
}

.its-un-card {
    background: var(--white-color);
    padding: 60px 45px;
    border-radius: 35px;
    box-shadow: 0 40px 100px rgba(0, 51, 102, 0.05);
    border: 1px solid #e2e8f0;
}

/* --- Status Icons --- */
.its-un-status-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border-radius: 50%;
}

.its-un-status-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.its-un-status-failure {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error-color);
    border: 2px solid rgba(239, 68, 68, 0.2);
}

/* --- Typography --- */
.its-un-sub-title {
    display: block;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.its-un-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--theme-color);
    margin-bottom: 15px;
}

.its-un-text {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
}


/* --- Trust Box --- */
.its-un-trust-statement {
    background: #f8fafc;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
}

.its-un-trust-statement h6 {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.its-un-trust-statement p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}
/* End */




/* Seleton image css loader */

/* Global Skeleton Container */
.skeleton-img-wrapper {
    position: relative;
    width: 100%;
    height: 300px; /* Adjust to your card height */
    background: #eeeeee;
    background-image: linear-gradient(to right, #eeeeee 0%, #dddddd 20%, #eeeeee 40%, #eeeeee 100%);
    background-repeat: no-repeat;
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite linear;
    border-radius: 10px;
    overflow: hidden;
}

@keyframes skeleton-shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* Hide the image until it is loaded */
.skeleton-img-wrapper img {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Class to remove shimmer and show image */
.skeleton-img-wrapper.loaded {
    background-image: none !important;
    background-color: transparent !important;
}

.skeleton-img-wrapper.loaded img {
    opacity: 1;
    
}