@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    position: relative;
}

header {
    background: #fff;
    height: 77px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.hero-section {
    width: 100%;
    padding: 4rem 0;
}

@keyframes shadow-wave {
    0% {
        box-shadow: 0 0 0 0 #c1b9b1;
    }

    50% {
        box-shadow: 0 0 0 0px rgba(0, 51, 102, 1);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 51, 102, 1);
    }
}

.video-container {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: #000;
    cursor: pointer;
}

    .video-container video {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.video-container:hover .play-btn-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

video::-webkit-media-controls {
    display: none !important;
}

.close-fullscreen-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 21;
    opacity: 0.8;
    transition: opacity 0.3s;
    display: none;
    line-height: 1;
}

    .close-fullscreen-btn:hover {
        opacity: 1;
    }

.custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 15px 20px;
    display: none;
    align-items: center;
    gap: 15px;
    z-index: 20;
    opacity: 0;
    transition: opacity 0.5s;
}

#video-wrapper.is-fullscreen .custom-controls {
    display: flex;
}

#video-wrapper.is-fullscreen .close-fullscreen-btn {
    display: block;
}

#video-wrapper.is-fullscreen:hover .custom-controls,
#video-wrapper.is-fullscreen:hover .close-fullscreen-btn {
    opacity: 1;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
}

.progress-bar-container {
    flex-grow: 1;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    cursor: pointer;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 4px;
}

.time-display {
    color: white;
    font-size: 0.9rem;
    min-width: 90px;
    text-align: center;
}

.volume-container {
    display: flex;
    align-items: center;
}

#volume-slider {
    width: 80px;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

    #volume-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 16px;
        height: 16px;
        background: white;
        border-radius: 50%;
        cursor: pointer;
    }

.text-content {
    padding-left: 1.5rem;
}

.hero-title {
    font-weight: 700;
    color: #1434a4;
    line-height: 1.2;
}

    .hero-title span {
        display: block;
    }

.hero-subtitle {
    font-size: 18px;
    color: #555;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.features-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
    margin-top: 1.6rem;
}

    .features-list li {
        margin-bottom: 0.8rem;
        color: #555;
        font-size: 1rem;
        font-weight: 600;
    }

        .features-list li i {
            margin-right: 10px;
            font-size: 1.2rem;
        }

.icon-simple {
    color: #d9534f;
}

.icon-no-screen,
.icon-no-ai {
    color: #d9534f;
}

.icon-real {
    color: #5cb85c;
}

.hero-tagline {
    color: red !important;
    font-size: 18px !important;
    font-weight: 600 !important;
}

    .hero-tagline span {
        font-size: 18px;
        font-weight: 600;
        color: green;
        margin-bottom: 2rem;
    }

.btn-activate {
    background-color: #1434a4;
    color: #ffffff;
    border: none;
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 3rem;
}

    .btn-activate:hover {
        background-color: #0d2a8a;
        color: #ffffff;
        transform: translateY(-2px);
    }

