*,
html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
    position: relative;
    font-family: 'Roboto', sans-serif;
    transition: all .3s ease;
}

:root {
    --primary-color: #3498db;
    --secondary-color: #2b8bd9e0;
    --accent-color: #114672e0;
    --light-color: #f8f9fa;
    --dark-color: #666;
    --success-color: #38b6ff;
    --font-size-xs: 0.75rem;
    --font-size-s: 0.875rem;
    --font-size-m: 1rem;
    --font-size-l: 1.125rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 2rem;
    --font-weight-r: 400;
    --font-weight-sb: 600;
    --font-weight-b: 700;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-circle: 50%;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

/* nav bar section */
.nav_container {
    width: 100%;
    position: relative;
    padding: 18px 10px;
    background-color: #38b6ff;
    transition: all 0.3s ease-in-out;
    
    &.sticky {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transform: translateY(0);
        
        & > nav {
            display: flex;
            align-items: center;
            
            & > .logo_container {
                padding: 0;
                
                & > a {
                    display: flex;
                    align-items: center;
                    
                    & > img {
                        height: 35px;
                    }
                }
            }
            
            & > .nav_block {
                & > .nav-links {
                    & > ul > li, 
                    & > ul > li > a {
                        &::after {
                            bottom: -2.5px !important;
                        }
                    }
                }
            }
        }
    }
    
    &.scrolled:not(.sticky) {
        transform: translateY(-100%);
    }
    
    &.white_bg_nav_container {
        background-color: #ffffff;
    }
    
    & > nav {
        width: 90%;
        max-width: 1200px;
        position: relative;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        
        & > .logo_container {
            height: fit-content;
            width: fit-content;
            position: relative;
            padding: 8px 0;
            
            & > a {
                text-decoration: none; 
                display: flex;
                align-items: center;
                justify-content: center;
                
                & > img {
                    height: 45px;
                    position: relative;
                    object-fit: contain;
                }
            }
        }
        /* Menu Toggle */
        & > .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 10px;
            cursor: pointer;
            height: fit-content;
            width: fit-content;
            justify-self: center;
            align-self: center;
            &.open .menu-li:nth-child(1) {
                transform-origin: bottom;
                transform: rotateZ(45deg) translate(8px, 0px);
                width: 30px;
            }

            &.open .menu-li:nth-child(2) {
                transform-origin: top;
                transform: rotateZ(-45deg);
            }

            &.open .menu-li:nth-child(3) {
                display: none;
            }
            & > .menu-li {
                width: 20px;
                height: 3px;
                margin: 7px 0;
                background-color: #ededed;
                transition: all 0.3s ease-in-out;
                &:nth-last-of-type(2) {
                    width: 40px;
                }
                &:nth-last-of-type(1) {
                    width: 30px;
                }
                &.menu_li_white {
                    background-color: #1a1a1a;
                }
            }
        }
        & > .nav_block {
            width: 65%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            & > .nav-links {
                & > ul {
                    display: flex;
                    padding: 0;
                    margin: 0;
                    list-style-type: none;
                }
                & > ul > li,
                & > ul > li > a {
                    display: inline-block;
                    font-family: 'Roboto', sans-serif;
                    margin: 0 10px;
                    font-size: 1.2em;
                    text-decoration: none;
                    color: #fff;
                    font-weight: 300;
                    align-self: center;
                    justify-self: center;
                    transition: all .3s ease-in-out;
                    &.bg-wt {
                        color: #1b1b1b;
                    }
                    &::after {
                        content: '';
                        position: absolute;
                        bottom: -5px;
                        left: 50%;
                        transform: translateX(-50%);
                        width: 0;
                        height: 3px;
                        visibility: hidden;
                        opacity: 0;
                        background-color: #2d3748;
                        transition: all .3s ease-in-out;
                    }
                }
                & > ul > li > a.active {
                    /* padding: 10px 25px;
                    background-color: #ffffff;
                    color: #000000;
                    border-radius: 50px;
                    &.bg-wt.active {
                        color: #ffffff;
                        background-color: #38b6ff;
                    }
                    &:hover {
                        color: #000000;
                    } */
                    &::after {
                        visibility: visible;
                        opacity: 1;
                        width: 50%;
                    }
                }
                & > ul > li > a:hover {
                    color: #ebebeb;
                    &.bg-wt {
                        color: #202020;
                    }
                    &::after {
                        visibility: visible;
                        opacity: .7;
                        width: 50%;
                    }
                }
            }
            /* handle the name to the right if logged in */
            & > .user-info {
                display: flex;
                align-items: center;
                justify-content: flex-end;
                font-family: 'Roboto', sans-serif;
                
                & > .user-dropdown {
                    position: relative;
                    padding: 10px 20px;
                    border-radius: 20px;
                    background-color: #2d3748;
                    color: #e2e2e2;
                    font-weight: 400;
                    font-size: 0.95rem;
                    font-family: 'Roboto', sans-serif;
                    cursor: pointer;
                    transition: all .3s ease-in-out;

                    &.bg-wt {
                        background-color: var(--darkBlue-color);
                        color: #e2e2e2;
                    }

                    &:hover {
                        background-color: #1f2937;
                    }

                    .user-name {
                        display: inline-block;
                        
                        & > i {
                            font-size: 0.8em;
                            margin-left: 5px;
                        }
                    }

                    .dropdown-menu {
                        display: none;
                        position: absolute;
                        top: 100%;
                        right: 0;
                        margin-top: 8px;
                        background-color: #2d3748;
                        border-radius: 6px;
                        min-width: 140px;
                        z-index: 1000;
                        overflow: hidden;
                        padding: 0;
                        box-shadow: var(--shadow-md);

                        &.white-bg {
                            background-color: #f7f7f7;
                        }

                        li {
                            list-style: none;

                            a,
                            button {
                                display: block;
                                width: 100%;
                                padding: 10px 16px;
                                color: #e2e2e2;
                                background: none;
                                border: none;
                                text-align: left;
                                font-size: 0.9rem;
                                font-family: 'Roboto', sans-serif;
                                cursor: pointer;
                                text-decoration: none;
                                transition: background 0.3s;

                                &:hover {
                                    background-color: rgba(255, 255, 255, 0.1);
                                }
                            }

                            .white-bg & a,
                            .white-bg & button {
                                color: #1a1a1a;

                                &:hover {
                                    background-color: #f5f5f5;
                                }
                            }
                        }
                    }

                    &.open {
                        .dropdown-menu {
                            display: block;
                        }
                    }
                }
            }
        }
    }
}

/* Responsive navbar */
@media screen and (max-width: 1024px) {
    .nav_container > nav {
        width: 95%;
    }
}

@media screen and (max-width: 768px) {
    .nav_container > nav > .nav_block {
        width: 100%;
    }
}

