/* GLOBAL & FONTS */
    html, body {
        width: 100%;
        overflow-x: hidden;
        scroll-behavior: smooth;
    }

    /* Fix accidental extra bottom space */
    section, footer {
        overflow: hidden;
    }

/* Landing page css */
    /*.hero-section {
        background: linear-gradient(180deg, #ebfafe 0%, #ffffff 100%);
        min-height: 90vh; /* Full screen feel */
        /*position: relative;*/
    }*/
    .text-highlight {
        color: #ff7000;
        position: relative;
        display: inline-block;
    }
    .text-highlight::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 8px;
        background: rgba(255, 193, 7, 0.3);
        z-index: -1;
    }   

    @media (max-width: 768px){
        h1 { font-size: 28px !important; }
        h2 { font-size: 24px !important; }
        p  { font-size: 15px !important; }
        .topic-card{padding: 20px !important;}
        .sticky-bottom-bar{ padding-bottom: env(safe-area-inset-bottom); }
    }


        /*LOADER CSS START*/
            #pageLoader {
                position: fixed;
                inset: 0;
                background: linear-gradient(145deg, #d4f9fd, #f1e4d7) !important;
                z-index: 99999;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .loader-spinner {
                width: 55px;
                height: 55px;
                border: 6px solid rgba(255,255,255,0.2);
                border-top: 6px solid #ff6f00;
                border-radius: 50%;
                animation: spin 1s linear infinite;
            }

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

        /*LOADER CSS END*/

    /* BUTTONS */
    .btn_prime {
        background: linear-gradient(90deg, #ff7100 0%, #d2772c 100%);
        border: none;
        color: #fff !important;
        border-radius: 50px;
        padding: 12px 30px;
        font-weight: 600;
        transition: transform 0.3s;
    }
    .btn_prime:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(210, 119, 44, 0.3);
    }

    /* PULSE ANIMATION for Buy Button */
    .pulse-btn {
        animation: pulse 2s infinite;
    }
    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(255, 113, 0, 0.7); }
        70% { box-shadow: 0 0 0 15px rgba(255, 113, 0, 0); }
        100% { box-shadow: 0 0 0 0 rgba(255, 113, 0, 0); }
    }

    /* COUNTDOWN TIMER */
    .countdown-box {
        display: flex;
    }
    .timer-item {
        background: #0d3749;
        color: #fff;
        padding: 10px 15px;
        border-radius: 8px;
        text-align: center;
        min-width: 70px;
    }
    .timer-item span {
        font-size: 1.5rem;
        font-weight: bold;
        display: block;
        line-height: 1;
    }
    .timer-item small {
        font-size: 0.7rem;
        text-transform: uppercase;
    }

    /* INDEX TOPIC CARDS */
    .topic-card {
        background: #fff;
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: 0.3s;
        height: 100%;
        border: 1px solid #eee;
    }
    .topic-card:hover {
        transform: translateY(-5px);
        border-color: #d2772c;


    }
    .icon-box {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 20px;
    }
    .bg-primary-soft { 
        background: linear-gradient(19deg, rgb(165 175 241) 0%, rgb(0 255 213) 100%);
        color: #fff!important;
     }
    

    /* STICKY BOTTOM BAR (Mobile) */
    .sticky-bottom-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #0d3749;
        padding: 10px 20px;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    }

    /* FLOATING IMAGE ANIMATION */
    .floating-img {
        animation: float 3s ease-in-out infinite;
    }
    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-15px); }
        100% { transform: translateY(0px); }
    }