.navbar {
    transition: all 0.3s ease-in-out;
    height: 77px;
    width: 95%;
    margin-left: 5%;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.navbar-brand {
    color: #1034a6 !important;
    font-size: 1.5rem;
    padding: 0;
    margin-left: -5%;
}

.nav-link {
    color: #fff;
    font-weight: 600;
    margin: 0 0.5rem;
    transition: all 0.1s ease-in;
}

    .nav-link:hover,
    .nav-link.active {
        background-color: transparent;
        color: #ffffff !important;
        transform: translateY(-2px);
        border-bottom: 2px solid #fff;
    }

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.dropdown-item {
    color: #1434a4;
    font-weight: 600;
    transition: all 0.2s;
}

    .dropdown-item:hover {
        background-color: #1034a6;
        color: #ffffff;
    }

.btn-login {
    background-color: #fff;
    color: #000;
    border: 2px solid #fff;
    border-radius: 20px;
    font-weight: 600;
    padding: 8px 25px;
    transition: all 0.3s ease;
}

    .btn-login:hover {
        background-color: #fff;
        color: #000;
        transform: translateY(-2px);
    }

.navbar-toggler {
    border: none;
    font-size: 1.5rem;
    color: #000;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

.navbar-brand img {
    width: 150px;
    margin-top: 8px; /*
    margin-left: -60%;*/
}

nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    /*border-radius: 10% 0px 0px 10%;*/
    /* height: 77px !important;*/
    /*   width: 95% !important;
    margin-left: 5%;*/
    background: linear-gradient(90deg, #003366, #0047AB, rgba(255, 255, 255, 0.15)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 16px !important;
    color: #fff !important;
    z-index: 9999 !important;
    backdrop-filter: blur(6px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.hero-section {
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.nav-link:focus,
.nav-link:hover {
    color: #fff !important;
}

.is-fullscreen {
    border: none;
}

.sticky-cta-bar {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: none;
    align-items: center;
    gap: 1rem;
    background-color: #1434a4;
    padding: 10px 25px 10px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.cta-text {
    color: #1434a4;
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-button {
    background-color: #1434a4;
    color: #ffffff;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .cta-button:hover {
        background-color: #11172c;
        transform: scale(1.05);
    }


.login-modal-content {
    border-radius: 15px;
    border: none;
    overflow: hidden;
}

.modal-logo-side {
    background-color: #fff;
    padding: 2rem;
}

.modal-logo-img {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(2px 4px 6px black);
}

.modal-form-side {
    padding: 2.5rem;
}

.modal-title {
    font-weight: 700;
    color: #333;
}

.form-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 0.5rem;
}

.form-group .form-control {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 0.5rem 1rem;
}

    .form-group .form-control:focus {
        border-color: #1434a4;
        box-shadow: 0 0 0 0.25rem rgba(20, 52, 164, 0.25);
    }

.password-wrapper {
    position: relative;
}

.password-toggle-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
}

#password-input {
    padding-right: 40px;
}

.forgot-password-link {
    color: #1434a4;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

    .forgot-password-link:hover {
        text-decoration: underline;
    }

.block.section-bg1 h1 {
    font-weight: bold;
}


.btn-login-submit {
    background-color: #1434a4;
    color: #ffffff;
    border: none;
    padding: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

    .btn-login-submit:hover {
        background-color: #0d2a8a;
        color: #ffffff;
    }

.btn-reset-submit {
    background-color: #1434a4;
    color: #ffffff;
    border: none;
    padding: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

    .btn-reset-submit:hover {
        background-color: #5562b4;
        color: #ffffff;
    }

#toggle-password {
    cursor: pointer;
}

.btn-send-otp {
    background-color: #28a745;
    color: white;
    font-weight: 600;
}

    .btn-send-otp:hover {
        background-color: #218838;
        color: white;
    }

.btn-verify-otp {
    background-color: #ffc107;
    color: #212529;
    font-weight: 600;
}

    .btn-verify-otp:hover {
        background-color: #e0a800;
    }

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    background-color: #1434a4;
    color: #fff;
}

div#warningToast {
    width: fit-content;
}

.video-duration-display {
    display: none;
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    pointer-events: none;
    z-index: 5;
}

ul.checkmark-list {
    list-style: none;
}

.play-btn-overlay i {
    font-size: 2.5rem;
    color: #1434a4;
}

.checkmark-list li img {
    width: 2rem;
    height: fit-content;
}

.checkmark-list li span {
    margin-top: 4px;
    color: #555;
    font-weight: 600;
}

.checkmark-list li {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.headerText {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1434a4;
    line-height: 1.2;
    text-align: center;
    padding-top: 3rem;
}

.lineMargin {
    margin-top: 3rem;
}

.secondHeader {
    margin-bottom: 3rem;
}

.timeline-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 50px;
}

.timeline-line {
    position: absolute;
    left: 24px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: #dcdcdc;
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    left: 24px;
    top: 10px;
    width: 2px;
    height: 0;
    background-color: #6a5acd;
    z-index: 2;
    transition: height 0.4s ease-in-out;
}

.timeline-items {
    position: relative;
}

.timeline-section {
    position: relative;
    margin-bottom: 50px;
}

.timeline-dot {
    position: absolute;
    left: -34px;
    top: 15px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #495057;
    border: 2px solid #fff;
    z-index: 3;
    transition: background-color 0.4s ease;
}

.timeline-section.active .timeline-dot {
    background-color: #6a5acd;
}

.timeline-card {
    background-color: #f8f7ff;
    border: 1px solid #e6e3ff;
    border-radius: 8px;
    box-shadow: none;
    transition: transform 0.3s ease;
    box-shadow: 0 20px 24px -4px #00000014, 0 8px 8px -4px #00000008;
}

    .timeline-card:hover {
        transform: translateY(-5px);
    }

.card-title {
    color: #333;
}

.btn-take-quiz {
    background-color: #f7c66a;
    border-color: #f7c66a;
    color: #333;
    font-weight: 500;
}

    .btn-take-quiz:hover {
        background-color: #f5b945;
        border-color: #f5b945;
        color: #333;
    }

.btn-book-call {
    background-color: #fff;
    border: 1px solid #ccc;
    color: #555;
    font-weight: 500;
}

    .btn-book-call:hover {
        background-color: #f1f1f1;
        border-color: #bbb;
    }

@media (max-width: 767px) {
    .timeline-container {
        padding-left: 40px;
    }

    .timeline-line,
    .timeline-progress {
        left: 19px;
    }

    .timeline-dot {
        left: -30px;
    }
}

.hero-title:first-child {
    text-align: left;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#1434a4, #114d84);
    background-clip: text;
    font-family: Sora, sans-serif;
    font-size: 60px;
    font-weight: 700;
}

#benefit .video-card {
    border: none;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 20px 24px -4px #00000014, 0 8px 8px -4px #00000008;
    transition: transform 0.2s ease-in-out;
    border-radius: 15px;
}

.video-card-btn {
    border: 2px solid #1434a4;
    border-radius: 10px;
    padding: 8px 5px;
    width: 100%;
    transition: all 0.3s ease-in-out;
    background-color: #1434a4;
    color: #fff;
    box-shadow: 0 20px 24px -4px #00000014, 0 8px 8px -4px #00000008;
}

#benefit .video-card-btn:hover {
    border: 2px solid #1434a4;
    background-color: #fff;
    color: #1434a4;
}

#benefit .video-card:hover {
    cursor: pointer;
}

#benefit .video-card .card-img-top {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
    border-radius: 15px;
}