/* Task assistance Modal */
.assistanceTP_form_modal {
    display: none;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.4);
    overflow: auto;
    backdrop-filter: blur(8px);
    transition: backdrop-filter 0.3s ease;
    & > .task_modal-content {
        width: 50%;
        margin: 35px auto;
        background-color: #fefefe;
        padding: 30px;
        border-radius: 15px;
        position: relative;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        & > .close {
            color: #aaa;
            font-size: 28px;
            font-weight: bold;
            position: absolute;
            top: 10px;
            right: 25px;
            cursor: pointer;
            z-index: 2;

            &:hover,
            &:focus {
                color: #000;
                text-decoration: none;
                cursor: pointer;
            }
        }
        /* style for task assistance AND personal guide*/
        & > .assistance_content {
            & > .assistance {
                & > .container {
                    display: flex;
                    flex: 1;
                    flex-direction: column;
                    margin: 0 auto;
                    & > .section-header {
                        margin-bottom: 30px;
                        width: 100%;
                        & > .title {
                            & > h1 {
                                color: var(--darkBlue-color);
                                font-size: 1.8em;
                                margin-bottom: 8px;
                                font-weight: 600;
                            }
                            
                            & > .subtitle {
                            font-size: 1em;
                            color: #666;
                            }
                        }
                    }
                    .form-section {
                    margin-bottom: 30px;
                    padding-bottom: 20px;
                    &:last-of-type {
                        border-bottom: none;
                    }
                    }
                    .form-section-title {
                    color: var(--lightWhite-color);
                    background-color: var(--darkBlue-color);
                    font-size: 1.2em;
                    margin-bottom: 20px;
                    padding: 8px 20px;
                    width: 50%;
                    display: inline-block;
                    }
                    .form-row {
                    display: flex;
                    gap: 20px;
                        
                    @media (max-width: 768px) {
                        flex-direction: column;
                        gap: 0;
                    }
                    }
                    
                    .form-group {
                    margin-bottom: 20px;
                    width: 100%;
                    padding: 10px;
                    border-radius: 5px;
                    background-color: #38b6ff0f;
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    &.fm-g-rw {
                        display: block;
                        & > label {
                        margin: 8px 0;
                        }
                    }
                    &.half-width {
                        width: calc(50% - 10px);
                        @media (max-width: 768px) {
                        width: 100%;
                        }
                    }
                    
                    label {
                        margin: 0;
                        display: flex;
                        align-items: center;
                        font-weight: 400;
                        color: #062644;
                        white-space: nowrap;
                    }
                    
                    input[type="text"],
                    input[type="email"],
                    textarea {
                        flex: 1;
                        border: none;
                        border-bottom: 2px solid #0626448a;
                        border-radius: 0;
                        font-size: 1em;
                        transition: border-color 0.3s;
                        background: transparent;
                    }

                    input[type="text"]:focus,
                    input[type="email"]:focus,
                    textarea:focus {
                        outline: none;
                        border-bottom: 2px solid #38b6ff81;
                        box-shadow: none;
                    }

                    input[type="datetime-local"] {
                        flex: 1;
                        border: none;
                        border-bottom: 2px solid #0626448a;
                        font-size: 1em;
                        background: transparent;
                        padding: 6px 4px;
                        transition: border-color 0.3s;
                        width: 170px;

                        &:focus {
                        outline: none;
                        border-bottom: 2px solid #38b6ff81;
                        box-shadow: none;
                        }
                    }
                    
                    textarea {
                        resize: vertical;
                        width: 270px;
                    }
                    }
                    
                    .checkbox-group {
                    display: flex;
                    flex-direction: column;
                    gap: 12px;
                    }
                    
                    .checkbox-container {
                    display: flex;
                    align-items: center;
                    position: relative;
                    padding-left: 35px;
                    cursor: pointer;
                    font-size: 1em;
                    user-select: none;
                    
                    input {
                        position: absolute;
                        opacity: 0;
                        cursor: pointer;
                        
                        &:checked ~ .checkmark:after {
                        display: flex;
                        }
                    }
                    
                    .checkmark {
                        position: absolute;
                        left: 0;
                        height: 22px;
                        width: 22px;
                        background-color: #38b6ff59;
                        border-radius: 50%;
                        
                        &:after {
                        content: "";
                        display: none;
                        align-items: center;
                        justify-content: center;
                        width: 22px;
                        height: 22px;
                        border-radius: 50%;
                        background-color: #062644;
                        }
                    }
                    
                    &.other-option {
                        display: flex;
                        align-items: center;
                        flex-wrap: wrap;
                        
                        .other-input {
                        margin-left: 10px;
                        flex: 1;
                        min-width: 200px;
                        
                        @media (max-width: 480px) {
                            min-width: 100%;
                            margin-left: 0;
                            margin-top: 8px;
                        }
                        }
                    }
                    }
                    
                    .file-upload-label {
                    display: inline-flex;
                    align-items: center;
                    padding: 10px 15px;
                    background-color: #f8fafc;
                    border: 1px dashed #38b6ff;
                    border-radius: 8px;
                    cursor: pointer;
                    transition: background-color 0.3s;
                    
                    &:hover {
                        background-color: #e6f7ff;
                    }
                    
                    i {
                        margin-right: 8px;
                        color: #38b6ff;
                    }
                    }
                    
                    .file-list {
                    margin-top: 10px;
                    
                    .file-item {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        padding: 8px 12px;
                        background-color: #f8fafc;
                        border-radius: 6px;
                        margin-bottom: 6px;
                        
                        .file-name {
                            flex: 1;
                            margin-right: 10px;
                            font-size: 0.9em;
                        }
                        
                        .remove-file {
                        color: #ff4757;
                        cursor: pointer;
                        font-size: 1.1em;
                        }
                    }
                    }
                    .submit-btn {
                    display: block;
                    width: fit-content;
                    padding: 15px 20px;
                    background-color: #38b6ff;
                    color: white;
                    border: none;
                    border-radius: 50px;
                    font-size: 1.1em;
                    font-weight: 400;
                    cursor: pointer;
                    margin: 0 auto;
                    transition: background-color 0.3s;
                    
                    &:hover {
                        background-color: #114672e0;
                    }
                    }
                    .button-spinner {
                    display: inline-block;
                    width: 16px;
                    height: 16px;
                    border: 2px solid rgba(255, 255, 255, 0.6);
                    border-top-color: #fff;
                    border-radius: 50%;
                    animation: spin 0.6s linear infinite;
                    vertical-align: middle;
                    margin-left: 8px;
                    }

                    @keyframes spin {
                    to { transform: rotate(360deg); }
                    }
                }
            }
        }
    }
}

/* Service assistance modal */
.service-assistance-modal {
    .modal-content {
        background: white;
        padding: 30px;
        border-radius: 10px;
        max-width: 500px;
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
    }

    h2 {
        margin-bottom: 20px;
        color: #333;
        text-align: center;
    }

    .form-group {
        margin-bottom: 20px;
    }

    label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #444;
    }

    input,
    textarea,
    select {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 16px;
        box-sizing: border-box;
    }

    textarea {
        min-height: 100px;
        resize: vertical;
    }

    .submit-btn {
        background-color: #4a6cf7;
        color: white;
        border: none;
        padding: 12px 20px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        width: 100%;
        transition: background-color 0.3s;
        &:hover {
            background-color: #3a5cd8;
        }
    }
}

/* landing home section */
.landing_container {
    /* height: 70vh; */
    width: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
    background-image: url(../images/teams/group_lab.jpeg);
    background-attachment: fixed;
    background-position: bottom;
    & > .main_container {
        background-color: rgba(0, 0, 0, .5);
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        padding: 100px 0;
        & > .slider_container {
            width: 80%;
            margin: 0 auto;
            /* height: 500px; */
            position: relative;
            & > .still_block {
                width: 50%;
                height: 100%; 
                & > .main_block {
                    margin: 0 auto 0 auto;
                    width: 100%;
                    height: 100%;
                    display: flex;
                    overflow-x: scroll;
                    scroll-snap-type: x mandatory;
                    &::-webkit-scrollbar {
                        display: none;
                    }
                    -ms-overflow-style: none;
                    scrollbar-width: none;
                    & > .slider {
                        min-width: 100%;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-direction: column;
                        scroll-snap-align: center;
                        position: relative;
                        & > .header {
                            width: 100%;
                            padding: 0 10px;
                            & > h3 {
                                font-size: 4rem;
                                font-family: 'Roboto', sans-serif;
                                color: #cccccc;
                                display: inline-block;
                                white-space: normal;
                                overflow-wrap: break-word;
                                word-break: normal;
                                & > span {
                                    display: inline-block;
                                    transform: translateY(-100%);
                                    opacity: 0;
                                    animation: ani_header_drop 0.4s forwards;
                                }
                            }
                        }
                        & > .dscpt {
                            width: 100%;
                            padding: 0 10px 20px 10px;
                            & > p {
                                color: #cccccc;
                                font-size: 1.2rem;
                                font-family: 'Roboto', sans-serif;
                                font-weight: 350;
                            }
                        }
                        & > .cta {
                            width: 100%;
                            padding: 0 10px;
                            & > a {
                                text-decoration: none;
                                cursor: pointer;
                                color: #ffffff;
                                font-size: 1.2rem;
                                & > div {
                                    padding: 20px 30px;
                                    background-color: #38b6ff;
                                    width: fit-content;
                                    border-radius: 50px;
                                    transition: all .3s ease-in-out;
                                    &:hover {
                                        background-color: #114672e0;
                                    }
                                }
                            }
                        }                    
                    }
                }
                & > .dot_container {
                    position: relative;
                    display: flex;
                    justify-self: flex-start;
                    align-self: flex-start;
                    gap: 10px;
                    padding: 15px 12px;
                    align-items: center;
                    & > .dot {
                        width: 15px;
                        height: 15px;
                        background-color: #b4b4b4;
                        border-radius: 50%;
                        cursor: pointer;
                        transition: all .4s ease-in-out;
                        &.active {
                            background-color: #ffffff;
                            width: 19px;
                            height: 19px;
                        }
                    }
                }
            }
        }
    }
}

