* {
    margin    : 0;
    padding   : 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background : rgb(0 18 52) !important;
    color      : #fff;
    overflow-x : hidden;
}

a {
    text-decoration: none;
}

/*===================================
=            HEADER CSS            =
===================================*/

.main-header {
    position       : fixed;
    top            : 0;
    left           : 0;
    width          : 100%;
    z-index        : 999;
    background     : rgba(2, 16, 56, 0.95);
    backdrop-filter: blur(12px);
    border-bottom  : 1px solid rgba(255, 255, 255, 0.08);
    transition     : .3s;
}

.navbar-custom {
    padding: 8px 0;
}

.brand-logo {
    font-size     : 34px;
    font-weight   : 800;
    color         : #fff;
    letter-spacing: 2px;
}

.brand-logo span {
    color: #8ab4ff;
}

.nav-menu {
    display    : flex;
    align-items: center;
    gap        : 35px;
}

.nav-link-custom {
    color      : #fff;
    font-size  : 14px;
    font-weight: 600;
    transition : .3s;
    position   : relative;
}

.nav-link-custom:hover {
    color: #9dbfff;
}

.nav-link-custom::after {
    content   : '';
    position  : absolute;
    bottom    : -8px;
    left      : 0;
    width     : 0;
    height    : 2px;
    background: #fff;
    transition: .3s;
}

.nav-link-custom:hover::after {
    width: 100%;
}

.header-btn {
    background   : #fff;
    color        : #021038;
    padding      : 12px 26px;
    border-radius: 50px;
    font-size    : 14px;
    font-weight  : 700;
    transition   : .3s;
}

.header-btn:hover {
    background: #dce8ff;
    color     : #021038;
}

/*===================================
=            HERO CSS              =
===================================*/

.hero-section {
    padding-top   : 170px;
    padding-bottom: 120px;
    position      : relative;
    overflow      : hidden;
}

/* .hero-section::before {
    content      : '';
    position     : absolute;
    top          : -200px;
    right        : -200px;
    width        : 500px;
    height       : 500px;
    background   : rgba(255, 255, 255, 0.05);
    border-radius: 50%;
} */

.hero-badge {
    display       : inline-block;
    padding       : 10px 20px;
    border        : 1px solid rgba(255, 255, 255, 0.15);
    border-radius : 50px;
    font-size     : 13px;
    font-weight   : 700;
    letter-spacing: 2px;
    margin-bottom : 30px;
    color         : #d7e4ff;
    text-transform: uppercase;
}

.hero-title {
    font-size    : 72px;
    line-height  : 1.15;
    font-weight  : 800;
    margin-bottom: 30px;
}

.hero-title span {
    color: #ff7811;
}

.hero-description {
    max-width  : 760px;
    margin     : auto;
    font-size  : 17px;
    line-height: 2;
    color      : rgba(255, 255, 255, 0.72);
}

/*===================================
=            SECTION TITLE         =
===================================*/

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align   : center;
    margin-bottom: 70px;
}

.section-subtitle {
    color         : #8eb3ff;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size     : 13px;
    font-weight   : 700;
    margin-bottom : 18px;
}

.section-title h2 {
    font-size    : 34px;
    font-weight  : 800;
    margin-bottom: 20px;
}

.section-title p {
    max-width  : 760px;
    margin     : auto;
    color      : rgba(255, 255, 255, 0.72);
    line-height: 2;
    font-size  : 15px;
}

/*===================================
=            VIDEO CARD            =
===================================*/

.video-card {
    /* background   : #071d57; */
    border-radius: 24px;
    overflow     : hidden;
    transition   : .4s ease;
    border       : 1px solid rgba(255, 255, 255, 0.06);
    height       : 100%;
    position     : relative;
}

.video-card:hover {
    transform : translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width     : 100%;
    height    : 270px;
    object-fit: cover;
    transition: .5s ease;
}

/* BLACK OVERLAY */
.video-thumbnail::before {
    content   : '';
    position  : absolute;
    inset     : 0;
    background: rgba(0, 0, 0, 0.35);
    z-index   : 1;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.08);
}

.play-button {
    position       : absolute;
    top            : 50%;
    left           : 50%;
    transform      : translate(-50%, -50%);
    width          : 85px;
    height         : 85px;
    background     : rgba(255, 255, 255, 0.95);
    border-radius  : 50%;
    display        : flex;
    align-items    : center;
    justify-content: center;
    z-index        : 3;
    transition     : .3s;
}

.play-button i {
    font-size: 34px;
    color    : #021038;
}

.video-card:hover .play-button {
    background: #0d6efd;
}

.video-card:hover .play-button i {
    color: #fff;
}

.video-content {
    padding      : 30px;
    border-radius: 0px 0px 24px 24px !important;
    border       : 1px solid #ccc !important;
    border-top   : none !important;
}

.video-title {
    font-size    : 22px;
    font-weight  : 700;
    line-height  : 1.5;
    color        : #ffffff;
    margin-bottom: 15px;

    display           : -webkit-box;
    -webkit-line-clamp: 2;
    /* 2 lines */
    -webkit-box-orient: vertical;

    overflow     : hidden;
    text-overflow: ellipsis;

    min-height: 66px;
}

.video-description {
    font-size    : 14px;
    line-height  : 1.9;
    color        : rgba(255, 255, 255, 0.72);
    margin-bottom: 22px;

    display           : -webkit-box;
    -webkit-line-clamp: 2;
    /* 2 lines */
    -webkit-box-orient: vertical;

    overflow     : hidden;
    text-overflow: ellipsis;

    min-height: 54px;
}

.video-footer {
    display        : flex;
    align-items    : center;
    justify-content: space-between;
    gap            : 15px;
}

.video-date {
    font-size  : 13px;
    font-weight: 600;
    color      : #c7d7ff;
}

.watch-btn {
    background   : #fff;
    color        : #021038;
    padding      : 12px 22px;
    border-radius: 14px;
    font-size    : 14px;
    font-weight  : 700;
    transition   : .3s;
}

.watch-btn:hover {
    background: #0d6efd;
    color     : #fff;
}

/*===================================
=            ABOUT SECTION         =
===================================*/

.about-box {
    background   : #071d57;
    border-radius: 30px;
    padding      : 70px;
    border       : 1px solid rgba(255, 255, 255, 0.06);
}

.about-box h2 {
    font-size    : 52px;
    font-weight  : 800;
    margin-bottom: 25px;
}

.about-box p {
    color      : rgba(255, 255, 255, 0.72);
    line-height: 2;
    font-size  : 15px;
}

/*===================================
=            SERVICES              =
===================================*/

.service-box {
    background   : #071d57;
    padding      : 45px 35px;
    border-radius: 24px;
    text-align   : center;
    height       : 100%;
    border       : 1px solid rgba(255, 255, 255, 0.06);
    transition   : .4s;
}

.service-box:hover {
    transform : translateY(-10px);
    background: #0a2466;
}

.service-icon {
    width             : 70px;
    height            : 70px;
    /* margin         : auto auto 25px; */
    background        : rgba(255, 255, 255, 0.08);
    border-radius     : 50%;
    display           : flex;
    align-items       : center;
    justify-content   : center;
}

.service-icon i {
    font-size: 36px;
    color    : #fff;
}

.service-box h4 {
    font-size    : 24px;
    font-weight  : 700;
    margin-bottom: 18px;
}

.service-box p {
    color      : rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    font-size  : 14px;
}

/*===================================
=            CONTACT               =
===================================*/

.contact-box {
    background   : #071d57;
    padding      : 60px;
    border-radius: 30px;
    text-align   : center;
    border       : 1px solid rgba(255, 255, 255, 0.06);
}

.contact-box h2 {
    font-size    : 52px;
    font-weight  : 800;
    margin-bottom: 20px;
}

.contact-box p {
    max-width  : 720px;
    margin     : auto;
    line-height: 2;
    color      : rgba(255, 255, 255, 0.72);
}

.contact-info {
    margin-top: 45px;
}

.contact-info a {
    display      : inline-flex;
    align-items  : center;
    gap          : 10px;
    margin       : 10px;
    background   : #fff;
    color        : #021038;
    padding      : 14px 24px;
    border-radius: 50px;
    font-weight  : 700;
}

/*===================================
=            FOOTER                =
===================================*/

.site-footer {
    padding      : 35px 0;
    background   : #021038;
    border-top   : 1px solid rgba(255, 255, 255, 0.06);
    /* margin-top: 80px; */
}