.card-body-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 1rem;
    border-radius: 15px;
}

    .card-body-overlay .card-title,
    .card-body-overlay .card-text {
        color: #ffffff;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .card-body-overlay .card-title {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .card-body-overlay .card-text {
        font-size: 0.875rem;
        color: #e9ecef;
        margin-bottom: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.btn-kebab.dropdown-toggle::after {
    display: none;
}

.btn-kebab {
    color: white;
    background-color: rgba(15, 20, 25, 0.7);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
}

    .btn-kebab:hover,
    .btn-kebab:focus {
        color: white;
        background-color: rgba(15, 20, 25, 0.9);
    }

#intelligence .video-card {
    border: none;
    background-color: transparent;
}

    #intelligence .video-card .kebab-menu {
        opacity: 0;
        transition: opacity 0.2s ease-in-out;
    }

    #intelligence .video-card:hover .kebab-menu {
        opacity: 1;
    }

.thumbnail-container {
    position: relative;
    cursor: pointer;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #fff !important;
    background-color: #1434a4 !important;
}

.thumbnail-container img {
    border-radius: 12px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.video-time {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
    pointer-events: none;
}

.video-details {
    display: flex;
    padding-top: 12px;
}

.channel-icon {
    position: relative;
    min-width: 48px;
}

    .channel-icon img {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        object-fit: cover;
    }

.live-badge {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #cc0000;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 1px 5px;
    border-radius: 3px;
    border: 1px solid #f9f9f9;
    display: none;
}

.channel-icon.live .live-badge {
    display: block;
}

.video-text {
    padding-right: 24px;
}

.video-title {
    font-size: 1rem;
    font-weight: 500;
    color: #0f0f0f;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.video-meta {
    font-size: 0.875rem;
    color: #606060;
}

    .video-meta a {
        color: #606060;
        text-decoration: none;
    }

        .video-meta a:hover {
            color: #0f0f0f;
        }

.kebab-menu .dropdown-toggle {
    color: #0f0f0f;
    padding: 0.5rem;
    margin: -0.5rem;
}

    .kebab-menu .dropdown-toggle::after {
        display: none;
    }

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    opacity: 0;
}

.benefit-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background-color: #5cb85c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

    .benefit-icon svg {
        width: 18px;
        height: 18px;
        fill: #ffffff;
    }

.benefit-content .title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3c3c5c;
    margin-bottom: 5px;
}

.benefit-content .description {
    font-size: 0.95rem;
    color: #3c3c5c;
    line-height: 1.6;
}

    .benefit-content .description strong {
        font-weight: 600;
    }

.scientificExplanationBox h3 {
    padding: 0 1rem;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1434a4;
    line-height: 1.2;
    font-weight: 700;
}

.scientificExplanationBox .description {
    padding: 0 1rem;
}

.scientificExplanationBoxHeader {
    margin-bottom: 2rem;
}

.lastChildMargin {
    margin-top: 1rem;
}

.scientificExplanationBoxHeader .description {
    font-size: 18px;
}

.custom-accordion {
    border-radius: 0;
    border: none;
    margin: auto;
    font-family: Arial, sans-serif;
}

.accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
}

    .accordion-item:last-child {
        border-bottom: none;
    }

.accordion-header .accordion-button {
    background-color: transparent;
    color: #1434a4;
    font-weight: bold;
    font-size: 1.5rem;
    padding: 1.5rem 1.5rem;
    border: none;
    box-shadow: none;
    text-align: left;
    width: 100%;
}

.accordion-button:not(.collapsed) {
    color: #1434a4;
    background-color: transparent;
}

.accordion-body {
    font-size: 18px;
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.logoDiv {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 5rem;
    padding-top: 3rem;
}

    .logoDiv img {
        width: 15rem;
    }

.logoDi + v a {
    margin-top: 1rem;
    text-decoration: none;
    font-size: 20px;
    color: #1434a4;
    font-weight: bold;
}

.underLineDiv {
    width: 70%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    opacity: 0.15;
    color: #000;
}

.logoDiv p {
    color: #000;
    text-align: center;
}

.logoDiv a {
    text-decoration: none;
}

.timeline-section:last-child {
    margin-bottom: 0px;
}

.mobileView {
    display: none;
}

.scientific {
    display: none;
}

section.mt-4.archive_personal_section {
    margin-top: 4% !important;
}

section.will_get_section {
    background: #fffaf0;
    padding: 10px;
    margin-top: 4%;
}

.privacy_and_terms {
    margin-bottom: 1%;
}

    .privacy_and_terms a {
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
    }

    .privacy_and_terms .terms_service {
        margin: 0 40px;
    }

footer {
    background-color: lightgray;
}

#benefit .video-title {
    text-align: center;
    padding-bottom: 12px;
}