/* for the header */
@keyframes ani_header_drop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Product Plans Section Styling */
.product-plans-section {
    padding: 40px 20px 70px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    position: relative;
    overflow: hidden;
}

.product-plans-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    z-index: 1;
}

.product-plans-section .section-title {
    font-size: 2.5em;
    font-family: 'Roboto', sans-serif;
    color: #062644;
    text-align: center;
    font-weight: 700;
    position: relative;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
    padding-top: 20px;
}

.product-plans-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #38b6ff;
    border-radius: 2px;
    display: block;
}

.product-plans-section .slider-container {
    width: 80%;
    position: relative;
    padding: 18px 50px;
    margin: 0 auto;
    border-radius: 15px;
    background-color: #062644;
}

.product-plans-section .slider-container .slider-wrapper {
    overflow: hidden;
    margin: 0 0 30px;
}

.product-plans-section .slider-container .product-list {
    display: flex;
    padding: 10px 0;
    list-style: none;
    margin: 0;
}

.product-plans-section .products {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 20px 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto;
    margin: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    width: 260px;
}

.product-plans-section .products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-plans-section .products:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-plans-section .products:hover::before {
    transform: scaleX(1);
}

.product-plans-section .products:hover .product-image {
    transform: scale(1.05);
}

.product-plans-section .products.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.product-plans-section .products.active .card-icon {
    background: rgba(255, 255, 255, 0.2);
}

.product-plans-section .products.active h3,
.product-plans-section .products.active p {
    color: white;
}

.product-plans-section .products.active::before {
    background: white;
    transform: scaleX(1);
}

.product-plans-section .products .product-image-container {
    position: relative;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-plans-section .products .product-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--border-radius-circle);
    border: 3px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.product-plans-section .products .subtitle {
    margin-bottom: 10px;
    font-size: var(--font-size-m);
    color: var(--secondary-color);
    font-weight: var(--font-weight-sb);
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    text-align: center;
}

.product-plans-section .products .price-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: var(--font-weight-sb);
    font-size: var(--font-size-xs);
    margin: 0 auto 15px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
    text-align: center;
}

.product-plans-section .products .description {
    font-style: normal;
    line-height: 1.4;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: center;
    color: #555;
    font-size: var(--font-size-s);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-plans-section .products .description p {
    margin-bottom: 8px;
    position: relative;
    padding-left: 0;
    padding-right: 0;
    font-size: var(--font-size-xs);
    text-align: center;
    width: 80%;
}

.product-plans-section .products .description p::before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    margin-right: 8px;
    position: static;
    display: inline-block;
}

.product-plans-section .products .plan-button {
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-plans-section .products .plan-button a,
.product-plans-section .products .plan-button button {
    display: inline-flex;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: var(--font-weight-sb);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: var(--font-size-s);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    width: auto;
    max-width: 160px;
    justify-content: center;
    align-items: center;
}

.product-plans-section .products .plan-button a:hover,
.product-plans-section .products .plan-button button:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.product-plans-section .products .plan-button button:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    box-shadow: none;
}

/* Swiper Navigation */
.product-plans-section .swiper-nav-btns {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
    padding: 0 20px;
}

.product-plans-section .swiper-nav-btn {
    background: none;
    border: none;
    color: #38b6ff;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 4px;
    position: static;
    transform: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    pointer-events: all;
}

.product-plans-section .swiper-nav-btn:hover {
    color: white;
    background: #38b6ff;
    transform: scale(1.1);
}

.product-plans-section .swiper-button-prev {
    left: 0;
    margin-left: -20px;
}

.product-plans-section .swiper-button-next {
    right: 0;
    margin-right: -20px;
}

.product-plans-section .swiper-pagination {
    position: relative;
    margin-top: 18px;
    text-align: center;
}

.product-plans-section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #cbd5e0;
    opacity: 1;
    display: inline-block;
    border-radius: 50%;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.product-plans-section .swiper-pagination-bullet-active {
    background-color: #38b6ff;
    transform: scale(1.2);
}

.product-plans-section .slider-container {
    width: 80%;
    position: relative;
    padding: 18px 50px;
    margin: 0 auto;
    border-radius: 15px;
    background-color: #062644;
}

/* Badge for popular plan */
.product-plans-section .popular-badge {
    position: absolute;
    top: 10px;
    right: -30px;
    background: var(--accent-color);
    color: white;
    padding: 4px 30px;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-sb);
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 2;
}

@media (max-width: 768px) {
    .product-plans-section .swiper-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .product-plans-section .section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .product-plans-section .slider-container {
        width: 90%;
        padding: 15px 30px;
    }

    .product-plans-section .products {
        padding: 18px 12px;
        width: 240px;
    }

    .product-plans-section .products .product-image {
        width: 60px;
        height: 60px;
    }

    .product-plans-section .swiper-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .product-plans-section .swiper-button-prev {
        margin-left: -15px;
    }

    .product-plans-section .swiper-button-next {
        margin-right: -15px;
    }
}

@media (max-width: 480px) {
    .product-plans-section .slider-container {
        width: 95%;
        padding: 10px 15px;
    }

    .product-plans-section .products {
        width: 220px;
        padding: 15px 10px;
    }

    .product-plans-section .products .description p {
        font-size: var(--font-size-xs);
    }

    .product-plans-section .products .plan-button a,
    .product-plans-section .products .plan-button button {
        padding: 8px 16px;
        font-size: var(--font-size-xs);
        max-width: 140px;
    }

    .product-plans-section .swiper-nav-btn {
        display: none;
    }

    .product-plans-section .section-title {
        font-size: 1.8em;
    }
}

