    /* Base Styles and CSS Variables */
    :root {
        --background-color: #e0e5ec;
        --surface-color: #e0e5ec;
        --text-color: #333;
        --shadow-light: #ffffff;
        --shadow-dark: #b8c4d1;
        --glass-bg: rgba(255, 255, 255, 0.4);
        --glass-border: rgba(255, 255, 255, 0.6);
        --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        --loader-color: #4a90e2;
        --sun-color: #facc15;
        --moon-color: #4a5568;
        --facebook-color: #3b5998;
        --twitter-color: #00acee;
        --instagram-color: #E1306C;
        --linkedin-color: #0e76a8;
    }

    body.dark-theme {
        --background-color: #1a1a1a;
        --surface-color: #2c2c2c;
        --text-color: #ffffff;
        --shadow-light: rgba(44, 44, 44, 0.8);
        --shadow-dark: rgba(20, 20, 20, 0.8);
        --glass-bg: rgba(44, 44, 44, 0.5);
        --glass-border: rgba(60, 60, 60, 0.7);
        --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        --loader-color: #60a5fa;
        --moon-color: #e0e0e0;
    }

    body.navy-blue-theme {
        --background-color: #0d1222;
        --surface-color: #12182b;
        --text-color: #ffffff;
        --shadow-light: #1c273e;
        --shadow-dark: #00000a;
        --glass-bg: rgba(18, 24, 43, 0.5);
        --glass-border: rgba(50, 60, 90, 0.7);
        --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        --loader-color: #5d9cec;
        --sun-color: #facc15;
        --moon-color: #5d9cec;
        --boy-color: #5d9cec;
    }

    body.baby-pink-theme {
        --background-color: #ffe8f2;
        --surface-color: #ffe8f2;
        --text-color: #d81b60;
        --shadow-light: #ffffff;
        --shadow-dark: #d8c8d8;
        --glass-bg: rgba(255, 232, 242, 0.7);
        --glass-border: rgba(255, 200, 220, 0.9);
        --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
        --loader-color: #d81b60;
        --sun-color: #d81b60;
        --moon-color: #d81b60;
        --girl-color: #d81b60;
    }

    .my_para_block {
        color: var(--text-color);
        padding: 2rem 1rem;
        border-radius: 10px;
        font-size: 22px;
        box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
        background: var(--glass-bg);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 2rem;
    }


    .alert {
        /* display: none; */
        z-index: 5555;
        position: fixed;
        width: 90%;
        left: 5%;
        top: 5%;
        animation: alert_tatics 3s ease forwards;
        box-shadow: var(--box-shadow);
        font-size: larger;
        text-align: center;
        padding: .5rem 2rem;
        border-radius: 12px;
        color: rgb(249, 246, 246);
        text-shadow: 1px 1px 4px black;
        max-width: 30rem;
    }



    @keyframes alert_tatics {
        0% {
            opacity: 0;
        }

        25% {
            transform: translateX(0);
        }

        30% {
            opacity: 1;
            transform: translateX(8px);
        }

        35% {
            transform: translateX(-16px);
        }

        40% {
            transform: translateX(16px);
        }

        45% {
            transform: translateX(-8px);
        }

        50% {
            transform: translateX(0px);
        }

        80% {
            opacity: 1;
        }

        100% {
            opacity: 0;
            display: none;
        }
    }

    .typing-effect {

        white-space: nowrap;
        overflow: hidden;

        border-right: 3px solid #1a202c;
        width: 0;


        animation: typing 3s steps(30, end) forwards,
            blink-caret .75s step-end infinite;
    }

    .jquery-char {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }


    @keyframes typing {
        from {
            width: 0
        }

        to {
            width: 100%
        }
    }


    @keyframes blink-caret {

        from,
        to {
            border-color: transparent
        }

        50% {
            border-color: #4a5568
        }
    }



    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        scroll-behavior: smooth;
        -webkit-tap-highlight-color: transparent;
    }


    body {
        font-family: 'Inter', sans-serif;
        background-color: var(--background-color);
        color: var(--text-color);
        transition: background-color 0.3s ease, color 0.3s ease;
        overflow-x: hidden;
    }

    .container {
        width: 98%;
        max-width: 110rem;
        margin: 1rem auto;
        padding: 3rem 1.5rem;
    }

    .content-block {
        box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
        background: var(--glass-bg);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 4rem;

    }

    /* Neumorphic & Glassmorphic Components */
    .glass-neumorphic {
        background: var(--glass-bg);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
        transition: all 0.3s ease;
    }

    .inner-neumorphic {
        background: var(--background-color);
        border-radius: 20px;
        box-shadow: inset 6px 6px 12px var(--shadow-dark), inset -6px -6px 12px var(--shadow-light);
        padding: 2rem;
    }

    .btn {
        border: none;
        cursor: pointer;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        text-decoration: none;
        transition: all 0.2s ease-in-out;
        background: var(--surface-color);
        box-shadow: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
    }

    .btn:hover {
        box-shadow: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);
    }

    /* Header and Navigation */
    .header {
        position: sticky;
        top: 0;
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
        /* background-color: var(--background-color); */
        /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    }

    .header .btn {
        margin-left: 1rem;
    }

    .nav-menu {
        display: flex;
        list-style: none;
        gap: 1.5rem;
    }

    .nav-menu-close {
        display: none;
    }

    .nav-menu a {
        text-decoration: none;
        color: var(--text-color);
        font-weight: 500;
        padding: 0.5rem 1rem;
        border-radius: 10px;
        background: var(--surface-color);
        box-shadow: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
        transition: all 0.2s ease-in-out;
    }

    .nav-menu a.active {
        box-shadow: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);
    }

    .nav-menu a:hover {
        box-shadow: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);
    }

    .menu-toggle {
        display: none;
    }

    /* Colored Icons */
    .theme-toggle .fa-moon {
        color: var(--moon-color);
    }

    .theme-toggle .fa-sun {
        color: var(--sun-color);
    }

    .theme-toggle .fa-male {
        color: var(--boy-color);
    }

    .theme-toggle .fa-female {
        color: var(--girl-color);
    }

    .menu-toggle i {
        color: var(--text-color);
    }

    .location-button i {
        color: #4285F4;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s ease;
    }

    .location-button:hover i {
        transform: scale(1.1);
    }

    .contact-info .fa-map-marker-alt {
        color: #f87171;
    }

    .contact-info .fa-phone {
        color: #4ade80;
    }

    .contact-info .fa-envelope {
        color: #3b82f6;
    }

    .contact-info .fa-clock {
        color: #facc15;
    }

    .social-links .fa-facebook-f {
        color: var(--facebook-color);
    }

    .social-links .fa-twitter {
        color: var(--twitter-color);
    }

    .social-links .fa-instagram {
        color: var(--instagram-color);
    }

    .social-links .fa-linkedin-in {
        color: var(--linkedin-color);
    }

    .contact-info i {
        margin-right: 1rem;
        font-size: 1.2rem;
    }

    /* Sections */
    section {
        padding: 6rem 1.5rem;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 1s ease, transform 1s ease;
        margin: 2rem auto;


    }

    section:first-of-type {
        margin-top: 0;
    }

    section.animated {
        opacity: 1;
        transform: translateY(0);
    }

    section h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px var(--shadow-dark);
    }

    section h1 {
        font-size: 2.4rem;
        margin-bottom: 2rem;
        text-shadow: 2px 2px 4px var(--shadow-dark);
    }

    h2.animated-heading {
        animation: fadeIn 1s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    section p {
        max-width: 800px;
        line-height: 1.6;
        margin-bottom: 2rem;
        text-align: left;
    }

    section .content-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        padding: .5rem;
        flex-wrap: wrap;

    }

    .pricing-cards-container,
    .services-cards-container {
        display: flex;
        justify-content: flex-start;
        gap: 2rem;

        margin-top: 2rem;
        overflow-x: auto;
        padding-bottom: 1rem;
        width: 100%;
    }

    .pricing-card,
    .service-card {
        background: var(--glass-bg);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
        padding: 2rem;
        width: 100%;
        max-width: 350px;
        min-width: 300px;
        text-align: center;
        transition: transform 0.3s ease;

    }

    .pricing-card:hover,
    .service-card:hover {
        transform: translateY(-5px);
    }

    .pricing-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .pricing-card .price {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--text-color);
    }

    .pricing-card ul {
        list-style: none;
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .pricing-card li {
        padding: 0.5rem 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 500;
    }

    .pricing-card li i {
        color: #4ade80;
    }

    .enroll-btn {
        background: var(--loader-color);
        color: #fff;
        padding: 1rem 2rem;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all 0.2s ease-in-out;
        box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
    }

    .enroll-btn:hover {
        box-shadow: inset 2px 2px 4px var(--shadow-dark), inset -2px -2px 4px var(--shadow-light);
    }

    section img {
        width: 100%;
        max-width: 400px;
        height: auto;
        border-radius: 20px;
        box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
        transition: transform 0.5s ease;
    }

    section img:hover {
        transform: scale(1.05);
    }

    .service-card h4 {
        font-size: 1.2rem;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .service-card img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
        transition: transform 0.3s ease;
    }

    .service-card img:hover {
        transform: scale(1.1);
    }

    .service-card ul {
        list-style: none;
        text-align: left;
        margin-top: 1rem;
    }

    .service-card li {
        padding: 0.3rem 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 500;
    }

    /* Footer */
    footer {
        padding: 4rem 1.5rem;
        text-align: center;
    }

    footer h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .footer-content {

        display: flex;
        justify-content: space-around;
        align-items: flex-start;
        gap: 2rem;
        max-width: 1000px;
        margin: 2rem auto;
    }

    .contact-info,
    .contact-form {
        width: 100%;
        max-width: 500px;
        text-align: center;
        margin: auto;
    }

    .contact-info p {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
    }

    .contact-form form {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        background: var(--surface-color);
        border-radius: 15px;
        box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
    }

    .contact-form input,
    .contact-form textarea {
        padding: 1rem;
        border: none;
        background: var(--surface-color);
        border-radius: 10px;
        color: var(--text-color);
        box-shadow: inset 4px 4px 8px var(--shadow-dark), inset -4px -4px 8px var(--shadow-light);
        transition: all 0.2s ease-in-out;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
        outline: none;
        box-shadow: inset 2px 2px 4px var(--shadow-dark), inset -2px -2px 4px var(--shadow-light);
    }

    /* Form Submission and Loader */
    #submit-btn {
        position: relative;
        padding: 1rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 10px;
        background: rgb(110, 177, 240);
        box-shadow: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
        cursor: pointer;
        border: none;
        color: var(--text-color);
        transition: all 0.2s ease-in-out;
        overflow: hidden;
    }

    #submit-btn:hover {
        box-shadow: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);
    }

    #submit-btn:disabled {
        cursor: not-allowed;
        opacity: 0.8;
        color: transparent;
    }

    .loader {
        display: none;
        width: 20px;
        height: 20px;
        border: 3px solid var(--loader-color);
        border-radius: 50%;
        border-top-color: transparent;
        animation: spin 0.8s linear infinite;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #submit-btn.loading .loader {
        display: block;
    }

    #submit-btn.loading span {
        color: transparent;
    }

    @keyframes spin {
        to {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }

    /* Social Links */
    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .social-links a {
        font-size: 1.5rem;
        color: var(--text-color);
        transition: color 0.3s ease, transform 0.3s ease;
        text-decoration: none;
    }

    .social-links a:hover {
        transform: scale(1.1);
        color: var(--loader-color);
    }

    /* Modal Styles */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 2000;
        backdrop-filter: blur(4px);
    }

    .modal-overlay.active {
        display: flex;
    }

    .modal-container {
        width: 90%;
        max-width: 600px;
        background: var(--background-color);
        border-radius: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        padding: 2rem;
        position: relative;
        transform: scale(0.9);
        opacity: 0;
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    }

    .modal-overlay.active .modal-container {
        transform: scale(1);
        opacity: 1;
    }

    .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .modal-header h3 {
        font-size: 1.5rem;
    }

    .modal-close-btn {
        cursor: pointer;
        font-size: 1.5rem;
        border: none;
        background: none;
        color: var(--text-color);
    }

    .location-info-container {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        margin-top: 1rem;
    }

    .location-card {
        background: var(--surface-color);
        border-radius: 15px;
        padding: 1.5rem;
        width: 100%;
        box-shadow: inset 4px 4px 8px var(--shadow-dark), inset -4px -4px 8px var(--shadow-light);
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInAndSlideUp 0.5s ease forwards;
    }

    .location-card:nth-of-type(2) {
        animation-delay: 0.2s;
    }

    .location-card:nth-of-type(3) {
        animation-delay: 0.4s;
    }

    @keyframes fadeInAndSlideUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .location-card h4 {
        margin-bottom: 0.5rem;
    }

    #distance-value {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--loader-color);
        display: inline-block;
    }

    .location-icon-container {
        text-align: center;
        margin-bottom: 1rem;
    }

    .location-icon-container .fas {
        font-size: 3rem;
        color: #4285F4;
        box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
        border-radius: 50%;
        padding: 1rem;
        background: var(--surface-color);
    }

    .modal-footer {
        margin-top: 1.5rem;
    }

    .modal-close-btn-mobile {
        display: none;
    }

    @media (max-width: 960px) {

        .header {
            flex-direction: row-reverse;
            justify-content: flex-end;
            padding: 1rem;
        }

        .header .theme-toggle {
            margin: 0;
        }

        .menu-toggle {
            display: flex;
        }

        .nav-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 50%;
            max-width: 15rem;
            height: 50%;
            flex-direction: column;
            align-items: flex-start;
            padding: 4rem 1.5rem;
            transform: translateX(-100%);
            transition: transform 0.4s ease-in-out;
            z-index: 999;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            box-shadow: 10px 0px 20px var(--shadow-dark);
            border-radius: 0 20px 20px 0;
            gap: 2rem;


        }

        .nav-menu.active {
            transform: translateX(0);
            transform: translateY(50%);
        }

        .nav-menu a {
            width: 100%;
            margin: 1rem 0;
            padding: 1rem;
        }



        .modal-close-btn-mobile,
        .nav-menu-close {
            color: var(--text-color);
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 10px;
            background: var(--surface-color);
            display: block;
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            outline: none;
            border: none;
            cursor: pointer;
        }

    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        

        .container {
            padding: .5rem;
        }

        #site_name {
            display: none;
            top: 8%;
            opacity: .1;
            position: absolute;
            font-size: 20px;
            color: var(--text-color);
            z-index: 4;
            letter-spacing: 2px;

        }

        .content-block {
            box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 2rem 1rem;
        }

        .my_para_block {
            color: var(--text-color);
            border-radius: 10px;
            font-size: 17px;
            box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: .4rem .8rem;
        }

        .modal-header {
            margin-bottom: 0;
        }

        .footer-content {
            flex-direction: column;
        }

        .contact-form {
            margin-top: 2rem;
        }

        .pricing-cards-container,
        .services-cards-container {
            overflow-x: auto;
            width: 100%;
            flex-wrap: nowrap;
            justify-content: flex-start;
        }

        .services-cards-container .service-card {
            min-width: 65vw;
        }

        .pricing-cards-container .pricing-card {
            min-width: 65vw;
        }
    }