#benefit .video-text {
    padding-right: 0;
}

.scientificExplanationBox {
    margin-top: 2rem;
}

.privacyNoticeHeader {
    margin-top: 2rem;
    font-weight: 700;
}

button.agreeBtn {
    width: auto;
    padding: 10px 20px;
    margin-top: 1rem;
    background: #1434a4;
    color: #fff;
    border: none;
    border-radius: 0.25rem;
}

.loginPageDiv .mt5 {
    margin-top: 2rem;
    margin-bottom: 0.2rem;
}

.loginPageDiv p {
    font-size: 18px;
    font-weight: 700;
}

img#loginPageLogo {
    filter: none;
}

.about-us-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d2c54;
    margin-bottom: 25px;
}

.about-us-section p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
    font-weight: 600;
    font-size: 18px;
}

.image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    padding: 12px;
    background: linear-gradient(90deg, #6c757d, #f9773e);
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .image-wrapper img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 15px;
    }

    .image-wrapper::before,
    .image-wrapper::after {
        content: '';
        position: absolute;
        width: 60px;
        height: 60px;
        border-color: #f9773e;
        border-style: solid;
    }

    .image-wrapper::before {
        top: -25px;
        left: -25px;
        border-width: 4px 0 0 4px;
        border-top-left-radius: 20px;
    }

    .image-wrapper::after {
        bottom: -25px;
        right: -25px;
        border-width: 0 4px 4px 0;
        border-bottom-right-radius: 20px;
    }


.info-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: none;
    height: 100%;
}


.card-title-custom {
    display: flex;
    align-items: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1434a4;
    margin-bottom: 20px;
}

    .card-title-custom i {
        font-size: 1.6rem;
        margin-right: 12px;
        vertical-align: middle;
    }


.info-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    font-weight: 600;
}

.core-values-section {
    padding: 80px 0;
}

.section-main-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1434a4;
    margin-bottom: 50px;
}

.value-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    border: 1px solid #e9ecef;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.icon-red {
    color: #dc3545;
}

.icon-yellow {
    color: #ffc107;
}

.icon-green {
    color: #198754;
}

.icon-cyan {
    color: #0dcaf0;
}

.icon-blue {
    color: #0d6efd;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1434a4;
    margin-bottom: 15px;
}

.value-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d2c54;
    margin-bottom: 50px;
}

.objectives-list {
    list-style-type: none;
    padding-left: 0;
    max-width: 900px;
    margin: 0 auto;
}

    .objectives-list li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 24px;
    }

    .objectives-list .objective-icon {
        font-size: 1.5rem;
        color: #198754;
        margin-right: 16px;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .objectives-list .objective-text {
        font-size: 1.1rem;
        color: #555;
        line-height: 1.8;
        font-weight: 600;
    }

.our-story-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1434a4;
    margin-bottom: 30px;
}

.image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    padding: 16px;
    background: linear-gradient(135deg, #f9773e, #6c757d);
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

    .image-wrapper img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 15px;
    }

    .image-wrapper::before,
    .image-wrapper::after {
        content: '';
        position: absolute;
        width: 60px;
        height: 60px;
        border-color: #f9773e;
        border-style: solid;
        z-index: -1;
    }

    .image-wrapper::before {
        top: -25px;
        left: -25px;
        border-width: 4px 0 0 4px;
        border-top-left-radius: 20px;
    }

    .image-wrapper::after {
        bottom: -25px;
        right: -25px;
        border-width: 0 4px 4px 0;
        border-bottom-right-radius: 20px;
    }

.story-text p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 18px;
}

.story-quote {
    font-style: italic;
    font-weight: 500;
    color: #343a40;
    border-left: 3px solid #f9773e;
    padding-left: 20px;
}



.cta-section {
    text-align: center;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1434a4;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}



.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.5s ease;
}

    .loader-overlay.hidden {
        opacity: 0;
        visibility: hidden;
    }

.loader-content {
    text-align: center;
    height: 100vh;
    display: flex;
    align-items: center;
}