/* Service Categories section style */
.services-categories {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;

    & > .services-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 1;

        & > .services-header {
            text-align: center;
            margin-bottom: 30px;

            & > .section-title {
                font-size: 2.5em;
                font-family: 'Roboto', sans-serif;
                color: #062644;
                text-align: center;
                font-weight: 700;
                position: relative;
                letter-spacing: -0.5px;
                margin-bottom: 40px;
                padding-top: 20px;
                
                &::after {
                    content: '';
                    position: absolute;
                    bottom: -15px;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 100px;
                    height: 4px;
                    background-color: #38b6ff;
                    border-radius: 2px;
                    display: block;
                }
            }

            & > .services-subtitle {
                font-size: 0.95rem;
                color: var(--text-secondary);
                line-height: 1.5;
                max-width: 700px;
                margin: 0 auto;
            }
        }

        & > .services-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 25px;
            align-items: start;

            .service-cards {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;

                .service-card {
                    background: var(--card-bg);
                    border-radius: var(--border-radius);
                    padding: 18px 12px;
                    text-align: center;
                    box-shadow: var(--shadow-sm);
                    transition: var(--transition);
                    cursor: pointer;
                    position: relative;
                    overflow: hidden;
                    border: 1px solid rgba(56, 182, 255, 0.1);

                    &::before {
                        content: "";
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 2px;
                        background: var(--primary-color);
                        transform: scaleX(0);
                        transition: var(--transition);
                    }

                    &:hover {
                        transform: translateY(-2px);
                        box-shadow: var(--shadow-md);

                        &::before {
                            transform: scaleX(1);
                        }
                    }

                    &.active {
                        background: linear-gradient(135deg, var(--primary-color) 0%, #2a8fd6 100%);
                        color: white;
                        box-shadow: var(--shadow-lg);

                        &::before {
                            background: white;
                            transform: scaleX(1);
                        }

                        .card-icon {
                            background: rgba(255, 255, 255, 0.2);
                        }

                        h3,
                        p {
                            color: white;
                        }
                    }

                    .card-icon {
                        font-size: 1.5rem;
                        margin-bottom: 10px;
                        background: rgba(56, 182, 255, 0.1);
                        width: 45px;
                        height: 45px;
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        margin: 0 auto 10px;
                        transition: var(--transition);
                    }

                    h3 {
                        font-size: 0.9rem;
                        margin-bottom: 5px;
                        color: var(--text-primary);
                        font-weight: 600;
                        line-height: 1.3;
                    }

                    p {
                        font-size: 0.78rem;
                        color: var(--text-secondary);
                        line-height: 1.3;
                        margin: 0;
                    }

                    &.mobile-active {
                        border-radius: var(--border-radius) var(--border-radius) 0 0;
                        margin-bottom: 0;
                    }
                }
            }

            .services-details {
                background: var(--card-bg);
                border-radius: var(--border-radius);
                padding: 22px;
                box-shadow: var(--shadow-md);
                height: fit-content;
                position: sticky;
                top: 15px;
                border: 1px solid rgba(56, 182, 255, 0.1);

                .details-header {
                    display: flex;
                    align-items: flex-start;
                    margin-bottom: 18px;

                    .details-icon {
                        font-size: 1.7rem;
                        margin-right: 12px;
                        background: rgba(56, 182, 255, 0.1);
                        width: 45px;
                        height: 45px;
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        flex-shrink: 0;
                    }

                    h3 {
                        font-size: 1.2rem;
                        color: var(--secondary-color);
                        font-weight: 700;
                        line-height: 1.3;
                        margin: 0;
                    }
                }

                .details-text {
                    p {
                        font-size: 0.85rem;
                        line-height: 1.5;
                        color: var(--text-secondary);
                        margin-bottom: 10px;
                    }

                    .highlight {
                        color: var(--primary-color);
                        font-weight: 600;
                        font-size: 0.9rem;
                    }
                }
            }
        }

        /* Mobile accordion details */
        .mobile-service-details {
            display: none;
            background: var(--card-bg);
            border-radius: 0 0 var(--border-radius) var(--border-radius);
            padding: 18px;
            margin-top: -4px;
            margin-bottom: 12px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(56, 182, 255, 0.1);
            border-top: none;
        }
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        & > .services-container {
            & > .services-content {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }
    }

    @media (max-width: 768px) {
        padding: 35px 0;

        & > .services-container {
            & > .services-header {
                margin-bottom: 25px;

                & > .services-title { font-size: 1.5rem; }
                & > .services-subtitle { font-size: 0.9rem; }
            }

            & > .services-content {
                grid-template-columns: 1fr;
                gap: 18px;

                .services-details { display: none; }
                .mobile-service-details { display: block; }

                .service-cards {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 10px;

                    .service-card {
                        padding: 16px 10px;

                        .card-icon {
                            width: 40px;
                            height: 40px;
                            font-size: 1.4rem;
                        }

                        h3 { font-size: 0.85rem; }
                        p { font-size: 0.75rem; }
                    }
                }
            }
        }
    }

    @media (max-width: 480px) {
        padding: 30px 0;

        & > .services-container {
            & > .services-header {
                margin-bottom: 20px;

                & > .services-title { font-size: 1.3rem; }
                & > .services-subtitle { font-size: 0.85rem; }
            }

            & > .services-content {
                .service-cards {
                    grid-template-columns: 1fr;

                    .service-card {
                        display: flex;
                        align-items: center;
                        text-align: left;
                        padding: 14px;

                        .card-icon {
                            margin-bottom: 0;
                            margin-right: 12px;
                            flex-shrink: 0;
                            width: 38px;
                            height: 38px;
                            font-size: 1.3rem;
                        }

                        .card-content {
                            flex-grow: 1;
                        }
                    }
                }

                .mobile-service-details {
                    padding: 14px;

                    .details-header {
                        h3 { font-size: 1rem; }

                        .details-icon {
                            width: 38px;
                            height: 38px;
                            font-size: 1.3rem;
                        }
                    }

                    .details-text p { font-size: 0.8rem; }
                }
            }
        }
    }

    /* Animation for active state */
    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(56, 182, 255, 0.4); }
        70% { box-shadow: 0 0 0 6px rgba(56, 182, 255, 0); }
        100% { box-shadow: 0 0 0 0 rgba(56, 182, 255, 0); }
    }

    .service-card.active {
        animation: pulse 1.5s infinite;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-6px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .mobile-service-details {
        animation: fadeIn 0.3s ease-out;
    }
}

/* brief about */
.about_summ {
    background-color: #f4f4f4;
    width: 100%;
    position: relative;
    padding: 30px;
    & > .main_container {
        width: 80%;
        display: flex;
        flex-wrap: wrap;
        justify-self: center;
        align-self: center;
        position: relative;
        & > .block {
            height: 350px;
            flex: 1 1 45%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 25px 0;
        }
        & > .image_block {
            position: relative;
            & > img {
                height: 320px;
                width: 450px;
                object-fit: cover;
                position: relative;
                border-radius: 40px;
                transition: transform 0.3s ease-in-out;
                &:hover {
                    transform: scale(1.04); 
                }
            }
            
        }
        & > .about_brief {
            position: relative;
            display: flex;
            flex-direction: column;
            padding: 25px 0;
            & > .title_container {
                & > h2 {
                    position: relative;
                    font-size: 2.5em;
                    font-family: 'Roboto', sans-serif;
                    color: var(--darkBlue-color);
                    text-align: center;
                    &::after {
                        content: '';
                        position: absolute;
                        bottom: -4px;
                        left: 50%;
                        transform: translateX(-50%);
                        width: 30%;
                        height: 5px;
                        background-color: #38b6ff;
                    }
                }
            }
            & > .dscpt {
                padding: 25px;
                & > p {
                    font-family: "Roboto", sans-serif;
                    font-size: 1rem;
                    text-align: center;
                    font-weight: 350;
                    & > strong {
                            color: #38b6ff;
                            font-weight: 500;
                    }
                }
            }
            & > .bttn {
                width: 100%;
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
                & > a {
                    padding: 12px 18px;
                    background-color: #38b6ff;
                    color: #ffffff;
                    border: none;
                    font-size: 0.95rem;
                    text-decoration: none;
                    font-family: "Roboto", sans-serif;
                    border-radius: 40px;
                    position: relative;
                    cursor: pointer;
                    transition: all .3s ease-in-out;
                    &:hover {
                        background-color: #114672e0;
                    }
                }
            }
        }
    }
}