.footer-text {
    color    : rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

.footer-link {
    color      : #fff;
    font-weight: 700;
}

/*===================================
=            MOBILE CSS            =
===================================*/

@media(max-width:991px) {

    .hero-title {
        font-size: 48px;
    }

    .section-title h2,
    .about-box h2,
    .contact-box h2 {
        font-size: 38px;
    }

    .nav-menu {
        gap: 18px;
    }

}

@media(max-width:767px) {

    .hero-title {
        font-size: 38px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .about-box,
    .contact-box {
        padding: 35px;
    }

    .video-thumbnail img {
        height: 240px;
    }

    .nav-menu {
        display: none;
    }

}

/*======================================
=            ABOUT SECTION             =
======================================*/

.about-section {
    padding   : 120px 0;
    background: #f5f5f5;
    position  : relative;
    overflow  : hidden;
}

.about-label {
    display       : inline-block;
    font-size     : 13px;
    letter-spacing: 4px;
    color         : #7c8aa5;
    font-weight   : 700;
    margin-bottom : 25px;
}

.country-wrapper {
    display      : flex;
    align-items  : center;
    gap          : 35px;
    margin-bottom: 45px;
}

.country-item {
    text-align: center;
}

.country-item img {
    width        : 58px;
    height       : 58px;
    border-radius: 50%;
    object-fit   : cover;
    margin-bottom: 12px;
    box-shadow   : 0 5px 18px rgba(0, 0, 0, 0.08);
}

.country-item span {
    display       : block;
    font-size     : 13px;
    font-weight   : 700;
    letter-spacing: 3px;
    color         : #0a1f57;
}

.country-line {
    width     : 160px;
    height    : 2px;
    border-top: 2px dashed #b8c0d4;
}

.about-title {
    font-size    : 25px;
    line-height  : 1.15;
    font-weight  : 800;
    color        : #2c949b;
    margin-bottom: 28px;
    max-width    : 850px;
}

.about-description {
    font-size    : 15px;
    line-height  : 1.9;
    color        : #55627d;
    max-width    : 820px;
    margin-bottom: 55px;
}

.about-stats {
    display      : flex;
    align-items  : stretch;
    border-top   : 1px solid #d7deea;
    border-bottom: 1px solid #d7deea;
}

.stat-box {
    flex        : 1;
    padding     : 40px 30px;
    border-right: 1px solid #d7deea;
}

.stat-box:last-child {
    border-right: 0;
}

.stat-box h3 {
    font-size    : 62px;
    font-weight  : 800;
    color        : #061b52;
    margin-bottom: 15px;
    line-height  : 1;
}

.stat-box span {
    display       : block;
    font-size     : 14px;
    color         : #7c8aa5;
    letter-spacing: 3px;
    font-weight   : 700;
    line-height   : 1.8;
}

.quote-box {
    background   : #03184f;
    padding      : 60px;
    border-radius: 26px;
    color        : #fff;
    position     : relative;
}

.quote-icon {
    font-size    : 38px;
    color        : rgba(255, 255, 255, 0.25);
    margin-bottom: 15px;
}

.quote-box p {
    font-size    : 22px;
    line-height  : 1.5;
    font-weight  : 700;
    margin-bottom: 35px;
}

.quote-box h5 {
    font-size     : 16px;
    letter-spacing: 3px;
    color         : rgba(255, 255, 255, 0.75);
    margin        : 0;
}

/*======================================
=            RESPONSIVE CSS            =
======================================*/

@media(max-width:991px) {

    .about-section {
        padding: 80px 0;
    }

    .about-title {
        font-size: 34px;
    }

    .about-description {
        font-size: 17px;
    }

    .quote-box {
        padding: 40px;
    }

    .quote-box p {
        font-size: 24px;
    }

    .about-stats {
        flex-wrap: wrap;
    }

    .stat-box {
        width        : 100%;
        border-right : 0;
        border-bottom: 1px solid #d7deea;
    }

    .stat-box:last-child {
        border-bottom: 0;
    }

}

@media(max-width:767px) {

    .country-wrapper {
        gap: 20px;
    }

    .country-line {
        width: 60px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-description {
        font-size  : 15px;
        line-height: 1.8;
    }

    .stat-box h3 {
        font-size: 35px;
    }

    .quote-box p {
        font-size: 20px;
    }

}

/*======================================
=            SERVICES CSS              =
======================================*/

.services-section {
    padding   : 120px 0;
    background: #f5f5f5;
}

.services-heading {
    margin-bottom: 70px;
}

.services-subtitle {
    display       : inline-block;
    font-size     : 13px;
    font-weight   : 700;
    letter-spacing: 4px;
    color         : #7b879f;
    margin-bottom : 20px;
}

.services-heading h2 {
    font-size    : 56px;
    font-weight  : 800;
    line-height  : 1.2;
    color        : #061b52;
    margin-bottom: 22px;
}

.services-heading p {
    max-width  : 820px;
    margin     : auto;
    font-size  : 18px;
    line-height: 1.9;
    color      : #6b7280;
}

.service-card {
    position     : relative;
    background   : #ffffff;
    border       : 1px solid #dbe2ee;
    border-radius: 28px;
    padding      : 34px;
    height       : 100%;
    overflow     : hidden;
    transition   : all .35s ease;
    box-shadow   : 0 8px 30px rgba(0, 0, 0, 0.03);
    cursor       : pointer;
}

.service-card:hover {
    transform   : translateY(-8px);
    border-color: #061b52;
    box-shadow  : 0 20px 50px rgba(0, 0, 0, 0.08);
}

.service-number {
    /* position   : absolute; */
    top        : 25px;
    right      : 35px;
    font-size  : 48px;
    font-weight: 800;
    color      : rgba(6, 27, 82, 0.08);
    line-height: 1;
}

.service-icon {
    width             : 60px;
    height            : 60px;
    border-radius     : 18px;
    border            : 1px solid #dbe2ee;
    display           : flex;
    align-items       : center;
    justify-content   : center;
    /* margin-bottom  : 35px; */
    background        : #fff;
    box-shadow        : 0 8px 20px rgba(0, 0, 0, 0.04);
}

.service-icon i {
    font-size: 28px;
    color    : #061b52;
}

.service-card h3 {
    font-size    : 28px;
    font-weight  : 800;
    color        : #061b52;
    margin-bottom: 18px;
}

.service-card p {
    font-size    : 16px;
    line-height  : 1.4;
    color        : #5b6478;
    margin-bottom: 20px;
}

.service-card ul {
    margin       : 0;
    padding      : 20px 0;
    list-style   : none;
    border-top   : 1px solid #dbe2ee;
    border-bottom: 1px solid #dbe2ee;
}

.service-card ul li {
    position     : relative;
    padding-left : 22px;
    margin-bottom: 6px;
    color        : #5b6478;
    font-size    : 14px;
    line-height  : 1.7;
}

.service-card ul li:last-child {
    margin-bottom: 0;
}

.service-card ul li::before {
    content      : "";
    width        : 7px;
    height       : 7px;
    background   : #061b52;
    border-radius: 50%;
    position     : absolute;
    left         : 0;
    top          : 11px;
}

.service-card a {
    margin-top     : 28px;
    display        : flex;
    align-items    : center;
    justify-content: space-between;
    gap            : 10px;
    text-decoration: none;
    font-size      : 13px;
    letter-spacing : 3px;
    font-weight    : 800;
    color          : #061b52;
    transition     : .3s;
}

.service-card a i {
    font-size: 18px;
}

.service-card:hover a {
    gap: 16px;
}

/*======================================
=            RESPONSIVE CSS            =
======================================*/

@media(max-width:991px) {

    .services-section {
        padding: 80px 0;
    }

    .services-heading h2 {
        font-size    : 34px;
        word-break   : break-word;
        overflow-wrap: break-word;
    }

    .service-card {
        padding: 35px;
    }

    .service-card h3 {
        font-size: 28px;
    }

}

@media(max-width:767px) {

    .services-heading h2 {
        font-size: 32px;
    }

    .services-heading p {
        font-size: 15px;
    }

    .service-card {
        padding: 28px;
    }

    .service-card h3 {
        font-size: 24px;
    }

    .service-card p {
        font-size: 15px;
    }

    .service-number {
        font-size: 48px;
    }

}

.purchase-modal {
    position       : fixed;
    inset          : 0;
    width          : 100%;
    height         : 100%;
    background     : rgba(2, 6, 23, 0.78);
    backdrop-filter: blur(8px);
    z-index        : 99999;
    display        : flex;
    align-items    : center;
    justify-content: center;
    opacity        : 0;
    visibility     : hidden;
    transition     : .35s ease;
    padding        : 20px;
}

.purchase-modal.active {
    opacity   : 1;
    visibility: visible;
}

.purchase-modal-box {
    width        : 100%;
    max-width    : 560px;
    background   : #071b52;
    border-radius: 28px;
    padding      : 50px 45px;
    text-align   : center;
    position     : relative;
    overflow     : hidden;
    border       : 1px solid rgba(255, 255, 255, 0.08);
    box-shadow   : 0 25px 80px rgba(0, 0, 0, 0.35);
    animation    : popupScale .35s ease;
}

@keyframes popupScale {

    from {
        transform: scale(.85);
        opacity  : 0;
    }

    to {
        transform: scale(1);
        opacity  : 1;
    }

}

.purchase-icon {
    width          : 95px;
    height         : 95px;
    border-radius  : 50%;
    margin         : 0 auto 25px;
    background     : rgba(255, 255, 255, 0.08);
    display        : flex;
    align-items    : center;
    justify-content: center;
}

.purchase-icon i {
    font-size: 42px;
    color    : #ffffff;
}

.purchase-modal-box h2 {
    color        : #ffffff;
    font-size    : 34px;
    font-weight  : 800;
    margin-bottom: 18px;
    line-height  : 1.4;
}

.purchase-modal-box p {
    color        : rgba(255, 255, 255, 0.72);
    font-size    : 15px;
    line-height  : 1.9;
    margin-bottom: 35px;
}

.purchase-actions {
    display        : flex;
    align-items    : center;
    justify-content: center;
    gap            : 15px;
    flex-wrap      : wrap;
}

.purchase-btn {
    background     : #ffffff;
    color          : #071b52;
    text-decoration: none;
    padding        : 15px 30px;
    border-radius  : 14px;
    font-weight    : 700;
    transition     : .3s ease;
    min-width      : 180px;
}

.purchase-btn:hover {
    background: #0d6efd;
    color     : #fff;
}

.close-popup-btn {
    background   : transparent;
    border       : 1px solid rgba(255, 255, 255, 0.18);
    color        : #ffffff;
    padding      : 15px 30px;
    border-radius: 14px;
    font-weight  : 600;
    transition   : .3s ease;
    min-width    : 140px;
}

.close-popup-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

@media(max-width:768px) {

    .purchase-modal-box {
        padding: 40px 25px;
    }

    .purchase-modal-box h2 {
        font-size: 28px;
    }

    .purchase-actions {
        flex-direction: column;
    }

    .purchase-btn,
    .close-popup-btn {
        width: 100%;
    }

}

/* =========================================
   PREMIUM PACKAGES CSS
========================================= */

.packages-section {
    padding   : 120px 0;
    background: #ffffff;
    position  : relative;
    overflow  : hidden;
}

.package-card {
    position      : relative;
    background    : #ffffff;
    border-radius : 30px;
    padding       : 28px 38px;
    border        : 1px solid #e2e8f0;
    overflow      : hidden;
    transition    : all .35s ease;
    display       : flex;
    flex-direction: column;
    height        : 100%;
    box-shadow    : 0 10px 40px rgba(15, 23, 42, 0.05);
}

.package-card:hover {
    transform : translateY(-10px);
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.10);
}

.active-package {
    border      : 2px solid #061b52;
    /* transform: scale(1.03); */
}

.active-package:hover {
    transform: scale(1.03) translateY(-10px);
}

.package-badge {
    position      : absolute;
    top           : 32px;
    right         : -18px;
    background    : #061b52;
    color         : #ffffff;
    font-size     : 11px;
    font-weight   : 800;
    letter-spacing: 1px;
    padding       : 10px 50px;
    transform     : rotate(45deg);
    z-index       : 2;
}

.package-icon {
    width          : 95px;
    height         : 95px;
    border-radius  : 50%;
    margin         : 0 auto 30px;
    background     : linear-gradient(135deg, #29899a, #2c949b);
    display        : flex;
    align-items    : center;
    justify-content: center;
    box-shadow     : 0 18px 45px rgba(6, 27, 82, 0.18);
}

.package-icon i {
    font-size: 42px;
    color    : #ffffff;
}

.package-title {
    text-align   : center;
    font-size    : 28px;
    line-height  : 1.3;
    font-weight  : 800;
    color        : #061b52;
    margin-bottom: 14px;
}

.package-subtitle {
    text-align      : center;
    color           : #64748b;
    font-size       : 15px;
    line-height     : 1.9;
    /* margin-bottom: 30px;
    min-height      : 84px; */
}

.package-price {
    text-align   : center;
    padding      : 16px 0;
    border-top   : 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
    margin-bottom: 16px;
}

.package-price .currency {
    display      : block;
    font-size    : 16px;
    font-weight  : 700;
    color        : #0d3b99;
    margin-bottom: 10px;
}

.package-price h2 {
    font-size    : 42px;
    line-height  : 1;
    font-weight  : 800;
    color        : #061b52;
    margin-bottom: 10px;
}

.package-price small {
    font-size     : 13px;
    font-weight   : 700;
    color         : #94a3b8;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.package-content {
    flex: 1;
}

.package-content p {
    font-size    : 15px;
    line-height  : 2;
    color        : #475569;
    margin-bottom: 20px;
}

.package-content strong {
    display      : block;
    font-size    : 14px;
    color        : #061b52;
    margin-bottom: 18px;
    font-weight  : 800;
}

.package-content ul {
    margin      : 0;
    padding-left: 22px;
}

.package-content ul li {
    font-size    : 15px;
    line-height  : 2;
    color        : #334155;
    margin-bottom: 12px;
    font-weight  : 500;
}

.package-content ul li::marker {
    color: #0d3b99;
}

.package-btn {
    width          : 100%;
    height         : 60px;
    margin-top     : 35px;
    border-radius  : 18px;
    background     : linear-gradient(135deg, #061b52, #0d3b99);
    display        : flex;
    align-items    : center;
    justify-content: center;
    gap            : 10px;
    color          : #ffffff;
    font-size      : 16px;
    font-weight    : 700;
    text-decoration: none;
    transition     : all .3s ease;
}

.package-btn:hover {
    background: #021038;
    color     : #ffffff;
    transform : translateY(-2px);
}

.package-btn i {
    font-size: 18px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px) {

    .packages-section {
        padding: 80px 0;
    }

    .active-package {
        transform: scale(1);
    }

    .active-package:hover {
        transform: translateY(-10px);
    }

    .package-title {
        font-size: 28px;
    }

    .package-price h2 {
        font-size: 54px;
    }

}

@media(max-width:767px) {

    .package-card {
        padding: 28px 25px;
    }

    .package-title {
        font-size: 24px;
    }

    .package-subtitle {
        min-height: auto;
    }

    .package-price h2 {
        font-size: 44px;
    }

    .package-content ul li {
        line-height: 1.8;
    }

}

.login-section {
    background: #f5f7fb;
}

.login-box {
    background   : #ffffff;
    border-radius: 30px;
    padding      : 50px 40px;
    box-shadow   : 0 20px 60px rgba(15, 28, 66, 0.08);
    position     : relative;
    overflow     : hidden;
}

.login-box::before {
    content   : '';
    position  : absolute;
    top       : 0;
    left      : 0;
    width     : 100%;
    height    : 7px;
    background: linear-gradient(90deg, #0f1c42, #2563eb);
}

.login-icon {
    width          : 90px;
    height         : 90px;
    border-radius  : 50%;
    background     : rgba(37, 99, 235, 0.08);
    display        : flex;
    align-items    : center;
    justify-content: center;
    margin         : 0 auto 25px;
}

.login-icon i {
    font-size: 42px;
    color    : #2563eb;
}

.login-box h2 {
    text-align   : center;
    font-size    : 38px;
    font-weight  : 800;
    color        : #0f1c42;
    margin-bottom: 12px;
}

.login-box p {
    text-align   : center;
    color        : #6b7280;
    font-size    : 15px;
    line-height  : 1.8;
    margin-bottom: 35px;
}

.login-group {
    margin-bottom: 22px;
}

.login-group label {
    display      : block;
    margin-bottom: 10px;
    font-size    : 14px;
    font-weight  : 700;
    color        : #0f1c42;
}

.login-group input {
    width        : 100%;
    height       : 58px;
    border-radius: 14px;
    border       : 1px solid #dbe2ea;
    padding      : 0 18px;
    font-size    : 15px;
    font-weight  : 500;
    outline      : none;
    transition   : 0.3s;
    background   : #fff;
}

.login-group input:focus {
    border-color: #2563eb;
    box-shadow  : 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.login-btn {
    width        : 100%;
    height       : 60px;
    border       : none;
    border-radius: 15px;
    background   : #0f1c42;
    color        : #ffffff;
    font-size    : 16px;
    font-weight  : 700;
    margin-top   : 10px;
    transition   : 0.3s;
}

.login-btn:hover {
    transform: translateY(-2px);
}

.login-btn i {
    margin-left: 8px;
}

.auth-wrapper {
    display              : grid;
    grid-template-columns: 1fr 1fr;
    background           : #ffffff;
    border-radius        : 30px;
    overflow             : hidden;
    box-shadow           : 0 20px 60px rgba(15, 28, 66, 0.08);
}

.auth-left {
    background: linear-gradient(135deg, #0f1c42, #001237);
    padding   : 60px;
    color     : #ffffff;
}

.auth-badge {
    display      : inline-block;
    padding      : 10px 18px;
    border-radius: 50px;
    background   : rgba(255, 255, 255, 0.12);
    font-size    : 13px;
    font-weight  : 700;
    margin-bottom: 25px;
}

.auth-left h2 {
    font-size    : 32px;
    line-height  : 1.3;
    font-weight  : 800;
    margin-bottom: 20px;
}

.auth-left p {
    font-size  : 15px;
    line-height: 1.9;
    opacity    : 0.92;
}

.auth-features {
    margin-top: 35px;
}

.auth-feature {
    display      : flex;
    align-items  : center;
    gap          : 12px;
    margin-bottom: 18px;
    font-size    : 15px;
    font-weight  : 600;
}

.auth-feature i {
    color    : #4ade80;
    font-size: 20px;
}

.auth-right {
    padding: 55px;
}

.auth-tabs {
    display      : flex;
    gap          : 15px;
    margin-bottom: 35px;
}

.auth-tab {
    flex         : 1;
    height       : 55px;
    border       : none;
    border-radius: 14px;
    background   : #eef2ff;
    color        : #0f1c42;
    font-size    : 15px;
    font-weight  : 700;
    transition   : 0.3s;
}

.auth-tab.active {
    background: #0f1c42;
    color     : #ffffff;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.login-group {
    margin-bottom: 22px;
}

.login-group label {
    display      : block;
    margin-bottom: 10px;
    font-size    : 14px;
    font-weight  : 700;
    color        : #0f1c42;
}

.login-group input {
    width        : 100%;
    height       : 58px;
    border-radius: 14px;
    border       : 1px solid #dbe2ea;
    padding      : 0 18px;
    font-size    : 15px;
    font-weight  : 500;
    outline      : none;
}

.login-group input:focus {
    border-color: #2563eb;
    box-shadow  : 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.login-btn {
    width        : 100%;
    height       : 58px;
    border       : none;
    border-radius: 14px;
    background   : #0f1c42;
    color        : #ffffff;
    font-size    : 15px;
    font-weight  : 700;
}

.login-btn i {
    margin-left: 8px;
}

@media(max-width:991px) {

    .auth-wrapper {
        grid-template-columns: 1fr;
    }

    .auth-left {
        padding: 40px;
    }

    .auth-right {
        padding: 35px 25px;
    }

}

.auth-bottom-text {
    margin-top: 22px;
    text-align: center;
}

.auth-bottom-text p {
    margin     : 0;
    font-size  : 14px;
    color      : #6b7280;
    font-weight: 500;
}

.auth-bottom-text a {
    color          : #2563eb;
    font-weight    : 700;
    text-decoration: none;
    margin-left    : 4px;
}

.auth-bottom-text a:hover {
    text-decoration: underline;
}

.header-user-btn {
    display        : flex;
    align-items    : center;
    gap            : 12px;
    background     :#ff7811;
    color          : #ffffff !important;
    text-decoration: none;
    padding        : 10px 26px;
    border-radius  : 50px;
    font-size      : 14px;
    font-weight    : 700;
    transition     : 0.3s;
}

.header-user-btn:hover {
    transform: translateY(-2px);
    color    : #ffffff !important;
}

.user-icon {
    width          : 26px;
    height         : 26px;
    border-radius  : 50%;
    background     : rgba(255, 255, 255, 0.15);
    display        : flex;
    align-items    : center;
    justify-content: center;
}

.user-icon i {
    font-size: 18px;
}


/* ==================== gaurav ==================== */






/* ==================== MODERN RISING GRADIENT HOVER - CAREER COACHING ==================== */


/* ==================== WATER FILLING HOVER ANIMATION - CAREER COACHING ==================== */



.service-card:hover {
    transform : translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(30, 64, 175, 0.35);
}

/* Water Filling Layer */
.service-card::after {
    content      : '';
    position     : absolute;
    bottom       : 0;
    left         : 0;
    width        : 100%;
    height       : 0%;
    background   : linear-gradient(to top, #001233, #0a1428, #142355);
    transition   : height 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    z-index      : 1;
    border-radius: inherit;
}

.service-card:hover::after {
    height: 100%;
}

.service-card:hover ul li::before {
    color     : #fff !important;
    background: #fff;
}

/* Content stays above the water */
.service-card>* {
    position: relative;
    z-index : 2;
}

/* Text color change when filled */
.service-card:hover h3,
.service-card:hover p,
.service-card:hover li,
.service-card:hover .service-number,
.service-card:hover a {
    color: #ffffff !important;
}

/* Icon & Arrow Animation */
.service-card:hover .service-icon {
    color    : #fff;
    transform: scale(1.1);
}

.service-card:hover .ri-arrow-right-line {
    color    : #fff;
    transform: translateX(8px);
}

.hero-section {
    position             : relative;
    min-height           : 100vh;
    display              : flex;
    align-items          : center;
    background-image     : url('https://server1.pearl-developer.com/dome/image/catalog/banner-2.png');
    /* ← Change this */
    background-size      : cover;
    background-position  : center;
    background-attachment: fixed;
    /* Optional          : parallax feel */
    overflow             : hidden;
}

/* Blue Overlay */
.hero-section::before {
    content : '';
    position: absolute;
    top     : 0;
    left    : 0;
    width   : 100%;
    height  : 100%;
    background: linear-gradient(rgb(10 20 50 / 17%), rgb(15 35 80 / 38%));
    z-index: 1;
}

/* Content above overlay */
.hero-section .container {
    position: relative;
    z-index : 2;
}

/* Optional: Make text more readable */
.hero-title {
    color      : #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-description {
    color      : #e0e7ff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo-mark {
    width   : 180px;
    overflow: visible;
}

/* Stroke Moving Animation */
.infinity-animate {
    stroke-dasharray : 120;
    stroke-dashoffset: 120;
    animation        : infinityFlow 3s linear infinite;
}

@keyframes infinityFlow {
    0% {
        stroke-dashoffset: 120;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

/* ==================== STICKY HEADER WITH SCROLL BACKGROUND ==================== */

.main-header {
    position       : fixed;
    top            : 0;
    left           : 0;
    width          : 100%;
    z-index        : 9999;
    transition     : all 0.4s ease;
    background     : #2c949b;
    backdrop-filter: blur(0px);
}

.main-header.scrolled {
    background     : rgb(0 18 52) !important;
    backdrop-filter: blur(12px);
    box-shadow     : 0 10px 30px rgba(0, 0, 0, 0.15);
}

.main-header.scrolled .nav-link-custom,
.main-header.scrolled .header-user-btn {
    color: #ffffff;
}

.main-header.scrolled .logo-mark text {
    fill: #ffffff;
}

.g-3 {
    gap: 10px;
}

.custom-video-swiper-area {
    position: relative;
    width   : 100%;
    overflow: hidden;
}

.customVideoSwiper {
    padding: 10px 5px 50px;
}

.customVideoSwiper .swiper-slide {
    height: auto;
}

/* KEEP ORIGINAL DESIGN SAFE */
.customVideoSwiper .video-card {
    height    : 100%;
    transition: 0.35s ease;
}

.customVideoSwiper .video-card:hover {
    transform: translateY(-5px);
}

/* OPTIONAL */
.customVideoSwiper .swiper-pagination-bullet {
    width : 10px;
    height: 10px;
}

.customVideoSwiper .swiper-pagination-bullet-active {
    transform: scale(1.2);
}

.video-section {
    position: relative;
    overflow: hidden;
    z-index : 1;

    /* Background Image */
    background: url('https://img.freepik.com/free-photo/beautiful-mountains-landscape_23-2150787830.jpg?semt=ais_hybrid&w=740&q=80') center center/cover no-repeat;

    /* Optional Background Color */
    background-color: #0f172a;
}

/* Dark Overlay */
.video-section::before {
    content   : "";
    position  : absolute;
    inset     : 0;
    background: rgb(43 146 154);
    z-index   : -1;
}

/* Keep Content Above Overlay */
.video-section .container,
.video-section .custom-video-swiper-area {
    position: relative;
    z-index : 2;
}

/* package-content */
.package-content {
    line-height: 1.9;
}

.package-short {
    position  : relative;
    max-height: 80px;
    overflow  : hidden;
    transition: 0.4s ease;
}

.package-short::after {
    content   : "";
    position  : absolute;
    left      : 0;
    bottom    : 0;
    width     : 100%;
    height    : 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}

.package-short.active {
    max-height: 1000px;
}

.package-short.active::after {
    display: none;
}

.read-more-btn {
    display    : inline-block;
    margin-top : 10px;
    font-size  : 14px;
    font-weight: 600;
    color      : #ff7a18;
    cursor     : pointer;
}

/* Mobile Responsive Styles */
.navbar-custom {
    position: relative;
}

.nav-menu {
    display    : flex;
    gap        : 2rem;
    align-items: center;
}

/* Hamburger */
.hamburger {
    display   : none;
    background: none;
    border    : none;
    font-size : 1.8rem;
    color     : #fff;
    cursor    : pointer;
    padding   : 5px;
}

/* Mobile View */
@media (max-width: 992px) {
    .nav-menu {
        position       : fixed;
        top            : 70px;
        left           : -100%;
        width          : 100%;
        height         : calc(100vh - 80px);
        background     : #111c44;
        flex-direction : column;
        align-items    : center;
        justify-content: start;
        padding-top    : 3rem;
        gap            : 2rem;
        transition     : all 0.4s ease;
        z-index        : 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: block;
    }

    .nav-link-custom {
        font-size: 1.2rem;
    }
}

.hamburger i {
    transition: 0.3s;
}

/* Buttons */
.hero-buttons {
    display        : flex;
    gap            : 18px;
    justify-content: center;
    flex-wrap      : wrap;
}

.btn {
    padding       : 16px 32px;
    font-size     : 1.05rem;
    font-weight   : 600;
    border-radius : 50px;
    cursor        : pointer;
    transition    : all 0.3s ease;
    border        : none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #0a0a2a;
    color     : white;
    box-shadow: 0 8px 25px rgba(10, 10, 42, 0.4);
}

.btn-primary:hover {
    background: #1a1a3a;
    transform : translateY(-4px);
    box-shadow: 0 12px 30px rgba(10, 10, 42, 0.5);
}

.btn-secondary {
    background: transparent;
    color     : white;
    border    : 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background  : rgba(255, 255, 255, 0.1);
    border-color: white;
    transform   : translateY(-4px);
}

/* Mouse Scroll Icon */
.mouse-wrapper {
    position : absolute;
    bottom   : 40px;
    left     : 50%;
    transform: translateX(-50%);
}

.mouse {
    width          : 32px;
    height         : 52px;
    border         : 3px solid rgba(255, 255, 255, 0.8);
    border-radius  : 30px;
    position       : relative;
    display        : flex;
    justify-content: center;
}

.mouse-wheel {
    width        : 4px;
    height       : 12px;
    background   : rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    margin-top   : 10px;
    animation    : scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }

    100% {
        transform: translateY(0);
    }
}

.contact-section {
    background: #061a4b;
    position  : relative;
    overflow  : hidden;
    color     : #fff;
}

.contact-section::before {
    content      : '';
    position     : absolute;
    width        : 500px;
    height       : 500px;
    background   : rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    top          : -200px;
    right        : -200px;
}

.contact-content {
    position: relative;
    z-index : 2;
}

.contact-tag {
    color         : #b7c4ff;
    font-size     : 13px;
    letter-spacing: 4px;
    font-weight   : 600;
    display       : inline-block;
    margin-bottom : 18px;
}

.contact-title {
    font-size    : 36px;
    line-height  : 1.1;
    font-weight  : 700;
    margin-bottom: 25px;
    color        : #fff;
    max-width    : 600px;
}

.contact-text {
    font-size    : 14px;
    line-height  : 1.8;
    color        : #d4ddff;
    margin-bottom: 20px;
    max-width    : 650px;
}

/* Meeting Card */
.meeting-card {
    background   : rgba(255, 255, 255, 0.03);
    border       : 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding      : 16px;
    display      : flex;
    align-items  : center;
    gap          : 20px;
    margin-bottom: 20px;
    transition   : 0.4s;
}

.meeting-card:hover {
    transform   : translateY(-5px);
    border-color: rgba(255, 255, 255, 0.18);
    background  : rgba(255, 255, 255, 0.05);
}

.meeting-icon {
    width          : 68px;
    height         : 68px;
    border-radius  : 18px;
    background     : rgba(255, 255, 255, 0.07);
    display        : flex;
    align-items    : center;
    justify-content: center;
    flex-shrink    : 0;
}

.meeting-icon i {
    font-size: 30px;
    color    : #fff;
}

.meeting-info h5 {
    margin     : 0;
    font-size  : 18px;
    font-weight: 700;
    color      : #fff;
}

.meeting-info span {
    color    : #cfd7ff;
    font-size: 17px;
}

.meeting-arrow {
    margin-left: auto;
}

.meeting-arrow i {
    color    : #fff;
    font-size: 18px;
}

/* Contact Details */
.contact-details {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-item {
    display      : flex;
    gap          : 50px;
    padding      : 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-item span {
    min-width     : 120px;
    font-size     : 14px;
    letter-spacing: 3px;
    color         : #c5d0ff;
    font-weight   : 600;
}

.detail-item a,
.detail-item p {
    margin         : 0;
    color          : #fff;
    font-size      : 16px;
    text-decoration: none;
    line-height    : 1.6;
}

/* Form Box */
.contact-form-box {
    background     : rgba(255, 255, 255, 0.04);
    border         : 1px solid rgba(255, 255, 255, 0.08);
    border-radius  : 28px;
    padding        : 50px;
    backdrop-filter: blur(10px);
}

.contact-form-box label {
    color         : #cfd7ff;
    font-size     : 14px;
    letter-spacing: 3px;
    margin-bottom : 12px;
    display       : block;
    font-weight   : 600;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
    background   : rgba(255, 255, 255, 0.04);
    border       : 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    color        : #fff;
    padding      : 10px 20px;
    font-size    : 14px;
    box-shadow   : none;
}

.contact-form-box textarea.form-control {
    height    : auto;
    min-height: 120px;
    resize    : none;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
    border-color: #6b8cff;
    background  : rgba(255, 255, 255, 0.06);
    box-shadow  : none;
    color       : #fff;
}

.contact-form-box option {
    color: #000;
}

.submit-btn {
    width        : 100%;
    border       : none;
    border-radius: 50px;
    background   : #03133e;
    color        : #fff;
    font-size    : 14px;
    font-weight  : 700;
    transition   : 0.4s;
    padding      : 14px 20px;
}

.submit-btn:hover {
    background: #0a2c7d;
    transform : translateY(-3px);
}

/* Responsive */
@media(max-width:991px) {

    .contact-title {
        font-size: 24px;
    }

    .contact-text {
        font-size: 18px;
    }

    .detail-item {
        flex-direction: column;
        gap           : 10px;
    }

    .detail-item a,
    .detail-item p {
        font-size: 18px;
    }

    .contact-form-box {
        padding: 30px;
    }
}

@media(max-width:767px) {

    .contact-section {
        padding: 70px 0;
    }

    .contact-title {
        font-size: 22px;
    }

    .meeting-card {
        flex-wrap: wrap;
    }

    .meeting-arrow {
        display: none;
    }

    .contact-form-box {
        padding      : 25px;
        border-radius: 20px;
    }

    .contact-form-box .form-control,
    .contact-form-box .form-select {
        height   : 54px;
        font-size: 16px;
    }

    .submit-btn {
        height   : 56px;
        font-size: 17px;
    }
}

/* ============================================
       APPOINTMENT BOOKING - UNIQUE CSS NAMESPACE
       ============================================ */
.appt-booking-container {
    /* min-height: 100vh; */
    display        : flex;
    align-items    : center;
    justify-content: center;
    margin         : auto;
}

.appt-modal-wrapper {
    background   : white;
    border-radius: 28px;
    box-shadow   : 0 25px 60px rgba(0, 0, 0, 0.25);
    max-width    : 700px;
    width        : 100%;
    overflow     : hidden;
    position     : relative;
}

.appt-modal-header {
    padding      : 32px 32px 16px 32px;
    text-align   : center;
    border-bottom: 1px solid #f0f0f0;
    position     : relative;
}

.appt-close-btn {
    position       : absolute;
    top            : 24px;
    right          : 24px;
    background     : none;
    border         : none;
    font-size      : 28px;
    cursor         : pointer;
    color          : #999;
    width          : 32px;
    height         : 32px;
    display        : flex;
    align-items    : center;
    justify-content: center;
    transition     : color 0.3s;
}

.appt-close-btn:hover {
    color: #333;
}

.appt-header-label {
    font-size     : 12px;
    font-weight   : 600;
    letter-spacing: 2px;
    color         : #7c8ba4;
    text-transform: uppercase;
    margin-bottom : 8px;
}

.appt-header-title {
    font-size  : 26px;
    font-weight: 700;
    color      : #1a202c;
}

.appt-header-subtitle {
    font-size  : 15px;
    color      : #666;
    line-height: 1.6;
}

/* STEP INDICATOR */
.appt-steps-indicator {
    display        : flex;
    justify-content: center;
    gap            : 24px;
    margin-bottom  : 26px;
    padding        : 0 32px;
}

.appt-step-item {
    display    : flex;
    align-items: center;
    gap        : 12px;
    position   : relative;
}

.appt-step-number {
    width          : 42px;
    height         : 42px;
    border-radius  : 50%;
    display        : flex;
    align-items    : center;
    justify-content: center;
    font-weight    : 700;
    font-size      : 16px;
    background     : #e0e7ff;
    color          : #7c8ba4;
    transition     : all 0.4s ease;
}

.appt-step-number.appt-active {
    background: #1a2540;
    color     : white;
    box-shadow: 0 0 0 6px rgba(26, 37, 64, 0.15);
}

.appt-step-label {
    font-size  : 14px;
    font-weight: 600;
    color      : #7c8ba4;
    display    : none;
}

@media (min-width: 480px) {
    .appt-step-label {
        display: block;
    }
}

.appt-modal-body {
    padding: 14px 20px;

    min-height: 500px;
}

.appt-step-content {
    display  : none;
    animation: fadeIn 0.4s ease;
}

.appt-step-content.appt-active-step {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity  : 0;
        transform: translateY(10px);
    }

    to {
        opacity  : 1;
        transform: translateY(0);
    }
}

.appt-step-title {
    font-size    : 22px;
    font-weight  : 700;
    color        : #1a202c;
    text-align   : center;
    margin-bottom: 18px;
}

/* CALENDAR */
.appt-calendar {
    margin-bottom: 24px;
}

.appt-calendar-header {
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    margin-bottom  : 24px;
}

.appt-calendar-nav {
    display: flex;
    gap    : 12px;
}

.appt-calendar-btn {
    width          : 32px;
    height         : 32px;
    border         : 1px solid #ddd;
    background     : white;
    border-radius  : 6px;
    cursor         : pointer;
    font-size      : 16px;
    display        : flex;
    align-items    : center;
    justify-content: center;
    transition     : all 0.3s;
}

.appt-calendar-btn:hover {
    border-color: #1a2540;
    background  : #f8f9fa;
}

.appt-calendar-title {
    font-size  : 18px;
    font-weight: 700;
    color      : #1a202c;
    min-width  : 160px;
    text-align : center;
}

.appt-weekdays {
    display              : grid;
    grid-template-columns: repeat(7, 1fr);
    gap                  : 8px;
    margin-bottom        : 8px;
}

.appt-weekday {
    text-align    : center;
    font-size     : 12px;
    font-weight   : 600;
    color         : #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding       : 8px 0;
}

.appt-dates-grid {
    display              : grid;
    grid-template-columns: repeat(7, 1fr);
    gap                  : 8px;
}

.appt-date-cell {
    aspect-ratio   : 1;
    display        : flex;
    align-items    : center;
    justify-content: center;
    border-radius  : 10px;
    cursor         : pointer;
    font-weight    : 600;
    font-size      : 15px;
    color          : #999;
    background     : #f9fafb;
    border         : 2px solid transparent;
    transition     : all 0.3s;
    max-height     : 54px;
}

.appt-date-cell:hover {
    border-color: #1a2540;
    background  : #f0f5ff;
}

.appt-date-cell.appt-available {
    color: #555;
}

.appt-date-cell.appt-selected {
    background  : #1a2540;
    color       : white;
    border-color: #1a2540;
    font-weight : 700;
}

.appt-calendar-info {
    text-align: center;
    font-size : 13px;
    color     : #999;
    margin-top: 16px;
    font-style: italic;
}

/* TIME SLOTS */
.appt-time-section-title {
    font-size     : 12px;
    font-weight   : 700;
    letter-spacing: 1px;
    color         : #7c8ba4;
    text-transform: uppercase;
    margin-bottom : 16px;
    margin-top    : 28px;
}

.appt-time-section-title:first-of-type {
    margin-top: 0;
}

.appt-time-slots {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap                  : 12px;
    margin-bottom        : 24px;
}

.appt-time-slot {
    padding      : 8px 10px;
    border       : 2px solid #e0e7ff;
    border-radius: 12px;
    text-align   : center;
    font-weight  : 600;
    font-size    : 15px;
    color        : #333;
    background   : white;
    cursor       : pointer;
    transition   : all 0.3s;
}

.appt-time-slot:hover {
    border-color: #1a2540;
    transform   : translateY(-2px);
    box-shadow  : 0 4px 12px rgba(26, 37, 64, 0.1);
}

.appt-time-slot.appt-selected {
    background  : #1a2540;
    color       : white;
    border-color: #1a2540;
}

.appt-time-slot.disabled {
    background    : #e5e5e5 !important;
    color         : #8d8d8d !important;
    border        : 1px solid #d2d2d2 !important;
    opacity       : 1 !important;
    pointer-events: none !important;
    cursor        : not-allowed !important;
}

.appt-time-slot.disabled:hover {
    background: #e5e5e5 !important;
    color     : #8d8d8d !important;
}

/* CONFIRMATION SUMMARY */
.appt-appointment-summary {
    background   : #f8fafb;
    border       : 1px solid #e0e7ff;
    border-radius: 14px;
    padding      : 10px 24px;
    text-align   : center;
    margin-bottom: 12px;
}

.appt-summary-label {
    font-size     : 12px;
    font-weight   : 700;
    letter-spacing: 1px;
    color         : #7c8ba4;
    text-transform: uppercase;
    margin-bottom : 8px;
}

.appt-summary-datetime {
    font-size  : 16px;
    font-weight: 700;
    color      : #1a2540;
    line-height: 1.4;
}

/* FORM */
.appt-form-group {
    margin-bottom: 16px;
}

.appt-form-label {
    display       : block;
    font-size     : 12px;
    font-weight   : 700;
    letter-spacing: 1px;
    color         : #7c8ba4;
    text-transform: uppercase;
    margin-bottom : 10px;
}

.appt-form-input,
.appt-form-select,
.appt-form-textarea {
    width        : 100%;
    padding      : 13px 16px;
    border       : 2px solid #e0e7ff;
    border-radius: 10px;
    font-size    : 15px;
    color        : #333;
    background   : white;
    transition   : all 0.3s;
}

.appt-form-input:focus,
.appt-form-select:focus,
.appt-form-textarea:focus {
    outline     : none;
    border-color: #1a2540;
    box-shadow  : 0 0 0 4px rgba(26, 37, 64, 0.1);
}

.appt-form-textarea {
    resize    : vertical;
    min-height: 50px;
}

/* BUTTONS */
.appt-button-group {
    display: flex;
    gap    : 12px;
}

.appt-btn {
    flex           : 1;
    padding        : 14px 24px;
    border         : 2px solid #e0e7ff;
    border-radius  : 50px;
    font-size      : 15px;
    font-weight    : 600;
    cursor         : pointer;
    transition     : all 0.3s;
    background     : white;
    color          : #1a2540;
    text-decoration: none;
    display        : inline-flex;
    align-items    : center;
    justify-content: center;
    gap            : 8px;
}

.appt-btn:hover {
    border-color: #1a2540;
    background  : #f8fafb;
}

.appt-btn-primary {
    background  : #1a2540;
    color       : white;
    border-color: #1a2540;
}

.appt-btn-primary:hover {
    background  : #0f1623;
    border-color: #0f1623;
}

.appt-btn-back {
    flex: 0 1 auto;
}

/* SINGLE BUTTON STYLING */
.appt-single-btn {
    width     : 100%;
    margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .appt-modal-wrapper {
        border-radius: 20px;
    }

    .appt-modal-header {
        padding: 24px;
    }

    .appt-modal-body {
        padding: 28px 24px;
    }

    .appt-steps-indicator {
        padding: 0 24px;
        gap    : 16px;
    }

    .appt-step-title {
        font-size    : 24px;
        margin-bottom: 24px;
    }

    .appt-header-title {
        font-size: 20px;
    }

    .appt-time-slots {
        grid-template-columns: repeat(auto-fit, minmax(85px, 1fr));
    }
}

.modal {
    z-index: 99999 !important;
}

.modal-backdrop {
    z-index: 99998 !important;
}

.modal-dialog {
    pointer-events: auto;
}

.modal-content {
    pointer-events: auto;
    position      : relative;
    z-index       : 999999;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 600px !important;
        z-index  : 999;
    }

    .appt-booking-container {
        width: 100%;
    }

}

.btn-close {
    position: absolute;
    right   : 20px;
    top     : 18px;
}

.login-section {
    margin-top: 68px !important;
}

.password-toggle {
    position: absolute;
}

/* Password Toggle Styling */
.login-group.position-relative {
    position: relative;
}

.password-toggle {
    position : absolute;
    right    : 15px;
    top      : 68%;
    transform: translateY(-50%);
    cursor   : pointer;
    color    : #6c757d;
    z-index  : 10;
    padding  : 5px;
}

.password-toggle:hover {
    color: #495057;
}

.password-toggle i {
    font-size: 1.25rem;
}

/* Optional: Better spacing for password fields */
#password,
#confirm_password {
    padding-right: 45px !important;
}

.forgot-password a {
    color          : #6c757d;
    font-size      : 0.95rem;
    text-decoration: none;
}

.forgot-password a:hover {
    color          : #007bff;
    text-decoration: underline;
}

/* =========================
   UNIQUE DOMA SECTION CSS
   ========================= */
/* ADD THIS CSS */

.domaStoriesSwiper {
    overflow: hidden;
    padding : 20px 0 80px;
}

.domaStoriesSwiper .swiper-slide {
    opacity   : 0.4;
    transform : scale(0.85);
    transition: all 0.6s ease;
}

.domaStoriesSwiper .swiper-slide-active {
    opacity  : 1;
    transform: scale(1);
}

.doma-story-box {
    background     : rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border         : 1px solid rgba(255, 255, 255, 0.6);
    border-radius  : 40px;
    padding        : 80px 50px;
    box-shadow     : 0 20px 60px rgba(0, 0, 0, 0.06);
}

/* MOBILE */

@media(max-width:767px) {

    .doma-story-box {
        padding      : 50px 25px;
        border-radius: 25px;
    }

}

.doma-client-stories-section {
    position  : relative;
    overflow  : hidden;
    background: #f4f4f4;
    padding   : 60px 20px;

}

/* Background Glow */
.doma-client-stories-section::before {
    content      : "";
    position     : absolute;
    width        : 500px;
    height       : 500px;
    background   : rgba(13, 35, 78, 0.05);
    border-radius: 50%;
    top          : -180px;
    left         : -180px;
    filter       : blur(80px);
}

.doma-client-stories-section::after {
    content      : "";
    position     : absolute;
    width        : 450px;
    height       : 450px;
    background   : rgba(13, 35, 78, 0.04);
    border-radius: 50%;
    bottom       : -200px;
    right        : -150px;
    filter       : blur(80px);
}

.doma-story-box {
    max-width : 900px;
    margin    : auto;
    text-align: center;
    position  : relative;
    z-index   : 2;
}

.doma-subtitle {
    display       : inline-block;
    font-size     : 13px;
    letter-spacing: 5px;
    font-weight   : 700;
    color         : #7d8ca5;
    margin-bottom : 22px;
    text-transform: uppercase;
}

.doma-main-title {
    font-size    : 38px;
    line-height  : 1.1;
    font-weight  : 700;
    color        : #081844;
    margin-bottom: 30px;
}

.doma-description {
    max-width  : 760px;
    margin     : auto;
    font-size  : 18px;
    line-height: 1.9;
    color      : #46587b;
    font-weight: 400;
}

.doma-btn-group {
    margin-top     : 50px;
    display        : flex;
    justify-content: center;
    gap            : 22px;
    flex-wrap      : wrap;
}

.doma-btn-primary {
    background     : linear-gradient(135deg, #071d56, #0d2d7c);
    color          : #fff;
    padding        : 18px 40px;
    border-radius  : 60px;
    text-decoration: none;
    font-size      : 18px;
    font-weight    : 600;
    transition     : 0.4s ease;
    border         : 2px solid transparent;
    box-shadow     : 0 10px 25px rgba(8, 24, 68, 0.15);
}

.doma-btn-primary:hover {
    transform : translateY(-5px);
    color     : #fff;
    box-shadow: 0 15px 35px rgba(8, 24, 68, 0.25);
}

.doma-btn-outline {
    background     : rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    color          : #24457b;
    padding        : 18px 38px;
    border-radius  : 60px;
    text-decoration: none;
    font-size      : 18px;
    font-weight    : 600;
    border         : 1px solid #d5dce8;
    transition     : 0.4s ease;
}

.doma-btn-outline:hover {
    background: #081844;
    color     : #fff;
    transform : translateY(-5px);
}

/* Swiper Pagination */
.doma-pagination {
    position  : relative;
    margin-top: 60px;
}

.doma-pagination .swiper-pagination-bullet {
    width     : 12px;
    height    : 12px;
    background: #b5bcc9;
    opacity   : 1;
    transition: 0.4s ease;
    margin    : 0 8px !important;
}

.doma-pagination .swiper-pagination-bullet-active {
    width        : 34px;
    border-radius: 20px;
    background   : #081844;
}

/* =========================
   Responsive
   ========================= */

@media(max-width:991px) {

    .doma-client-stories-section {
        padding: 90px 20px;
    }

    .doma-main-title {
        font-size: 52px;
    }

    .doma-description {
        font-size  : 20px;
        line-height: 1.8;
    }

}

@media(max-width:767px) {

    .doma-client-stories-section {
        padding: 70px 15px;
    }

    .doma-main-title {
        font-size  : 36px;
        line-height: 1.25;
    }

    .doma-description {
        font-size  : 17px;
        line-height: 1.8;
    }

    .doma-btn-group {
        flex-direction: column;
        align-items   : center;
    }

    .doma-btn-primary,
    .doma-btn-outline {
        width     : 100%;
        max-width : 300px;
        text-align: center;
    }

}

/* ===================================
   UNIQUE PARTNER SECTION CSS
=================================== */

.gp-partner-section {
    background: #2c949b;
    padding   : 110px 0;
    overflow  : hidden;
    position  : relative;
    z-index   : 1;
}

.gp-partner-section::before {
    content      : '';
    position     : absolute;
    width        : 550px;
    height       : 550px;
    background   : rgba(24, 61, 148, 0.25);
    border-radius: 50%;
    top          : -250px;
    right        : -100px;
    filter       : blur(80px);
    z-index      : -1;
}

.gp-container {
    width    : 100%;
    max-width: 1450px;
    margin   : auto;
    padding  : 0 20px;
}

.gp-heading {
    text-align   : center;
    margin-bottom: 70px;
}

.gp-subtitle {
    color         : #9bb6ff;
    font-size     : 13px;
    font-weight   : 600;
    letter-spacing: 5px;
    display       : block;
    margin-bottom : 20px;
}

.gp-heading h2 {
    color        : #fff;
    font-size    : 34px;
    font-weight  : 800;
    margin-bottom: 20px;
    line-height  : 1.1;
}

.gp-heading p {
    color      : #d3def8;
    max-width  : 760px;
    margin     : auto;
    font-size  : 20px;
    line-height: 1.7;
}

/* SWIPER */

.gpPartnerSwiper {
    overflow      : visible;
    padding-bottom: 20px;
}

.gpPartnerSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items               : center;
}

.gpPartnerSwiper .swiper-slide {
    height: auto;
}

/* CARD */

.gp-card {
    position     : relative;
    text-align   : center;
    padding      : 45px 25px;
    border-radius: 30px;
    transition   : 0.4s ease;
}

.gp-card::after {
    content   : '';
    position  : absolute;
    right     : -15px;
    top       : 50%;
    transform : translateY(-50%);
    width     : 1px;
    height    : 170px;
    background: rgba(255, 255, 255, 0.08);
}

.gp-active-card {
    background     : rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    box-shadow     :
        0 0 0 1px rgba(255, 255, 255, 0.03),
        0 20px 60px rgba(0, 0, 0, 0.35);
}

.gp-logo-box {
    width          : 220px;
    height         : 110px;
    background     : #fff;
    border-radius  : 18px;
    display        : flex;
    align-items    : center;
    justify-content: center;
    margin         : 0 auto 30px;
    box-shadow     : 0 15px 35px rgba(0, 0, 0, 0.18);
    transition     : 0.4s;
}

.gp-logo-box img {
    max-width : 150px;
    object-fit: cover;
    max-height: 80px;
}

.gp-card-content h4 {
    color        : #fff;
    font-size    : 20px;
    margin-bottom: 12px;
    font-weight  : 700;
}

.gp-card-content span {
    color         : #8fa8eb;
    font-size     : 13px;
    letter-spacing: 4px;
    line-height   : 1.8;
    display       : block;
}

.gp-card:hover {
    transform: translateY(-10px);
}

.gp-card:hover .gp-logo-box {
    transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width:991px) {

    .gp-heading h2 {
        font-size: 50px;
    }

    .gp-heading p {
        font-size: 17px;
    }

    .gp-card::after {
        display: none;
    }
}

@media(max-width:767px) {

    .gp-partner-section {
        padding: 80px 0;
    }

    .gp-heading h2 {
        font-size: 38px;
    }

    .gp-heading p {
        font-size: 15px;
    }

    .gp-logo-box {
        width : 180px;
        height: 90px;
    }

    .gp-card-content h4 {
        font-size: 18px;
    }

}

.packages-section {
    background: #f8f9fa;
}

.package-card {
    background    : white;
    border-radius : 16px;
    padding       : 30px 25px;
    box-shadow    : 0 10px 30px rgba(15, 28, 66, 0.08);
    transition    : all 0.3s ease;
    display       : flex;
    flex-direction: column;
    height        : 100%;
    /* Important for equal height */
    position      : relative;
    overflow      : visabe;
}

.package-card:hover {
    transform : translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 28, 66, 0.12);
}




/* Badge */
.package-badge {
    position     : absolute;
    top          : 35px;
    right        : -19px;
    background   : #ffd700;
    color        : #0f1c42;
    font-size    : 12px;
    font-weight  : 700;
    padding      : 6px 14px;
    border-radius: 30px;
    box-shadow   : 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Icon */
.package-icon {
    font-size    : 42px;
    color        : #0f1c42;
    margin-bottom: 20px;
}

/* Content */
.package-title {
    font-size    : 1.5rem;
    font-weight  : 700;
    color        : #0f1c42;
    margin-bottom: 8px;
}

.package-subtitle {
    color        : #2a8e9a;
    margin-bottom: 25px;
    min-height   : 48px;
    /* Helps alignment */
}

.package-price {
    margin       : 20px 0;
    text-align   : center;
    padding      : 15px 0;
    border-top   : 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.package-price h2 {
    font-size  : 2.4rem;
    font-weight: 800;
    color      : #0f1c42;
    margin     : 5px 0;
}

.package-content {
    flex-grow    : 1;
    /* This is the key for equal height */
    margin-bottom: 25px;
    color        : #444;
}

/* Button at bottom */
.package-footer {
    margin-top: auto;
    /* Pushes button to bottom */
}

.package-btn {
    display        : flex;
    align-items    : center;
    justify-content: center;
    gap            : 10px;
    background     : #0f1c42;
    color          : white;
    padding        : 14px 24px;
    border-radius  : 50px;
    font-weight    : 600;
    transition     : all 0.3s ease;
    width          : 100%;
    text-decoration: none;
}

.package-btn:hover {
    background: #2c949b;
    transform : scale(1.03);
}

.packages-grid {
    padding: 40px 0;
}

.package-card {
    transition   : all 0.3s ease;
    border       : 1px solid #eee;
    border-radius: 12px;
    padding      : 30px 25px;
    position     : relative;
    overflow     : hidden;
}


.package-badge {
    position     : absolute;
    top          : 20px;
    right        : 20px;
    background   : #28a745;
    color        : white;
    font-size    : 12px;
    font-weight  : 600;
    padding      : 5px 12px;
    border-radius: 20px;
}

.goog-te-combo {
    height       : 38px;
    border-radius: 5px;
    padding      : 0 10px;
}

.goog-te-gadget {
    display: flex;
}

#discountArea label {
    color: rgb(15, 28, 66) !important;
}

.form-control:focus {
    box-shadow: none !important;
    border    : transparent !important;
}

#proceedStripe {
    padding      : 12px !important;
    border-radius: 0.375rem !important;
}

.notranslate {
    translate: no !important;
}


@media (max-width: 991px) {

    #google_translate_element {
        position : fixed;
        top      : 160%;
        right    : 7px;
        transform: translateY(-50%);
        z-index  : 999999;
    }

    .goog-te-gadget {
        font-size: 0 !important;
    }

    .goog-te-gadget .goog-te-combo {
        width           : 40px;
        height          : 40px;
        border-radius   : 8px;
        border          : none;
        outline         : none;
        cursor          : pointer;
        background-color: #fff;
        box-shadow      : 0 4px 15px rgba(0, 0, 0, 0.2);

        background-repeat  : no-repeat;
        background-position: center;
        background-size    : cover;

        color      : transparent;
        text-indent: -9999px;

        appearance        : none;
        -webkit-appearance: none;
        -moz-appearance   : none;
    }

    .flag-en {
        background-image: url('https://flagcdn.com/w80/gb.png');
    }

    .flag-de {
        background-image: url('https://flagcdn.com/w80/de.png');
    }

    .flag-it {
        background-image: url('https://flagcdn.com/w80/it.png');
    }

    .goog-logo-link,
    .goog-te-gadget span {
        display: none !important;
    }

    .goog-te-banner-frame {
        display: none !important;
    }

    body {
        top: 0 !important;
    }
}

#discountModal .modal-dialog {
    max-width: 650px;
}

#discountModal .modal-content {
    border       : none;
    border-radius: 24px;
    overflow     : hidden;
    box-shadow   : 0 25px 80px rgba(0, 0, 0, .18);
}

.discount-header {
    background: linear-gradient(135deg, #041a4f, #0d2f85);
    padding   : 35px;
    text-align: center;
    color     : #fff;
}

.discount-header i {
    font-size    : 60px;
    margin-bottom: 15px;
    display      : block;
}

.discount-header h3 {
    margin     : 0;
    font-size  : 30px;
    font-weight: 700;
}

.discount-header p {
    margin-top: 12px;
    opacity   : .9;
    font-size : 15px;
}

.discount-body {
    padding: 10px 35px 35px 35px;
}

.discount-action-btn {
    min-height   : 58px;
    border-radius: 14px;
    font-weight  : 600;
    font-size    : 16px;
}

.discount-code-box {
    background   : #f8fafc;
    border       : 1px solid #e5e7eb;
    border-radius: 16px;
    padding      : 20px;
    margin-top   : 20px;
}

.discount-code-box input {
    height       : 55px;
    border-radius: 12px;
}

.discount-code-box button {
    border-radius: 12px;
    padding      : 0 25px;
}

.discount-note {
    color     : #64748b;
    font-size : 14px;
    margin-top: 10px;
}

.discount-benefits {
    display        : flex;
    justify-content: center;
    gap            : 20px;
    margin-top     : 20px;
    flex-wrap      : wrap;
}

.discount-benefits span {
    background   : #eef4ff;
    color        : #0d2f85;
    padding      : 8px 14px;
    border-radius: 50px;
    font-size    : 13px;
    font-weight  : 600;
}

.discount-dev-btn {
    background: linear-gradient(135deg, #041a4f, #0d2f85) !important;
    color     : white !important;
}

.installment-dev-btn {
    background: #4b5c75 !important;
    color     : white !important;
}

.installment-box {
    margin-top   : 20px;
    background   : #f8fafc;
    border-radius: 18px;
    padding      : 25px;
    border       : 1px solid #e5e7eb;
}

.installment-header {
    text-align   : center;
    margin-bottom: 20px;
}

.installment-header i {
    font-size: 40px;
    color    : #0d2f85;
}

.installment-header h5 {
    font-weight: 700;
    margin-top : 10px;
}

.installment-header p {
    color    : #64748b;
    margin   : 0;
    font-size: 15px;
}

.installment-cards {
    display: grid;
    gap    : 15px;
}

.installment-card {
    background   : #fff;
    border       : 1px solid #dbe4ff;
    border-radius: 14px;
    padding      : 18px;
    text-align   : center;
    transition   : .3s;
}

.installment-card:hover {
    transform: translateY(-3px);
}

.installment-step {
    color    : #64748b;
    font-size: 14px;
}

.installment-price {
    font-size  : 28px;
    font-weight: 700;
    color      : #0d2f85;
    margin     : 8px 0;
}

.installment-date {
    color      : #16a34a;
    font-size  : 13px;
    font-weight: 600;
}

.installment-header h5 {
    color: #0d2f85 !important;
}

#continueInstallment {
    border-radius: 14px !important;
    box-shadow   : none !important;
}

@media (max-width: 767px) {
    #discountArea .input-group {
        position      : relative;
        display       : flex;
        flex-wrap     : wrap;
        align-items   : stretch;
        width         : 100%;
        flex-direction: column;
        gap           : 10px;
    }
     #discountArea #discountCode 
     {
        width: 100%;
        border-radius: 10px;
     }
      #applyDiscountBtn {
            padding: 16px 32px;
            border-radius: 10px;
      }
}
#google_translate_element{
    max-width: 142px;
}