.loader-spinner {
    border: 8px solid rgba(0, 0, 0, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border-left-color: #0d6efd;
    animation: spin 1s ease infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hidden {
    display: none !important;
}

input[type="password"]::-ms-reveal {
    display: none;
}

.form-control.is-invalid, .was-validated .form-control:invalid {
    background-image: none;
}

/* ================  New css ================== */

@media (max-width:1399px) {
    .navbar {
        width: 90%;
        margin-left: 10%;
    }

    .navbar-brand {
        margin-left: -8%;
    }
}

.block {
    padding: 40px 20px;
}

h1 {
    font-size: 28px;
    color: #003366;
    margin: 0 0 12px;
}

h2 {
    font-size: 22px;
    color: #003366;
    margin: 0 0 10px;
}

h3 {
    font-size: 18px;
    color: #003366;
    margin: 10px 0;
    font-weight: bold;
}

p, li {
    font-size: 14px;
    margin: 4px 0;
}

button.join-now {
    background: linear-gradient(90deg, #0047AB, #1E90FF);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 14px;
    padding: 14px 24px;
    margin: 2rem 0 1rem 0;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(0, 71, 171, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

    button.join-now::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 50px;
        height: 100%;
        background-color: #fff;
        z-index: 10;
        transform: translateX(-100%) skewX(-30deg);
        transform-origin: left;
        animation: slide30pxBar 0.8s ease-out forwards;
    }

#sectionBg8JoinBtn {
    margin-top: 1rem;
}

button.join-now:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 71, 171, 0.45);
}

.section-bg1 {
    background: linear-gradient(to bottom, #A0F0D1, #B0E5FF);
    text-align: center;
    color: #003366;
}

.section-bg2 {
    background: linear-gradient(to bottom, #FFFFFF, #F5F9FF);
}

.section-bg3 {
    background: linear-gradient(to bottom, #E6F7FF, #D0E8FF);
    color: #003366;
}

.section-bg5 {
    background: linear-gradient(to bottom, #FFFFFF, #F9FFFB);
}

ul {
    list-style: none;
    padding-left: 0;
}

.expandable {
    display: none;
}

.expand-btn {
    background: #003366;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    padding: 8px 16px;
    margin: 12px 0;
    display: block;
    width: 100%;
    max-width: 300px;
}

.video-thumb {
    width: 100%;
    max-width: 400px;
    /*  height: 220px;*/
    background-color: #ddd;
    border-radius: 14px;
    margin: 16px auto;
    position: relative;
    margin-bottom: 20%;
    height: auto !important;
}

    .video-thumb span {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        font-size: 40px;
        color: #FFB400;
    }

.intelligence-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 16px;
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(90deg, #003366, #0047AB, rgba(255,255,255,0.15));
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    color: #fff;
    z-index: 9999;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

    .top-bar .logo {
        font-weight: bold;
        font-size: 20px;
    }

    .top-bar .login {
        background: #fff;
        color: #0047AB;
        padding: 8px 16px;
        border-radius: 12px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .top-bar .login:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

    .top-bar .hamburger {
        width: 25px;
        height: 3px;
        background: #003366;
        position: relative;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-right: 10px;
    }

        .top-bar .hamburger::before, .top-bar .hamburger::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 3px;
            background: #003366;
            left: 0;
            transition: all 0.3s ease;
        }

        .top-bar .hamburger::before {
            top: -8px;
        }

        .top-bar .hamburger::after {
            top: 8px;
        }

        .top-bar .hamburger.active {
            background: transparent;
        }

            .top-bar .hamburger.active::before {
                transform: rotate(45deg) translate(5px,5px);
            }

            .top-bar .hamburger.active::after {
                transform: rotate(-45deg) translate(5px,-5px);
            }

.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 0;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    z-index: 9999;
    background: linear-gradient(90deg, #000000, #0047AB);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.link_bottomBar{
    text-decoration: none;
    color: #fff !important;
}

.bottom-bar:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0,71,171,0.5);
}

.join_button {
    display: flex;
    justify-content: center;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-box {
    width: 50px;
    height: 50px;
    background: #FFB400;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
    transition: border 0.4s ease, transform 0.3s ease;
    border: 2px solid transparent;
}

.step-gray {
    background: #D0D0D0;
    color: #000;
}

.step-box:hover {
    border: 2px solid #fff;
    transform: scale(1.1);
}

.step-box.in-view {
    border: 2px solid #fff;
    transform: scale(1.1);
}

.section-bg4 {
    background: linear-gradient(to bottom, #FFF8E5, #FFFDEB);
}

.intelligence-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 16px;
}

    .intelligence-grid > div {
        width: calc(50% - 8px);
        max-width: 400px !important;
    }

.section-bg8 {
    background: linear-gradient(to bottom, #E6F7FF, #F0FAFF);
}

#programWorks {
    padding-top: 40px;
}

.section-bg10 {
    background: linear-gradient(to bottom, #FFFDE5, #FFFFFF);
    text-align: center;
    color: #003366;
}

#section6ContainerJoinBtn {
    margin-top: 0rem;
}

.lligence_years {
    margin-top: 5.5rem;
}

.about_section {
    background-color: #fff;
    margin-bottom: -2%;
}

.child_program {
    width: 100%;
    max-width: 400px;
    height: 200px;
    background-color: #ddd;
    border-radius: 14px;
    margin: 16px auto;
    position: relative;
}

.play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 36px;
    color: #FFB400;
}

.header_text {
    font-size: 22px;
    color: #003366;
    margin: 0 0 10px;
    font-weight: bold;
}

.what_will_child {
    margin-top: 16px;
    font-size: 18px;
    color: #003366;
    margin: 10px 0;
    font-weight: bold;
}

.list_menu {
    list-style: none;
    padding-left: 0;
    font-size: 14px;
    margin: 8px 0;
    line-height: 1.6;
}

.expers_guidance {
    display: none;
    margin-top: 8px;
}

.steps-container {
    position: relative;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section6-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 16px 0;
}

.section6-box {
    background: linear-gradient(135deg, #FFE6F0, #FFFFFF);
    border-radius: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px 0px;
}

.header_section6 {
    margin: 0 0 6px;
    font-size: 16px;
}

.section6-content {
    display: block;
}

.section7-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 16px 0;
}

.creator-box {
    background: linear-gradient(135deg, #F0F8FF, #FFFFFF);
    border-radius: 16px;
    padding: 20px;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

    .creator-box:hover {
        transform: scale(1.03);
    }

.form-control::placeholder {
    color: #6c757d78 !important;
}

@media (max-width: 1199px) {
    .nav-link {
        font-size: 14px;
    }

    .btn-login {
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .hero-section {
        padding-top: 0;
        padding-bottom: 0;
        height: calc(100vh - 70px);
        display: flex;
        align-items: center;
    }

    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
        margin-top: 0;
    }

    .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown:hover > .nav-link {
        background-color: transparent;
        color: #ffffff;
        transform: translateY(-2px);
    }

    .navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: block;
    }
}

@media (max-width: 991.98px) {
    .our-story-section .row {
        flex-direction: column-reverse;
    }

    .navbar {
        height: 52px;
    }

    .navbar-brand img {
        width: 100px;
        margin-top: 0 !important;
    }

    header {
        height: 52px;
    }

    .lligence_years {
        margin-top: 4.7rem;
    }

    .text-content {
        padding-left: 0;
        text-align: center;
        margin-bottom: 2rem;
    }

    #limitedPeriodJoinBtn {
        margin: 1rem 0 0rem 0;
    }

    #programWorks {
        padding-top: 10px;
    }

    #section6ContainerJoinBtn {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    #limitedPeriodJoinBtn {
        margin: 1rem 0 0rem 0;
    }

    #programWorks {
        padding-top: 10px;
    }

    #section6ContainerJoinBtn {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }


    h1.fw-bold.scientific {
        display: block;
        font-size: 2.5rem;
        font-weight: 700;
        color: #1434a4;
        line-height: 1.2;
        margin-top: 2rem !important;
        margin-bottom: 2rem;
        text-align: center;
    }

    .underLineDiv {
        margin-top: -1rem;
    }

    .logoDiv {
        margin-top: 0rem;
    }

    .hero-section {
        padding-bottom: 0rem;
    }

    .btn-activate {
        margin-top: 0px;
        margin-bottom: 4%;
    }

    section.work_section {
        margin-bottom: 10%;
    }

    h1.fw-bold.headerText.scientificExplanationBoxHeader.scientifi {
        display: none;
    }

    .features-list li {
        justify-content: center;
    }

    .hero-title:first-child {
        font-size: 5vw;
    }

    .hero-title {
        font-size: 4.5vw;
        text-align: left;
    }

    .video-container {
        margin-bottom: 1rem;
    }

    .nav-link {
        font-size: 16px;
        text-align: justify;
        color: #1434a4 !important;
    }

    .btn-login {
        font-size: 14px;
        border: 1px solid #fff !important;
        position: relative;
        right: 0%;
        top: -20px !important;
        border-radius: 8px !important;
        padding: 5px 20px;
    }

    .navbar-nav {
        display: inline-block !important;
        padding: 0 0.75rem;
        padding-top: 0.5rem;
    }

    .navbar {
        padding-bottom: 0;
    }

    .dropdown-menu {
        box-shadow: none !important;
        border-radius: 10px !important;
        text-align: left !important;
    }

    .modal-logo-side {
        padding: 1.5rem;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .modal-logo-img {
        max-width: 200px;
    }

    .modal-form-side {
        padding: 2rem 1.5rem;
    }

    .nav-link:focus,
    .nav-link:hover {
        color: #1434a4 !important;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: transparent !important;
        color: #1434a4 !important;
        border-color: #1434a4;
        width: fit-content;
    }

    .navbar-collapse {
        background-color: #f8f9fa;
    }

    .dropdown-menu {
        text-align: center;
        background-color: #f8f9fa;
    }

    .navbar-toggler {
        width: 45px;
        margin-top: -27%;
    }

    #nav-containerBox {
        max-width: 100%;
        padding: 0;
        height: 52px;
        align-items: baseline;
    }

    .navbar-brand {
        padding-left: 0.75rem;
        padding-bottom: 8px;
    }

    .d-flex.align-items-center.d-lg-none {
        padding-right: 0.75rem;
        gap: 30px;
    }

    .navbar-nav .dropdown-menu {
        margin: 0;
        padding: 0;
    }

    .dropdown-item {
        color: #1434a4;
        font-weight: 600;
    }

    .checkmark-list-mobile {
        margin-top: -20px;
    }

    .scientificExplanationBox h3 {
        padding: 0;
    }

    .scientificExplanationBox .description {
        padding: 0;
    }

    .scientificExplanationBox .col-md-6 {
        margin-top: 2rem;
    }

    .lastChildMargin {
        margin-top: 2rem;
    }

    #orderContent {
        flex-direction: column-reverse;
    }

    .desktopView {
        display: none;
    }

    .mobileView {
        display: block;
    }

    .hero-section {
        padding-top: 4rem;
    }

    .play-btn-overlay i {
        font-size: 1.5rem;
    }

    .play-btn-overlay {
        width: 60px;
        height: 60px;
    }

    #willGet {
        padding-top: 4rem;
    }

    #containerDiv {
        padding-top: 0rem;
    }

    .scientificExplanationBox {
        margin-top: 0;
    }



    .about-us-section {
        text-align: center;
    }

    .image-container {
        margin-top: 40px;
    }

    .info-card {
        margin-bottom: 24px;
    }

    .image-container {
        margin-top: 40px;
    }

    .story-text {
        text-align: center;
    }

    .story-quote {
        text-align: left;
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 767.98px) {
    .cta-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-tagline {
        font-size: 16px;
    }

    .video-container video {
        object-fit: contain;
    }

    #secondVideo {
        margin-top: 3rem;
    }

    .headerText {
        font-size: 1.7rem;
        padding-top: 2rem;
    }

    h1.fw-bold.scientific {
        font-size: 1.7rem;
    }

    .lineMargin {
        margin-top: 2rem;
    }

    .secondHeader {
        margin-top: 0rem;
        margin-bottom: 2rem;
    }

    .underLineDiv {
        width: 100%;
    }

    .logoDiv {
        margin-top: -1rem;
        padding-top: 2rem;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .scientificExplanationBox h3 {
        font-size: 1.3rem;
    }

    .accordion-header .accordion-button {
        font-size: 1.3rem;
    }

    .accordion-body {
        font-size: 16px;
        padding-top: 0;
    }

    .hero-title:first-child {
        font-size: 6vw;
    }

    .hero-title {
        font-size: 5vw;
    }

    .underLineDiv {
        margin-bottom: 1rem;
        opacity: 0.25;
    }

    p.description.babytext {
        font-size: 12px;
        margin-top: -20px;
        font-weight: 600;
    }

    #footerFirstHeader {
        font-size: 18px;
        margin-bottom: 1.5rem;
    }

    .video-thumb {
        margin-bottom: 9%;
        max-width: initial;
    }


    button.agreeBtn {
        width: 100%;
        padding: 10px 0;
        margin-top: 0;
    }


    .loginPageDiv .mt5 {
        margin-top: 3rem;
        margin-bottom: 1rem;
    }

    .loginPageDiv {
        height: calc(100vh - 130px);
        padding: 0 1rem;
    }

        .loginPageDiv p {
            font-size: 16px;
        }

    .privacyNoticeHeader {
        font-size: 22px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .objectives-list .objective-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .image-wrapper::before,
    .image-wrapper::after {
        width: 40px;
        height: 40px;
    }

    .image-wrapper::before {
        top: -15px;
        left: -15px;
    }

    .image-wrapper::after {
        bottom: -15px;
        right: -15px;
    }


    .cta-text {
        font-size: 1rem;
    }

    .navbar {
        width: 85%;
        margin-left: 15%;
    }

    .navbar-brand {
        margin-left: -12%;
    }
}