/* recent videos */
.rcnt_vd {
    width: 100%;
    height: auto;
    padding: 40px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8faff 100%);
    & > .main_container {
        width: 85%; 
        margin: 0 auto;   
        & > .title_container {
            width: auto;
            padding: 18px;
            margin-bottom: 18px;      
            & > h2 {
                font-size: 2.5em;
                font-family: 'Roboto', sans-serif;
                color: #062644;
                text-align: center;
                font-weight: 700;
                position: relative;
                letter-spacing: -0.5px;
                &::after {
                    content: '';
                    position: absolute;
                    bottom: -8px;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 100px;
                    height: 4px;
                    background-color: #38b6ff;
                    border-radius: 2px;
                }
            }
        }
        & > .container {
            padding: 18px 0;
            height: auto;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px; 
            max-width: calc(3 * 350px + 2 * 20px);
            margin: 0 auto;
            & > .block {
                flex: 1 1 320px;
                max-width: 350px;
                display: flex;
                transition: transform 0.3s ease;
                &:hover {
                    transform: translateY(-4px);
                }
                .fr_img {
                    position: relative;
                    width: 100%;
                    height: 100%;
                    background-color: #ffffff;
                    border-radius: 12px;
                    overflow: hidden;
                    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
                    transition: all 0.3s ease;
                    &:hover {
                        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
                        border-color: #38b6ff;
                        & > .img_container > img {
                            transform: scale(1.1);
                        }
                        & > .img_container .trns {
                            background: rgba(0, 0, 0, 0.75);
                            
                            & .logo > img {
                                animation: float_icon 1s ease-in-out infinite;
                            }
                        }
                    }

                    & > .img_container {     
                        overflow: hidden;
                        height: 210px; 
                        & > img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            display: block;
                            transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
                        }                 
                        & > .trns {
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            background: rgba(0, 0, 0, 0.4);
                            display: flex;
                            flex-direction: column;
                            justify-content: space-between;
                            align-items: center;
                            color: #fff;
                            padding: 8px;
                            transition: all 0.3s ease;
                            & > .logo {
                                height: fit-content;
                                width: 100%;
                                position: relative;
                                display: flex;
                                justify-content: flex-end;
                                align-items: center;
                                & > img {
                                    position: relative;
                                    object-fit: cover;
                                    height: 60px; 
                                    width: 60px;
                                    border-radius: 50%;
                                    border: 2px solid rgba(255, 255, 255, 0.2);
                                    transition: all 0.3s ease;
                                }
                            }
                            
                            & > .ctchprs {
                                height: auto;
                                width: 100%;
                                position: relative;
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                & > h3 {
                                    font-family: 'Roboto', sans-serif;
                                    font-size: 1.2em;
                                    font-weight: 600;
                                    line-height: 1.3;
                                    text-align: center;
                                    overflow: hidden;
                                    text-overflow: ellipsis;
                                    display: -webkit-box;
                                    -webkit-box-orient: vertical;
                                    line-clamp: 2;
                                    -webkit-line-clamp: 2;
                                }
                            }
                            
                            & > .bttn {
                                height: auto;
                                width: 100%;
                                position: relative;
                                display: flex;
                                justify-content: center;
                                
                                & > a {
                                    padding: 12px 25px;
                                    background-color: #38b6ff;
                                    color: #ffffff;
                                    border: none;
                                    font-size: 1rem;
                                    font-family: 'Roboto', sans-serif;
                                    border-radius: 40px;
                                    cursor: pointer;
                                    text-decoration: none;
                                    transition: all 0.3s ease;
                                    box-shadow: 0 2px 8px rgba(56, 182, 255, 0.3);
                                    
                                    &:hover {
                                        background-color: #2a8fd6;
                                        transform: translateY(-2px);
                                        box-shadow: 0 4px 12px rgba(56, 182, 255, 0.4);
                                    }
                                }
                            }
                        }
                    }
                    
                    & > .caption {
                        width: 100%;
                        position: relative;
                        padding: 8px;
                        background: #ffffff;
                        
                        & > .ctgry_dur {
                            width: 100%;
                            display: flex;
                            flex-direction: row;
                            position: relative;
                            padding: 4px 0;
                            justify-content: space-between;
                            & > .ctgry {
                                & > p {
                                    text-align: start;
                                    color: #333;
                                    font-size: 0.95rem;
                                    font-family: 'Roboto', sans-serif;
                                    font-weight: 500;
                                    & > i {
                                        font-weight: 400;
                                        color: #666;
                                    }
                                }
                            }
                            
                            & > .dur {
                                & > p {
                                    text-align: end;
                                    color: #333;
                                    font-size: 0.95rem;
                                    font-family: 'Roboto', sans-serif;
                                    font-weight: 500;
                                    & > i {
                                        font-weight: 400;
                                        color: #666;
                                    }
                                }
                            }
                        }
                        
                        & > .trainer {
                            padding: 4px 0;
                            width: 100%;
                            position: relative;
                            
                            & > p {
                                color: #333;
                                font-size: 0.95rem;
                                font-family: 'Roboto', sans-serif;
                                font-weight: 500;
                                
                                & > i {
                                    font-weight: 400;
                                    color: #666;
                                }
                            }
                        }
                    }
                }
            }              
        }
        & > .view-more-container {
            text-align: center;
            margin-top: 18px;
            & > .view-more-btn {
                padding: 10px 25px;
                background-color: #38b6ff;
                color: #ffffff;
                border: none;
                font-size: 1rem;
                font-family: 'Roboto', sans-serif;
                border-radius: 40px;
                cursor: pointer;
                text-decoration: none;
                box-shadow: 0 2px 8px rgba(56, 182, 255, 0.3);
                transition: all 0.3s ease;
                &:hover {
                    background-color: #2a8fd6;
                    transform: translateY(-2px);
                    box-shadow: 0 4px 12px rgba(56, 182, 255, 0.4);
                }
            }
        }
    }
}

/* Floating animation for icons */
@keyframes float_icon {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        box-shadow: 0 4px 12px rgba(56, 182, 255, 0.4);
    }
    50% { 
        transform: translateY(-12px) rotate(5deg);
        box-shadow: 0 12px 20px rgba(56, 182, 255, 0.6);
    }
}

/* weekly session pop-up */
.wkly_sessions {
    width: 100%;
    position: relative;
    background-color: #ffffff;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Semicircle */
    &::before {
        content: "";
        position: absolute;
        width: 120px;
        height: 70px;
        background-color: #25f4ee;
        border-top-left-radius: 60px;
        border-top-right-radius: 60px;
        bottom: 0;
        right: 25%;
        transform: translateY(-77.5%);
        pointer-events: none;
        z-index: 1;
    }
    & > .main_container {
        width: 80%;
        height: 320px;
        background-color: #38b6ff;
        margin: 0 auto;
        border-radius: 50px;
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        /* circle */
        &::before  {
            content: "";
            position: absolute;
            width: 160px;
            height: 160px;
            background-color: #25f4ee;
            border-radius: 50%;
            top: 45%;
            left: 5%;
            transform: translateY(-50%);
        }
        /* parabola */
        &::after {
            content: "";
            position: absolute;
            width: 120px;
            height: 160px;
            background-color: #25f4ee;
            border-top-left-radius: 60px;
            border-top-right-radius: 60px;
            bottom: 50%;
            right: 20px;
            transform: translateY(50%) rotate(270deg);
        }
        & > .title_container {
            height: auto;
            width: 60%;
            padding: 18px;
            z-index: 1;
            margin: -14px 0 0 0;
            & > h2, 
            & > h3,
            & > p {
                font-size: 1.7em;
                font-family: "Roboto", sans-serif;
                color: var(--darkBlue-color);
                margin: 12px;
            }
            & > h2 {
                font-size: 2.5em;
                color: #ffffff;
            }
            & > p {
                font-size: 1.1rem;
                color: #ededed;
            }
        }
        & > .button {
            height: auto;
            padding: 18px 25px;
            z-index: 1;
            & > a {
                margin: 0 auto;
                padding: 20px 40px;
                background-color: #f4f4f4;
                border: none;
                border-radius: 40px;
                color: #000000;
                font-family: "Roboto", sans-serif;
                font-size: 1rem;
                cursor: pointer;
                text-decoration: none;
                &:hover {
                    background-color: #f4f4f4e0;
                }
            }
        }
    }
}