/*LANDING PAGE CSS END*/


    /*CSS UTILITY START*/
    .txt_prime{
        color: rgb(13 55 73) !important;
    }
    .txt_prime2{
        color: #e67418!important;
    }
    .txt_second{
        color: rgb(255 255 255) !important;
    }
    /*CSS UTILITY END*/



    /*GOOGLE MARATHI FONT CSS*/
        .bakbak-one-regular {
          font-family: "Bakbak One", sans-serif;
          font-weight: 400;
          font-style: normal;
        }

        .mukta-extralight {
          font-family: "Mukta", sans-serif;
          font-weight: 200;
          font-style: normal;
        }

        .mukta-light {
          font-family: "Mukta", sans-serif;
          font-weight: 300;
          font-style: normal;
        }

        .mukta-regular {
          font-family: "Mukta", sans-serif;
          font-weight: 400;
          font-style: normal;
        }

        .mukta-medium {
          font-family: "Mukta", sans-serif;
          font-weight: 500;
          font-style: normal;
        }

        .mukta-semibold {
          font-family: "Mukta", sans-serif;
          font-weight: 600;
          font-style: normal;
        }

        .mukta-bold {
          font-family: "Mukta", sans-serif;
          font-weight: 700;
          font-style: normal;
        }

        .mukta-extrabold {
          font-family: "Mukta", sans-serif;
          font-weight: 800;
          font-style: normal;
        }
        
    /*GOOGLE MARATHI FONT CSS*/


    /*TOP BAR CSS START*/
        .top-bar{
            background: linear-gradient(90deg, rgb(255, 193, 7) 0%, rgb(255, 111, 0) 100%);
            padding: 9px 0px;
        }
        .top-bar span{
            color: rgb(13 55 73);
        }
        .top-bar .top_highlite{
            color: #fff!important;
        }
    /*TOP BAR CSS END*/


    /*HERO SECTION CSS START*/
            
        .hero-section{
            background: linear-gradient(145deg, #d4f9fd, #f1e4d7) !important;

        }

        .hero-section{
            min-height: auto;
            padding-top: 60px;
            padding-bottom: 60px;
        }
        .hero-section h1{
            font-size: 27px;
        }

        .hero-section p{
            font-size: 17px;
        }

        .banner_office_txt{
            color: #e80011;
            text-shadow: 1px 1px 3px #ffca00;
            font-size: 27px !important;
        }
        .banner_office_txt small{
            color: #0d3749;
            font-size: 18px !important;
        }

        .main-hero-img{
            width: 50%;
        }

            /*VIDEO BUTTON*/

            .btn-video-animated {
                background: linear-gradient(60deg, rgb(255, 193, 7) 0%, rgb(255, 111, 0) 100%);
                color: #fff;
                border: none;
                font-weight: 600;
                padding: 14px 28px;
                border-radius: 50px;
                box-shadow: 0 0 0 rgba(255, 111, 0, 0.7);
                animation: pulseGlow 2s infinite;
                transition: transform 0.3s ease;
            }

            .btn-video-animated i {
                font-size: 1.4rem;
            }

            .btn-video-animated:hover {
                color: #fff;
                transform: scale(1.05);
            }

            /* Infinite pulse animation */
            @keyframes pulseGlow {
                0% {
                    box-shadow: 0 0 0 0 rgba(255, 111, 0, 0.7);
                }
                70% {
                    box-shadow: 0 0 0 20px rgba(255, 111, 0, 0);
                }
                100% {
                    box-shadow: 0 0 0 0 rgba(255, 111, 0, 0);
                }
            } 
            .video-close-btn {
                position: absolute;
                top: -14px;
                right: -14px;
                width: 42px;
                height: 42px;
                border-radius: 50%;
                border: none;
                background: #fff;
                color: #000;
                font-size: 1.2rem;
                box-shadow: 0 5px 15px rgba(0,0,0,0.3);
                z-index: 10;
                transition: all 0.3s ease;
            }

            .video-close-btn:hover {
                background: #ff6f00;
                color: #fff;
                transform: scale(1.1) rotate(90deg);
            }

            /*VIDEO BUTTON*/

           ._df_book{
                background: linear-gradient(145deg, #fabb00, #03dafd) !important;
                height: 433px!important;
            }

            @media (max-width: 768px){
                ._df_book{
                    height: 420px !important;
                }
                .btn-video-animated {
                    color: #fff;
                    padding: 8px 30px;
                    font-size: 12px;
                }
                .hero-section {
                    padding: 0px 12px;
                }
                .hero-section h1 {
                    font-size: 23px !important;
                    padding-top: 7px;
                    line-height: 33px;
                }

                .hero-section p {
                    font-size: 18px !important;
                }

                .timer-item {
                    padding: 10px 15px;
                    min-width: 52px;
                }

                .btn_prime {
                    padding: 12px 30px;
                    font-size: 14px;
                }
                .top-bar {
                    font-size: 10px;
                }
            }

            @media (max-width: 480px){
                ._df_book{
                    height: 360px !important;
                }
            }
           
    /*HERO SECTION CSS END*/



    /*PAIN SECTION CSS START*/
        .pain-section{
            background-image: url('../images/book_bg.png');
            background-repeat: no-repeat;
            background-size: cover;
        }
        .pain-section h2{
            text-shadow: 2px 2px 3px #b44a04;
        }
       
        .pain-section .card{
           /*background: linear-gradient(60deg, rgb(255, 193, 7) 0%, rgb(255, 111, 0) 100%);*/
               background: linear-gradient(342deg, rgb(224 224 224) 0%, rgb(253 231 0) 100%)!important;
               padding: 0px !important;
        }
        .pain-section img{
            width: 100%;
        }

        .pain-section .card h4{
            color: #fff;
        }
        .pain-section .card p{
            color: #fff;
        }
        @media (max-width: 767px){
            .pain-section{
                background-attachment: scroll;
            }
            .pain-section h2{
                font-size: 30px !important;
            }
            
            .pain-section img {
                width: 100%;
            }
        }
       
    /*PAIN SECTION CSS END*/


    /*INDEX-SECTION CSS START*/

        .index-section{
            background: linear-gradient(344deg, rgb(255 255 255) 0%, rgb(252 238 196) 100%);
        }

        .index-section .topic-card{
            background: linear-gradient(135deg, #0d3749, #147f91);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            padding: 13px 50px;
            border: 2px solid #ff7901;
            color: #fff;
        }

        .index-section .topic-card h5{
            color: #ffe083;
            font-size: 21px;
        }

         @media (max-width: 767px){
            .topic-card{
                text-align: center!important;
            }

            .topic-card .icon-box {
                margin: 20px auto;
            }
        }
    /*INDEX-SECTION CSS END*/

    /*PORTAL OFFER CSS START*/
        .portal-offer{
            background: linear-gradient(145deg, #f7d674, #c3eef5);
            padding-bottom: 0px !important;
        }

        .portal-offer ul{
            list-style: none;
            margin-bottom: 0px!important;
        }
        .portal-offer ul li{
            list-style: none;
            margin-bottom: 10px!important;
        }
        ul li i{
            color: #ff7801 !important;
        }
        .top_highlite2{
            color: #106940;
            text-shadow: 1px 1px 1px #ffffff;
        }
        @media (max-width: 767px){
            .portal-offer ul {
                padding: 0px;
            }
            .portal-offer
        }
        
    /*PORTAL OFFER CSS END*/
    


    /*REGISTRATION FORM START*/
        div:where(.swal2-container).swal2-center>.swal2-popup {
            background: linear-gradient(145deg, #d4f9fd, #f1e4d7) !important;
        }
        .book_offerRegister_box {
            padding: 20px 17px;
            background: linear-gradient(145deg, #d4f9fd, #f1e4d7) !important;
            position: relative;
        }
        .home_back_btn{
           position: absolute;
            top: 0px;
            left: 0px;
            background: linear-gradient(135deg, #0d3749, #147f91);
            color: #fff;
            border-radius: 0px;
            border: none!important;
            box-shadow: none!important;
            outline: none!important;
            transition: 0.5s;
        }

        .home_back_btn:hover{
            background: linear-gradient(90deg, rgb(255, 193, 7) 0%, rgb(255, 111, 0) 100%);
        }

        .book_offerRegister_box label{
            font-size: 16px;
        }
    /*REGISTRATION FORM END*/

    /*FAQ CSS START*/
    .faq-section{
        background: linear-gradient(344deg, rgb(255 255 255) 0%, rgb(252 238 196) 100%);
    }
    .accordion-body {
        background: linear-gradient(145deg, #e7f7f9, #f1e8e0) !important;
        color: #115a6c;
        
    }
    .faq-section .accordion-button{
        font-size: 18px!important;
    }
    /*FAQ CSS END*/


    /*FOOTER CSS START*/
        .footer{
            background: linear-gradient(135deg, #0d3749, #147f91);   
        }
        .footer a{
            color: #fff!important;
            text-decoration: none!important;
        }
    /*FOOTER CSS END*/