@media (max-width: 576px) {

    .d-flex.align-items-center.d-lg-none {
        gap: 20px;
    }

    .block.section-bg10 {
        padding-bottom: 65px !important;
    }

    .sticky-cta-bar {
        gap: 0.5rem;
    }

    .image-wrapper {
        margin: 0 10%;
    }

    .cta-text {
        font-size: 0.9rem;
        margin-bottom: 0 !important;
    }

    .cta-button {
        font-size: 14px;
        padding: 10px 18px;
        font-weight: 500;
    }

    .cta-text {
        margin: 0 !important;
    }

    .sticky-cta-bar {
        width: 100%;
        display: flex;
        justify-content: space-around;
        background: rgba(255, 255, 255, 0.6) !important;
        backdrop-filter: blur(10px);
        display: none;
    }

    .text-content {
        margin-bottom: 1rem;
    }

    .headerText {
        font-size: 1.5rem;
    }

    section.will_get_section {
        margin-top: 0 !important;
        padding-bottom: 0;
    }

    body {
        padding-top: 0px;
    }

    .benefit-item {
        margin-bottom: 5px;
    }

    #orderContent {
        margin-top: -1rem;
    }

    .timeline-section {
        margin-bottom: 10px;
    }

    section.work_section {
        margin-bottom: 0%;
    }

    .d-flex.justify-content-center.mt-3 {
        margin-top: -1rem !important;
        margin-bottom: 1rem;
    }

    .lineMargin {
        margin-top: -1rem;
    }

    .headerText {
        margin-top: 0rem !important;
        margin-bottom: 1rem !important;
        padding-top: 0.5rem !important;
    }

    .navbar-brand {
        margin-left: -16%;
    }
}