/* get in touch section */
.gtch {
    width: 100%;
    position: relative;
    background-color: #f4f4f4;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    & > .main_container {
        height: 100%;
        width: 80%;
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
        & > .title_container {
            width: auto;
            padding: 18px;
            & > h2 {
                font-size: 2.5em;
                font-family: 'Roboto', sans-serif;
                color: var(--darkBlue-color);
                text-align: center;
                &::after {
                    content: '';
                    position: absolute;
                    bottom: -4px;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 30%;
                    height: 5px;
                    background-color: #38b6ff;
                }
            }
        }
        & > .form_container {
            width: 100%;
            display: flex;
            flex-wrap: flex;
            flex-direction: row;
            padding: 18px;
            position: relative;
            & > .form {
                width: 75%;
                padding: 50px;
                & > form {
                    & > .block {
                        width: 70%;
                        height: fit-content;
                        display: flex;
                        flex-direction: row;
                        margin: 18px auto;
                        align-items: center;
                        justify-content: space-around;
                        & > .prgrph {
                            padding: 18px;
                            /* width: 150px; */
                            & > p {
                                font-size: 1.1rem;
                                font-family: "Roboto", sans-serif;
                                color: #000000;width: max-content;
                            }
                        }
                        & > .field {
                            width: 100%;
                            height: fit-content;
                            display: flex;
                            flex-direction: column;
                            & > input[type="text"],
                            & > input[type="email"],
                            & > textarea {
                                height: 50px;
                                width: 100%;
                                position: relative;
                                background-color: #ededed;
                                color: #000;
                                border-radius: 30px;
                                border: none;
                                padding: 20px 18px;
                                font-family: "Roboto", sans-serif;
                                transition: box-shadow 0.3s ease-in-out;
                                outline: none;
                                &::placeholder {
                                    color: #1d1d1d;
                                    font-size: .85rem;
                                    font-family: "Roboto", sans-serif;
                                }
                                &:focus {
                                    border-color: #007acc;
                                    box-shadow: 0 0 0 3px rgba(56, 182, 255, 0.2);
                                }
                            }
                            & > textarea {
                                height: 90px;
                            }
                            & > button {
                                padding: 18px 30px;
                                background-color: #38b6ff;
                                color: #ededed;
                                text-decoration: none;
                                font-size: 1rem;
                                border-radius: 40px;
                                border: none;
                                transition: all .3s ease-in-out;
                                margin: 0 auto;
                                text-align: center;
                                justify-self: center;
                                &:hover {
                                    background-color: #114672e0;
                                }
                            }
                        }
                    }
                }
            }
            & > .scl_md_container {
                height: 450px;
                width: 25%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                & > .md {
                    height: 65px;
                    width: 65px;
                    position: relative;
                    margin: 6px 0;
                    & > a {
                        & > i {
                            font-size: 35px;
                            object-fit: cover;
                            color: #000;
                            position: relative;
                        }
                    }
                }
            }
        }
    }
}

/* footer section */
/* applied form global CSS - footer.css */

/* mobile responses */
@media (max-width: 1770px) {
    .nav_container > nav {
        width: 90%;
    }
}

@media (max-width: 1440px) {
    .nav_container {
        & > nav {
            width: 95%;
            & > .logo_container {
                & > a {
                    & > img {
                        height: 40px;
                    }
                }
            }
            & > .nav_block {
                & > .nav-links {
                    & > ul > li,
                    & > ul > li > a {
                        margin: 0 8px;
                        font-size: 1.1rem;
                    }
                    & > ul > li > a.active {
                        padding: 8px 20px;
                    }
                }
            }
        }
    }
    .landing_container {
        & > .main_container {
            & > .slider_container {
                & > .still_block {
                    width: 70%;
                }
            }
        }
    }
}