@media (max-width: 575px) {
    header {
        margin-bottom: 12% !important;
    }

    .block.section-bg1 h1 {
        line-height: 1.5 !important;
    }

    button.join-now {
        margin: 1rem 0 1rem 0;
    }

    .thumbnail-container img {
        height: 180px;
    }

    .block section-bg9 {
        margin-bottom: 0px !important;
    }

    p.raise_confident {
        margin: 0 10px;
    }

    button#expand-btn {
        display: 'flex';
        justify-content: center;
        align-content: center;
        margin: 0 auto;
    }

    .activation_crucial {
        padding: 20px 0px !important;
    }

    .activation_crucial {
        padding: 20px 20px;
    }

    .video-thumb {
        margin-bottom: 0px !important;
        width: 100%;
        max-width: 350px;
    }

    .section6-container {
        margin-bottom: -16px;
    }

    .intelligence-grid > div {
        width: 100% !important;
        max-width: 330px !important;
    }

    .logoDiv img {
        width: 9rem;
        margin-bottom: -15px;
    }

    .underLineDiv {
        margin-bottom: 0rem;
    }

    .hero-tagline {
        font-size: 14px !important;
    }

        .hero-tagline span {
            font-size: 14px !important;
        }

    .logoDiv a {
        font-size: 12px;
        text-decoration: underline;
        font-weight: 500;
    }

    .logoDiv p {
        font-size: 11px;
    }

    p.description {
        font-size: 14px !important;
        margin-bottom: 5px !important;
    }

    .text-content {
        text-align: left;
    }

    .accordion-body {
        margin-bottom: 5px !important;
        font-size: 14px !important;
    }

    .navbar {
        padding-top: 0;
    }

    .btn-login {
        font-size: 14px;
        font-weight: 500;
    }

    .btn-login {
        padding: 5px 20px;
    }

    #willGet {
        padding-top: 0rem;
    }

    .logoDiv {
        padding-bottom: 4rem;
    }

    .secondHeader {
        margin-bottom: 1rem !important;
    }

    h1.fw-bold.scientific {
        margin-top: 0rem !important;
        margin-bottom: 1rem;
    }

    .scientificExplanationBox .col-md-6 {
        margin-top: 1rem !important;
    }

    p.description.babytext {
        font-size: 9px !important;
    }

    #card_card {
        border: none !important;
        background: transparent !important;
    }

    #footerFirstHeader {
        font-size: 19px;
        margin-top: -7%;
        margin-bottom: 0.5rem;
    }

    .lastChildMargin {
        margin-top: 0rem;
    }

    .privacy_and_terms .terms_service {
        margin: 0 15px;
    }

    .scientificExplanationBox .col-md-6 {
        background-color: #fef6d7;
        padding: 1rem;
    }

    .scientificExplanationBox .col-md-12 {
        background-color: #fef6d7;
        padding: 1rem;
    }

    .timeline-section:last-child {
        margin-bottom: 15px;
    }

    #intelligence .col-lg-4.col-md-6.col-sm-12.mb-4 {
        margin-bottom: 2rem !important;
    }

    .hero-title:first-child {
        font-size: 8vw;
    }

    .hero-title {
        font-size: 6.7vw;
    }

    .text-content {
        margin-bottom: 2rem;
    }

    .btn-activate {
        margin-bottom: 0rem;
    }

    img.card-img-top {
        height: auto !important;
        width: 100%;
    }
}

@media (max-width: 420px) {
    .block {
        padding: 20px 12px;
    }

    .video-thumb span {
        font-size: 32px;
    }

    .confident_raise {
        margin: 4px 25px;
    }

    #section6ContainerJoinBtn {
        margin-top: -1rem;
    }

    .abouts {
        padding-top: 6px;
    }


    .section6-container {
        margin: 26px 0px;
    }

    .top-bar {
        height: 50px;
        padding: 0 12px;
    }

        .top-bar .login {
            padding: 6px 12px;
            font-size: 14px;
        }

    .bottom-bar {
        font-size: 16px;
        padding: 12px 0;
    }

    .navbar {
        width: 90%;
        margin-left: 10%;
    }
}

@media (max-width: 380px) {
    .navbar-brand {
        margin-left: -19%;
    }
}

@media (max-width: 333px) {

    .navbar {
        width: 93%;
        margin-left: 7%;
    }
}

section.section6-container.block {
    padding-top: 0;
    padding-bottom: 0;
}