@media (max-width: 1200px) {
    .nav_container {
        &.sticky {
            & > nav {
                & > .logo_container {
                    & > a {
                        & > img {
                            height: 30px;
                        }
                    }
                }
            }
        }
        & > nav {
            flex-wrap: nowrap;
            & > .logo_container {
                & > a {
                    & > img {
                        height: 30px;
                    }
                }
            }
            & > .nav_block {
                & > .nav-links {
                    & > ul > li,
                    & > ul > li > a {
                        margin: 0 6px;
                        font-size: 0.95rem;
                    }
                }
                /* handle the name to the right if logged in */
                & > .user-info {
                    & > a {
                        font-size: 0.95rem;
                        padding: 8px 15px;
                        border-radius: 15px;
                    }
                }
            }
        }
    }
    .landing_container {
        & > .main_container {
            & > .slider_container {
                & > .still_block {
                    width: 100%;
                    & > .main_block {
                        & > .slider {
                            & > .header {
                                & > h3 {
                                    font-size: 2.5rem;
                                }
                            }
                            & > .dscpt {
                                & > p {
                                    font-size: 1rem;
                                }
                            }
                            & > .cta {
                                padding: 0;
                                & > a {
                                    font-size: 0.95rem;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    /* weekly session pop-up */
    .wkly_sessions {
        /* Semicircle */
        padding: 18px;
        &::before {
            display: none;
        }
        & > .main_container {
            width: 90%;
            height: 280px;
            /* circle */
            &::before  {
                width: 100px;
                height: 100px;
            }
            /* parabola */
            &::after {
                width: 80px;
                height: 120px;
            }
            & > .title_container {
                width: 75%;
                & > h2, 
                & > h3 {
                    font-size: 1.3em;
                }
                & > h2 {
                    font-size: 2.2em;
                }
            }
            & > .button {
                height: auto;
                padding: 15px 0;
                z-index: 1;
                width: fit-content;
                & > a {
                    margin: 0 auto;
                    padding: 15px 22px;
                    background-color: #f4f4f4;
                    border: none;
                    border-radius: 40px;
                    color: #000000;
                    font-family: "Roboto", sans-serif;
                    font-size: 1rem;
                    cursor: pointer;
                    text-decoration: none;
                    &:hover {
                        background-color: #f4f4f4e0;
                    }
                }
            }
        }
    }
    /* get in touch section */
    .gtch {
        & > .main_container {
            & > .form_container {
                flex-direction: column-reverse;
                & > .form {
                    width: 100%;
                    padding: 0;
                    & > form {
                        & > .block {
                            width: 90%;
                        }
                    }
                }
                & > .scl_md_container {
                    flex-direction: row;
                    height: fit-content;
                    margin: 0 auto;
                    padding: 18px;
                    & > .md {
                        margin: 0 12px;
                        & > a {
                            & > i {
                                font-size: 28px;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 768px) {
    .nav_container > nav {
        flex-direction: row;
        width: 80%;
        flex-wrap: wrap;
        & > .logo_container {
            & > a {
                & > img {
                    height: 40px;
                }
            }
        }
        & > .menu-toggle {
            display: block!important;
        }

        & > .nav_block {
            width: 100%;
            display: none;
            flex-direction: column;
            align-items: center;
            padding: 12px 0;
            &.active {
                display: flex;
            }
            & > .nav-links {
                & > ul {
                    flex-direction: column;
                    width: 100%;
                    & > li {
                        margin: 12px 18px;
                        & > a {
                            font-size: 1rem!important;
                            padding: 0 12px;
                            display: block;
                            width: 100%;
                            text-align: center;
                            font-weight: 400;
                            margin: 0;
                        }
                    }
                }
            }
            & > .user-info {    
                justify-content: center;
                margin: 8px auto;
            }

        }
    }
    .landing_container {
        height: fit-content;
        & > .main_container {
            height: fit-content;
            & > .slider_container {
                height: fit-content;
                & > .still_block {
                    padding: 22px 0;
                    & > .main_block {
                        height: fit-content;
                        padding: 22px 0;
                        & > .slider {
                            & > .header,
                            & > .dscpt,
                            & > .cta {
                                display: flex;
                                justify-content: center;
                                margin: 8px 0;
                                & > h3,
                                & > p {
                                    font-size: 2.2em;
                                    text-align: center;
                                }
                                & > p,
                                & > a {
                                    font-size: 0.95rem;
                                }
                                &.cta {
                                    padding: 0 4px;
                                }
                            }
                        }
                    }
                    & > .dot_container {
                        display: flex;
                        margin: 0 auto;
                        justify-content: center;
                    }
                }
            }
        }
    }
    /* service categories */
    .categories_cont {
        & > .main_container {
            width: 90%;
            & > .title_container {
                & > h2 {
                    font-size: 2.2em;
                    &::after {
                        bottom: -4px;
                        height: 4px;
                    }
                }
            }
             & > .main_cont {
                & > .container {
                    width: 100%;
                    & > .cards-wrapper {
                        & > .cards {
                            & > .card {
                                width: 250px;
                                /* height: 400px; */
                                margin: 0 18px;
                                &.active {
                                    /* height: 450px; */
                                    & > .cr-img {
                                        height: 180px;
                                        width: 180px;
                                        & > img {
                                            height: 180px;
                                            width: 180px;
                                        }
                                    }
                                }
                                &:nth-child(3) {
                                    background-color: #f4f4f4;
                                }
                                & > .cr-img {
                                    height: 160px;
                                    width: 160px;
                                    & > img {
                                        height: 160px;
                                        width: 160px;
                                    }
                                }
                                & > .st_title_container {
                                    width: 100%;
                                    & > h3 {
                                        text-align: center;
                                    }
                                }
                                & > .st_dscrpt {
                                    height: fit-content;
                                    & > p {
                                        font-size: 1rem;
                                        text-align: center;
                                    }
                                }
                            }
                        }
                    }      
                }
                & > .control_arrows {
                    height: 100%;
                    width: fit-content;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    & > .arrow-btn {
                        background: none;
                        border-radius: 40px;
                        padding: 1px 8px;
                        font-size: 1.7rem;
                        cursor: pointer;
                        transform: scale(0.9);
                        z-index: 1;
                    }
                }
            } 
        }
    }
    /* brief about */
    .about_summ {
        & > .main_container {
            & > .block {
                height: fit-content;
            }
            & > .image_block {
                & > img {
                    height: 220px;
                    width: fit-content;
                }     
            }
            & > .about_brief {
                padding: 18px 0;
                & > .title_container {
                    & > h2 {
                        font-size: 2.2em;
                        &::after {
                            height: 4px;
                        }
                    }
                }
                & > .dscpt {
                    padding: 18px;
                    & > p {
                        font-size: 1.1rem;
                        text-align: center;
                    }
                }
            }
        }
    }
    /* recent videos */
    .rcnt_vd {
        padding: 18px;
        & > .main_container {
            width: 90%;
            padding: 18px 0;
            & > .title_container {
                padding: 8px;
                & > h2 {
                    font-size: 2.2em;
                    &::after {
                        bottom: -4px;
                        height: 4px;
                    }
                }
            }
            & > .container {
                padding: 18px;
                height: auto;
                width: 100%;
                display: flex;
                flex-wrap: wrap;
                justify-content: space-evenly;
                gap: 12px;
                & > .block {
                    flex: 1 1 300px;
                    max-width: 350px;
                    display: flex;    
                    .fr_img {
                        position: relative;
                        width: 100%;
                        height: 100%;
                        background-color: #f4f4f4;
                        & > .img_container {     
                            overflow: hidden;           
                            & > img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                display: block;
                                transition: transform 0.3s ease-in-out;
                            }
                            & > .trns {
                                position: absolute;
                                top: 0;
                                left: 0;
                                width: 100%;
                                height: 100%;
                                background: rgba(0, 0, 0, .65);
                                display: flex;
                                flex-direction: column;
                                justify-content: center;
                                align-items: center;
                                color: #fff;
                                opacity: 1;
                                padding: 8px 12px;
                                transition: opacity 0.3s ease;
                                & > .logo {
                                    height: fit-content;
                                    width: 100%;
                                    position: relative;
                                    display: flex;
                                    top: 0;
                                    & > img {
                                        position: relative;
                                        object-fit: cover;
                                        height: 55px;
                                        width: 55px;
                                        border-radius: 40px;
                                    }
                                }
                                & > .ctchprs {
                                    height: 90px;
                                    width: 100%;
                                    position: relative;
                                    display: flex;
                                    & > h3 {
                                        font-family: 'Roboto', sans-serif;
                                        font-size: 1.1em;
                                    }
                                }
                                & > .bttn {
                                    width: 100%;
                                    position: relative;
                                    display: flex;
                                    & > a {
                                        padding: 12px 18px;
                                        background-color: #38b6ff;
                                        color: #ffffff;
                                        border: none;
                                        font-size: 0.95rem;
                                        font-family: 'Roboto', sans-serif;
                                        border-radius: 40px;
                                        position: relative;
                                        cursor: pointer;
                                        text-decoration: none;
                                        transition: all .3s ease-in-out;
                                        &:hover {
                                            background-color: #114672e0;
                                        }
                                    }
                                }
                            }
                        }
                        & > .caption {
                            width: 100%;
                            position: relative;
                            padding: 0 8px;
                            & > .ctgry_dur {
                                width: 100%;
                                display: flex;
                                flex-direction: row;
                                position: relative;
                                padding: 2px 0;
                                & > .ctgry {
                                    width: 50%;
                                    & > p {
                                        text-align: start;
                                        color: #000000;
                                        font-size: 0.95rem;
                                        font-family: 'Roboto', sans-serif;
                                        font-weight: 500;
                                        & > i {
                                            font-weight: 350;
                                        }
                                    }
                                }
                                & > .dur {
                                    width: 50%;
                                    & > p {
                                        text-align: end;
                                        color: #000000;
                                        font-size: 0.95rem;
                                        font-family: 'Roboto', sans-serif;
                                        font-weight: 500;
                                        & > i {
                                            font-weight: 350;
                                        }
                                    }
                                }
                            }
                            & > .trainer {
                                padding: 2px 0;
                                width: 100%;
                                position: relative;
                                & > p {
                                    color: #000000;
                                    font-size: 0.95rem;
                                    font-family: 'Roboto', sans-serif;
                                    font-weight: 500;
                                    & > i {
                                        font-weight: 350;
                                    }
                                }
                            }
                        }
                        &:hover {
                            & > .img_container > img {
                                transform: scale(1.2);
                            }
                            & > .img_container .trns .logo > img {
                                animation: shake_icon_rctTraining 2s ease-in-out;
                            }
                        }
                    }
                }              
            }
        }
    }
    /* weekly session pop-up */
    .wkly_sessions {
        padding: 50px 18px;
        /* Semicircle */
        &::before {
            content: "";
            position: absolute;
            width: 120px;
            height: 70px;
            background-color: #25f4ee;
            border-top-left-radius: 60px;
            border-top-right-radius: 60px;
            bottom: 0;
            right: 25%;
            transform: translateY(-77.5%);
            pointer-events: none;
            z-index: 1;
        }
        & > .main_container {
            width: 90%;
            height: fit-content;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            /* circle */
            &::before  {
                display: none;
            }
            /* parabola */
            &::after {
                width: 80px;
                height: 80px;
                right: 0;
            }
            & > .title_container {
                height: auto;
                width: fit-content;
                margin:  0;
                text-align: center;
                & > h2, 
                & > h3 {
                    font-size: 0.95rem;
                }
                & > h2 {
                    font-size: 2.5em;
                }
            }
            & > .button {
                padding: 8px 18px;
                height: 60px;
                & > a {
                    padding: 18px 25px;
                }
            }
        }
    }
    /* get in touch section */
    .gtch {
        & > .main_container {
            width: 100%;
            & > .title_container {
                & > h2 {
                    font-size: 2.2em;
                    &::after {
                        height: 4px;
                    }
                }
            }
            & > .form_container {
                flex-direction: column-reverse;
                & > .form {
                    width: 100%;
                    padding: 8px;
                    & > form {
                        & > .block {
                            width: 100%;
                            margin: 12px auto;
                            & > .prgrph {
                                padding: 12px;
                                & > p {
                                    font-size: 1rem;
                                }
                            }
                            & > .field {
                                width: 100%;
                                height: fit-content;
                                & > a {
                                    padding: 12px 22px;
                                    font-size: 1rem;
                                    margin: 25px auto;
                                }
                            }
                        }
                    }
                }
                & > .scl_md_container {
                    height: fit-content;
                    flex-direction: row;
                    width: fit-content;
                    margin: 0 auto;
                    padding: 0;
                    & > .md {
                        height: 35px;
                        width: 35px;
                        display: flex;
                        margin: 8px;
                        justify-content: center;
                        align-items: center;
                        & > a {
                            & > i {
                                font-size: 18px;
                            }
                        }
                    }
                }
            }
        }
    }
}

/* Small phones */
@media (max-width: 480px) {
    .nav-links ul li a {
        font-size: 0.95rem;
    }

    .logo_container img {
        height: 30px!important;
    }

    .nav_container > nav {
        flex-direction: row;
        width: 90%;
        flex-wrap: wrap;
    }
    .nav_container {
        & > nav {
            & > .menu-toggle {
                & > .menu-li {
                    width: 15px;
                    height: 2px;
                }
            }
        }
    }

    .landing_container {
        & > .main_container {
            & > .slider_container {
                width: 95%;
                & > .still_block {
                    & > .main_block {
                        & > .slider {
                            & > .header {
                                margin: 4px 0;
                                & > h3{
                                    font-size: 2em;
                                }
                            }
                            & > .cta {
                                & > a {
                                    & > div {
                                        padding: 12px 18px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    /* service categories */
    .categories_cont {
        & > .main_container {
            width: 95%;
            & > .title_container {
                & > h2 {
                    font-size: 1.7em;
                    &::after {
                        height: 2px;
                    }
                }
            }
             & > .main_cont {
                /* height: 480px; */
                & > .container {
                    padding: 8px 4px;
                    & > .cards-wrapper {
                        & > .cards {
                            & > .card {
                                width: 200px;
                                /* height: 320px; */
                                &.active {
                                    /* height: 350px; */
                                    & > .cr-img {
                                        height: 130px;
                                        width: 130px;
                                        & > img {
                                            height: 130px;
                                            width: 130px;
                                        }
                                    }
                                }
                                & > .cr-img {
                                    height: 130px;
                                    width: 130px;
                                    & > img {
                                        height: 130px;
                                        width: 130px;
                                    }
                                }
                                
                                & > .st_title_container {
                                    width: 100%;
                                    & > h3 {
                                        font-size: 1.1rem;
                                    }
                                }
                                & > .st_dscrpt {
                                    & > p {
                                        font-size: .85rem;
                                    }
                                }
                            }
                        }
                    }      
                }
                & > .control_arrows {
                    & > .arrow-btn {
                        padding: 1px 4px;
                        font-size: 0.95rem;
                    }
                }
            } 
        }
    }

    .about_summ {
        padding: 0;
        & > .main_container {
            width: 100%;
            & > .image_block {
                width: 100%;
                & > img {
                    height: 200px;
                    margin: 0 auto;
                }
            }
            & > .about_brief {
                & > .title_container {
                    & > h2 {
                        font-size: 1.7em;
                        &::after {
                            height: 3px;
                        }
                    }
                }
                & > .dscpt {
                    & > p {
                        font-size: 0.95rem;
                        text-align: center;
                    }
                }
            }
        }
    }

    /* recent videos */
    .rcnt_vd {
        padding: 0;
        & > .main_container {
            width: 95%;
            & > .title_container {
                & > h2 {
                    font-size: 1.7em;
                    &::after {
                        height: 3px;
                    }
                }
            }
            & > .container {
                & > .block {
                    flex: 1 1 260px;
                    max-width: 280px;
                    .fr_img {
                        & > .img_container {
                            height: fit-content;
                            & > img {
                                height: 160px;
                            }
                            & > .trns {
                                padding: 12px;
                                & > .logo {
                                    & > img {
                                        height: 45px;
                                        width: 45px;
                                    }
                                }
                                & > .ctchprs {
                                    & > h3 {
                                        font-size: 0.95rem;
                                        margin: 8px 0;
                                    }
                                }
                                & > .bttn {
                                    height: fit-content;
                                    & > a {
                                        padding: 8px 12px;
                                        font-size: .85rem;
                                    }
                                }
                            }
                        }
                        & > .caption {
                            padding: 0 6px;
                            & > .ctgry_dur {
                                & > .ctgry {
                                    & > p {
                                        font-size: .85rem;
                                    }
                                }
                                & > .dur {
                                    & > p {
                                        font-size: .85rem;
                                    }
                                }
                            }
                            & > .trainer {
                                & > p {
                                    font-size: .85rem;
                                }
                            }
                        }
                    }
                }              
            }
        }
    }
    /* weekly session pop-up */
    .wkly_sessions {
        & > .main_container {
            width: 95%;
            & > .title_container {
                & > h2 {
                    font-size: 2em;
                }
            }
            & > .button {
                & > a {
                    padding: 12px 22px;
                }
            }
        }
    }
    /* get in touch section */
    .gtch {
        & > .main_container {
            & > .form_container {
                padding: 0;
                & > .form {
                    padding: 0;
                    & > form {
                        & > .block {
                            display: flex;
                            flex-wrap: wrap;
                            & > .prgrph {
                                padding: 12px;
                                & > p {
                                    font-size: 1rem;
                                }
                            }
                            & > .field {
                                margin: 0 auto;
                                & > a {
                                    padding: 12px 22px;
                                    font-size: 1rem;
                                    margin: 25px auto;
                                }
                                & > input[type="text"] {
                                    height: 35px;
                                }
                            }
                        }
                    }
                }
            }
            & > .title_container {
                & > h2 {
                    font-size: 1.7em;
                }
            }
            & > .button {
                padding: 4px 12px;
            }
        }
    }
}


/* Get in touch validation handle style */
.error-message {
    color: red;
    font-size: 11px;
    margin-top: 4px;
    display: none;
}

#contact-form input:invalid,
#contact-form textarea:invalid {
    border-color: red;
}

#contact-form input:valid,
#contact-form textarea:valid {
    border-color: green;
}

#contact-submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

#contact-submit-btn {
    transition: all 0.3s ease;
}


@media (max-width: 380px) {
    .nav-links ul li a {
        font-size: 0.9rem;
        padding: 8px;
    }

    .menu-li {
        width: 30px;
    }

    .logo_container img {
        height: 60px;
    }
    .about_summ {
        & > .main_container {
            & > .image_block {
                & > img {
                    height: 150px;
                }
            }
        }
    }
}


/* Coming soon modal styling */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.modal-content {
  background-color: #fff;
  border-radius: 10px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: modalPop 0.3s ease-out;
}
.modal-header {
  background: linear-gradient(135deg, #4a6fa5, #2c3e50);
  color: white;
  padding: 18px;
  text-align: center;
  position: relative;
}
.modal-header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}
.modal-body {
  padding: 22px;
  text-align: center;
  color: #333;
}
.modal-body p {
  margin-bottom: 18px;
  line-height: 1.5;
  font-size: 15px;
}
.modal-icon {
  font-size: 42px;
  margin-bottom: 12px;
  color: #4a6fa5;
}
.modal-footer {
  padding: 12px 22px 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

@keyframes modalPop {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.modal-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}
.modal-btn.confirm {
  background-color: #4a6fa5;
  color: white;
}
.modal-btn.confirm:hover {
  background-color: #3a5a80;
}
.modal-btn.cancel {
  background-color: #e2e8f0;
  color: #4a5568;
}
.modal-btn.cancel:hover {
  background-color: #cbd5e0;
}