* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }
        
        /* Ensure all text elements use Hindi font - but NOT icons */
        h1, h2, h3, h4, h5, h6,
        p, span, div, a, li, ul, ol,
        button, input, textarea, select,
        label, td, th, table,
        .navbar, .navbar-brand, .nav-link,
        .btn, .card, .accordion-button,
        .accordion-body {
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        /* Bootstrap Icons - Keep original font */
        [class^="bi-"],
        [class*=" bi-"],
        .bi,
        i[class*="bi-"],
        i.bi {
            font-family: "bootstrap-icons" !important;
            font-style: normal;
            font-weight: normal !important;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            vertical-align: -.125em;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        /* Bootstrap overrides */
        .navbar-brand,
        .nav-link,
        .btn,
        .card-title,
        .card-text,
        .accordion-button,
        .accordion-body {
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        /* Section-specific font application */
        .promo-section,
        .test-structure-section,
        .how-to-section,
        .pricing-section,
        .faq-section,
        .footer-section,
        .hero-section,
        .promo-header,
        .promo-main-title,
        .promo-sub-title,
        .promo-tagline,
        .feature-title,
        .feature-description,
        .structure-title,
        .structure-tagline,
        .step-title,
        .step-description,
        .pricing-title,
        .pricing-tagline,
        .faq-title,
        .faq-subtitle,
        .footer-logo,
        .footer-description,
        .footer-links a,
        .contact-info li {
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        /* Top Promotional Bar - Solid Blue */
        .top-promo-bar {
            background:#2464ec;
            color: white;
            padding: 12px 0;
            font-size: 14px;
            border-bottom: none;
        }
        
        .top-promo-bar .container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .top-promo-bar a {
            color: #e0f2fe;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            white-space: nowrap;
            font-weight: 500;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .top-promo-bar a:hover {
            color: white;
            transform: translateY(-1px);
        }
        
        .top-promo-bar i {
            font-size: 18px;
            color: #e0f2fe;
            font-family: "bootstrap-icons" !important;
        }
        
        .top-promo-bar a:hover i {
            color: white;
        }
        
        /* Navigation Bar */
        .navbar {
            background: white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
            padding: 12px 0;
        }
        
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .navbar-brand {
            font-size: 26px;
            font-weight: 800;
            color: #dc2626 !important;
            text-decoration: none;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand img {
            height: 45px;
            width: auto;
            object-fit: contain;
        }
        
        .navbar-nav {
            gap: 5px;
        }
        
        .navbar-nav .nav-link {
            color: #1f2937 !important;
            font-weight: 500;
            font-size: 15px;
            padding: 8px 12px !important;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: #2464ec !important;
        }
        
        .navbar-actions {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        
        .btn-enroll {
            background: #2464ec;
            color: white;
            border: none;
            padding: 10px 22px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
            white-space: nowrap;
        }
        
        .btn-enroll:hover {
            background: #2563eb;
            color: white;
            transform: translateY(-1px);
        }
        
        .btn-enroll-mobile {
            display: none;
            margin-left: auto;
            margin-right: 10px;
        }
        
        .btn-enroll-desktop {
            display: block;
        }
        
        .btn-login {
            background: white;
            color: #2464ec;
            border: 2px solid #2464ec;
            padding: 8px 20px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
            white-space: nowrap;
        }
        
        .btn-login:hover {
            background: #2464ec;
            color: white;
        }
        
        /* Hero Section */
		.hero-section {
			background: linear-gradient(180deg, #bfdbfe 0%, #dbeafe 30%, #e0f2fe 60%, #f0f9ff 100%);
			min-height: 100%;
			position: relative;
			overflow: hidden;
			display: flex;
			align-items: center;
			padding: 20px 0 20px;
		}
        
        /* Background Pattern - Network diagrams and numbers */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url(../images/hero-bg.jpg);
			background-position:center;
			background-size:100% 100%;
			background-attachment: fixed;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 80px 0;
        }
        
        /*.csat-title {
            font-size: 140px;
            font-weight: 900;
            background: linear-gradient(180deg, #2563eb 0%, #2464ec 50%, #2563eb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            line-height: 1.1;
            letter-spacing: -2px;
            text-shadow: 
                2px 2px 0 white,
                -2px -2px 0 white,
                2px -2px 0 white,
                -2px 2px 0 white,
                0 2px 0 white,
                0 -2px 0 white,
                2px 0 0 white,
                -2px 0 0 white,
                4px 4px 8px rgba(37, 99, 235, 0.4);
            filter: drop-shadow(0 4px 6px rgba(37, 99, 235, 0.3));
        }*/
		
.csat-title {
    font-size: 140px;
    font-weight: 900;
    /* background: linear-gradient(180deg, #2563eb 0%, #2464ec 50%, #2563eb 100%); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
    margin-bottom: 15px;
    color: #2464ec;
    line-height: 1.1;
    letter-spacing: -2px;
    text-shadow: 2px 2px 0 #2464ec, -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white, 0 2px 0 white, 0 -2px 0 white, 2px 0 0 white, -2px 0 0 white, 4px 4px 8px rgba(37, 99, 235, 0.4);
    filter: drop-shadow(0 4px 6px rgba(37, 99, 235, 0.3));
}
        
        .hindi-text-1 {
            font-size: 68px;
            color: #1f2937;
            font-weight: 600;
			line-height: 70px;
            margin-bottom: 0;
            letter-spacing: 0.5px;
            font-family: 'Noto Sans Devanagari', sans-serif;
        }
        
        .hindi-text-2 {
            font-size: 68px;
            color: #2563eb;
            font-weight: 700;
            margin-bottom: 0;
            letter-spacing: 0.5px;
            font-family: 'Noto Sans Devanagari', sans-serif;
        }
        
        .btn-cta {
            background:#2464ec;
            color: white;
            border: none;
            padding: 16px 40px;
            border-radius: 6px;
            font-size: 19px;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(59, 130, 246, 0.45);
            color: white;
            background: #2563eb;
        }
        
        .btn-cta i {
            font-size: 18px;
            font-family: "bootstrap-icons" !important;
        }
        
        .btn i,
        .btn-enroll i,
        .btn-login i,
        .enroll-btn i {
            font-family: "bootstrap-icons" !important;
        }
        
        /* Decorative Icons - 3D Style */
         
        /* Responsive Design */
        @media (max-width: 992px) {
            .csat-title {
                font-size: 100px;
            }
            
            .hindi-text-1 {
                font-size: 32px;
            }
            
            .hindi-text-2 {
                font-size: 36px;
            }
            
            .decorative-icon {
                font-size: 60px !important;
            }
        }
        
        @media (max-width: 768px) {
            .csat-title {
                font-size: 70px;
            }
            
            .hindi-text-1 {
                font-size: 26px;
            }
            
            .hindi-text-2 {
                font-size: 30px;
            }
            
            .decorative-icon {
                display: none;
            }
            
            .top-promo-bar {
                font-size: 12px;
                padding: 10px 0;
            }
            
            .top-promo-bar .container {
                gap: 15px;
            }
            
            .top-promo-bar a {
                font-size: 12px;
            }
            
            .top-promo-bar i {
                font-size: 16px;
            }
            
            .navbar-nav {
                text-align: center;
                margin-top: 15px;
            }
            
            .navbar-actions {
                flex-direction: column;
                width: 100%;
                margin-top: 15px;
            }
            
            .btn-enroll-desktop {
                display: none;
            }
            
            .btn-enroll-mobile {
                display: block;
            }
            
            .btn-login {
                width: 100%;
            }
            
            .btn-cta {
                padding: 14px 35px;
                font-size: 17px;
            }
        }
        
        @media (max-width: 576px) {
            .csat-title {
                font-size: 55px;
            }
            
            .hindi-text-1 {
                font-size: 22px;
            }
            
            .hindi-text-2 {
                font-size: 26px;
            }
            
            .btn-cta {
                padding: 12px 30px;
                font-size: 16px;
            }
            
            .navbar-brand {
                font-size: 20px;
            }
            
            .navbar-brand img {
                height: 35px;
            }
        }
        
        /* Second Section - Promotional Section */
        .promo-section {
            background: white;
            padding: 80px 0;
        }
        
        .promo-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .promo-main-title {
            font-size: 26px;
            font-weight: 700;
            color: #2464ec;
            margin-bottom: 8px;
            letter-spacing: 0.3px;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .promo-sub-title {
            font-size: 48px;
            font-weight: 800;
            color: #000000;
            margin-bottom:0px;
            letter-spacing: -0.5px;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .promo-tagline {
            font-size: 32px;
			font-weight:800;
            color: #000000;
            line-height: 1.6;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .promo-tagline .blue-text {
            color: #2464ec;
            font-weight: 600;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        /* Feature Blocks */
        .feature-blocks {
            position: relative;
            padding: 40px 0;
        }
        
.connecting-line {
    position: absolute;
    top: 118px;
    left: 0;
    right: 0;
    height: 20px;
    background: #2464ec;
    z-index: 0;
    margin-top: 0;
}
        
        .feature-block {
            background: white;
            border: 1px solid #1e40af;
            border-radius: 12px;
            padding: 35px 25px 25px;
            text-align: center;
            position: relative;
            z-index: 1;
            height: 100%;
            transition: all 0.3s;
            box-shadow: 0px 1px 15px rgb(30 64 175 / 55%);
        }
        
        .feature-block:hover {
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
            transform: translateY(-5px);
        }
        
        .feature-icon-container {
            position: absolute;
            top: -32px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 75px;
            background: #1e40af;
            border-radius: 10px 10px 0px 0px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 9px rgb(30 64 175 / 74%);
            z-index: 3;
        }
        
        .feature-icon {
            font-size: 38px;
            color: #bfdbfe;
            font-family: "bootstrap-icons" !important;
        }
        
        .feature-icon-container i {
            font-family: "bootstrap-icons" !important;
        }
        
        .feature-title {
            font-size: 19px;
            font-weight: 700;
            color: #000000;
            margin-top: 25px;
            margin-bottom: 12px;
            line-height: 1.4;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .feature-block:last-child .feature-title {
            font-size: 17px;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .feature-description {
            font-size: 14px;
            color: #000000;
            line-height: 1.6;
            margin-bottom: 0;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .feature-sub-description {
            font-size: 13px;
            color: #6b7280;
            margin-top: 8px;
            display: block;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        /* Responsive for Promo Section */
        @media (max-width: 992px) {
            .promo-main-title {
                font-size: 26px;
            }
            
            .promo-sub-title {
                font-size: 42px;
            }
            
            .promo-tagline {
                font-size: 18px;
            }
            
            .connecting-line {
                display: none;
            }
            
            .feature-block {
                margin-bottom: 50px;
            }
        }
        
        @media (max-width: 768px) {
            .promo-section {
                padding: 60px 0;
            }
            
            .promo-main-title {
                font-size: 22px;
            }
            
            .promo-sub-title {
                font-size: 36px;
            }
            
            .promo-tagline {
                font-size: 16px;
            }
            
            .promo-header {
                margin-bottom: 40px;
            }
        }
        
        @media (max-width: 576px) {
            .promo-main-title {
                font-size: 20px;
            }
            
            .promo-sub-title {
                font-size: 28px;
            }
            
            .promo-tagline {
                font-size: 14px;
            }
            
            .feature-title {
                font-size: 18px;
            }
            
            .feature-description {
                font-size: 14px;
            }
        }
        
        /* Third Section - Test Structure */
        .test-structure-section {
            background: white;
            padding: 80px 0;
        }
        
        .test-structure-pill {
            display: inline-block;
            background: #2464ec;
            color: white;
            padding: 8px 24px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 18px;
            box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .structure-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .structure-phases {
            font-size: 44px;
            font-weight: 800;
            color: #2464ec;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .structure-title {
            font-size: 56px;
            font-weight: 800;
            color: #000000;
            margin-bottom:0px;
            letter-spacing: -0.5px;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .structure-tagline {
            font-size: 32px;
			font-weight:800;
            color: #000000;
            line-height: 1.6;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        /* Phase Flow Diagram */
        .phase-flow {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 60px 0;
            padding: 40px 0;
        }
        
        .phase-connector {
            flex: 1;
            height: 2px;
            background: #d1d5db;
            max-width: 200px;
            position: relative;
        }
        
        .phase-circle {
            width: 75px;
            height: 75px;
            border-radius: 50%;
            background: #2464ec;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            font-weight: 700;
            position: relative;
            z-index: 2;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .phase-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }
        
        .phase-active-badge {
            position: absolute;
            top: -22px;
			z-index: 11;
            background: #10b981;
            color: white;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 11px;
            font-weight: 600;
            white-space: nowrap;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .phase-label {
            margin-top: 12px;
            font-size: 15px;
            font-weight: 500;
            color: #000000;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        /* Information Cards */
        .info-cards {
            margin-top: 60px;
        }
        
        .info-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 30px 20px;
            text-align: center;
            height: 100%;
            transition: all 0.3s;
        }
        
        .info-card:hover {
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }
        
        .info-icon {
            width: 70px;
            height: 70px;
            background: #2464ec;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 34px;
            font-family: "bootstrap-icons" !important;
        }
        
        .info-icon i {
            font-family: "bootstrap-icons" !important;
        }
        
        .info-title {
            font-size: 17px;
            font-weight: 700;
            color: #000000;
            margin-bottom: 8px;
            line-height: 1.4;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .info-title.multi-line {
            font-size: 15px;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .info-description {
            font-size: 13px;
            color: #6b7280;
            margin: 0;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        /* Responsive for Test Structure */
        @media (max-width: 992px) {
            .structure-title {
                font-size: 48px;
            }
            
            .structure-phases {
                font-size: 28px;
            }
            
            .phase-circle {
                width: 70px;
                height: 70px;
                font-size: 32px;
            }
            
            .phase-connector {
                max-width: 150px;
            }
        }
        
        @media (max-width: 768px) {
            .test-structure-section {
                padding: 60px 0;
            }
            
            .structure-title {
                font-size: 40px;
            }
            
            .structure-phases {
                font-size: 24px;
            }
            
            .structure-tagline {
                font-size: 16px;
            }
            
            .phase-flow {
                margin: 40px 0;
                padding: 30px 0;
            }
            
            .phase-circle {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }
            
            .phase-connector {
                max-width: 80px;
            }
            
            .phase-active-badge {
                top: -30px;
                font-size: 11px;
                padding: 3px 10px;
            }
            
            .info-cards {
                margin-top: 40px;
            }
        }
        
        @media (max-width: 576px) {
            .structure-title {
                font-size: 28px;
            }
            
            .structure-phases {
                font-size: 18px;
            }
            
            .structure-tagline {
                font-size: 14px;
            }
            
            .phase-connector {
                max-width: 50px;
            }
            
            .phase-circle {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
            
            .phase-label {
                font-size: 14px;
            }
            
            .info-title {
                font-size: 16px;
            }
            
            .info-title.multi-line {
                font-size: 14px;
            }
        }
        
        /* Fourth Section - How to Attempt Test */
        .how-to-section {
            background: white;
            padding: 80px 0;
        }
        
        .how-to-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .how-to-title {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1.2;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .how-to-title .blue-text {
            color: #2464ec;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .how-to-title .black-text {
            color: #1f2937;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .how-to-subtitle {
            font-size: 32px;
            color: #1f2937;
			font-weight:600;
            line-height: 1.6;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        /* Video Player */
        .video-container {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            background: #f3f4f6;
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .video-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #e0f2fe 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            opacity: 0.9;
        }
        
        .video-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.05) 100%);
            border-radius: 16px;
        }
        
        .play-button {
            width: 80px;
            height: 80px;
            background: #2464ec;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
            z-index: 2;
        }
        
        .play-button:hover {
            background: #2563eb;
            transform: scale(1.1);
        }
        
        .play-button i {
            margin-left: 4px;
            font-family: "bootstrap-icons" !important;
        }
        
        .play-button {
            font-family: "bootstrap-icons" !important;
        }
        
        .video-caption {
            text-align: center;
            font-size: 16px;
            color: #1f2937;
            font-weight: 500;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        /* Steps Container */
        .steps-container {
            position: relative;
        }
        
        .step-box {
            background: url(../images/bg1.png) repeat center center;
            border-radius: 20px;background-size: 100% 100%;
            padding: 20px;
			margin: 0 50px;
            position: relative;
            transition: all 0.3s;
			text-align:center;
        }
        
        .step-box:hover {
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
            transform: translateX(5px);
        }
        
        .step-number {
            position: absolute;
            top: -15px;
            left:0px;
			background: url(../images/bg2.png) repeat center center;
			background-size: 100% 100%;
            color: white;
            padding:3px 25px;
            border-radius: 15px 15px 15px 0px;
            font-size: 16px;
            font-weight: 600;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .step-title {
			font-size: 24px;
			font-weight: 800;
			color: #2464ec;
			margin-top: 5px;
			margin-bottom: 0;
			letter-spacing: -1px;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .step-description {
            font-size: 15px;
            color: #1f2937;
            line-height: 1.5;
            margin: 0;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .step-arrow {
            text-align: center;
            font-size: 24px;
            color: #2464ec;
            margin: 5px 0;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .step-arrow i {
            font-family: "bootstrap-icons" !important;
        }
        
        .step-arrow:last-child {
            display: none;
        }
        
        /* Responsive for How To Section */
        @media (max-width: 992px) {
            .how-to-title {
                font-size: 42px;
            }
            
            .how-to-subtitle {
                font-size: 16px;
            }
            
            .play-button {
                width: 70px;
                height: 70px;
                font-size: 28px;
            }
        }
        
        @media (max-width: 768px) {
            .how-to-section {
                padding: 10px 0;
            }
            
            .how-to-header {
                margin-bottom: 40px;
            }
            
            .how-to-title {
                font-size: 36px;
            }
            
            .how-to-subtitle {
                font-size: 15px;
            }
            
            .video-container {
                margin-bottom: 30px;
            }
            
            .play-button {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
            
            .step-box {
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .how-to-title {
                font-size: 24px;
            }
            
            .how-to-subtitle {
                font-size: 14px;
            }
            
            .step-title {
                font-size: 16px;
            }
            
            .step-description {
                font-size: 14px;
            }
        }
        
        /* Fifth Section - Pricing Plans */
        .pricing-section {
            background: white;
            padding: 80px 0;
        }
        
        .pricing-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .pricing-title {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 8px;
            margin-top: 0;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
            line-height: 1.2;
        }
        
        .pricing-title .title-part1 {
            color: #1f2937;
        }
        
        .pricing-title .title-part2 {
            color: #1e40af;
        }
        
        .pricing-tagline {
			font-size: 38px;
			font-style: italic;
			font-weight: 800;
            margin-top: 8px;
            margin-bottom: 0;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .tagline-quote {
            color: #1f2937;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .tagline-text-black {
            color: #1f2937;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .tagline-text-blue {
            color: #2464ec;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .pricing-cards {
            margin-top: 50px;
            position: relative;
        }
        
        @media (min-width: 992px) {
            .pricing-cards .row {
                position: relative;
            }
            
            .pricing-cards .row > div {
                position: relative;
            }
            
            .pricing-cards .row > div:nth-child(1)::after {
                content: '';
                position: absolute;
                top: 0;
                right:0;
                width: 2px;
                height: 100%;
                background: linear-gradient(to bottom, transparent 0%, #2464ec 10%, #2464ec 90%, transparent 100%);
                z-index: 2;
                pointer-events: none;
            }
            
            .pricing-cards .row > div:nth-child(2)::after {
                content: '';
                position: absolute;
                top: 0;
                right:0px;
                width: 2px;
                height: 100%;
                background: linear-gradient(to bottom, transparent 0%, #2464ec 10%, #2464ec 90%, transparent 100%);
                z-index: 2;
                pointer-events: none;
            }
        }
        
        .pricing-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding:20px 18px;
            text-align: center;
            margin: 0 20px;
            height: 100%;
            position: relative;
            transition: all 0.3s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        
        .pricing-card:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            transform: translateY(-5px);
        }
        
        .pricing-card.featured {
            background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%);
            border: none;
            color: white;
            box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
        }
        
        .best-value-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #fbbf24;
            color: #1f2937;
            padding: 8px 24px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
            white-space: nowrap;
            z-index: 10;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .card-header {
            margin-bottom: 6px;
            position: relative;
            padding-top: 8px;
        }
        
        .card-title {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 5px;
            line-height: 1.3;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .card-title-csat {
            color: #2464ec;
            display: block;margin-bottom: 0px;
        }
        
        .card-title-name {
            color: #1f2937;
            display: block;
			line-height: 16px;
    		font-size: 18px;
        }
        
        .pricing-card.featured .card-title-csat,
        .pricing-card.featured .card-title-name {
            color: white;
        }
        
        .card-badges {
            display: flex;
			justify-content: center;
            gap: 2px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        
        .phase-badge {
            background: #2464ec;
            color: white;
            padding:3px 15px;
            border-radius:0px;
            font-size: 11px;
            font-weight: 600;
			margin:0;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .pricing-card.featured .phase-badge {
            background: rgba(255, 255, 255, 0.25);
            color: white;
        }
        
        .medium-badge {
            position: absolute;
            top: 0;
            right: -18px;
            background: #1e40af;
            color: white;
            padding: 2px 8px;
            border-radius: 5px 0px 0px 5px;
            font-size: 11px;
            font-weight: 600;
            z-index: 5;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .pricing-card.featured .medium-badge {
            background: rgba(30, 64, 175, 0.9);
        }
        
        .pricing-info {
            margin-bottom: 0px;
        }
        
        .original-price {
            font-size: 15px;
            color: #6b7280;
            text-decoration: line-through;
            margin-bottom: 3px;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .pricing-card.featured .original-price {
            color: rgba(255, 255, 255, 0.75);
        }
        
        .save-badge {
            display: inline-block;
            background: #2464ec;
            color: white;
            padding: 3px 11px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 12px;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .pricing-card.featured .save-badge {
            background: rgba(255, 255, 255, 0.25);
            color: white;
        }
        
        .current-price {
            font-size: 38px;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 0px;
            line-height: 1;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .pricing-card.featured .current-price {
            color: white;
        }
        
        .cashback-text {
            font-size: 14px;
            color: #2464ec;
            font-weight: 500;
            margin-top: 4px;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .pricing-card.featured .cashback-text {
            color: white;
        }
        
        .features-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
        
        .features-list li {
            padding: 6px 0;
            font-size: 13px;
            color: #1f2937;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            line-height: 1.5;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .pricing-card.featured .features-list li {
            color: white;
        }
        
        .feature-icon-check {
            color: #10b981;
            font-size: 16px;
            flex-shrink: 0;
            margin-top: 3px;
            font-family: "bootstrap-icons" !important;
        }
        
        .feature-icon-check i {
            font-family: "bootstrap-icons" !important;
        }
        
        .feature-icon-cross {
            color: #ef4444;
            font-size: 16px;
            flex-shrink: 0;
            margin-top: 3px;
            font-family: "bootstrap-icons" !important;
        }
        
        .feature-icon-cross i {
            font-family: "bootstrap-icons" !important;
        }
        
        .pricing-card.featured .feature-icon-cross {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .enroll-btn {
            width: 100%;
            background: white;
            color: #2464ec;
            border: 2px solid #2464ec;
            padding: 14px 24px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s;
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .enroll-btn:hover {
            background: #2464ec;
            color: white;
        }
        
        .enroll-btn i {
            font-family: "bootstrap-icons" !important;
            font-size: 16px;
        }
        
        .pricing-card.featured .enroll-btn {
            background: #fbbf24;
            color: #1e40af;
            border: 2px solid #fbbf24;
        }
        
        .pricing-card.featured .enroll-btn:hover {
            background: #f59e0b;
            border-color: #f59e0b;
            color: #1e3a8a;
        }
        
        .disclaimer {
            font-size: 10px;
            color: #6b7280;
            margin-top: 15px;
            text-align: center;
            line-height: 1.5;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .pricing-card.featured .disclaimer {
            color: rgba(255, 255, 255, 0.85);
        }
        
        /* Responsive for Pricing Section */
        @media (max-width: 992px) {
            .pricing-title {
                font-size: 40px;
            }
            
            .pricing-tagline {
                font-size: 15px;
            }
            
            .card-title {
                font-size: 24px;
            }
            
            .card-title-csat {
                font-size: 24px;
            }
            
            .card-title-name {
                font-size: 20px;
            }
            
            .current-price {
                font-size: 34px;
            }
        }
        
        @media (max-width: 768px) {
            .pricing-section {
                padding: 60px 0;
            }
            
            .pricing-header {
                margin-bottom: 40px;
            }
            
            .pricing-title {
                font-size: 32px;
            }
            
            .pricing-tagline {
                font-size: 14px;
            }
            
            .pricing-card {
                margin-bottom: 30px;
            }
            
            .card-title {
                font-size: 22px;
            }
            
            .card-title-csat {
                font-size: 22px;
            }
            
            .card-title-name {
                font-size: 18px;
            }
            
            .current-price {
                font-size: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .pricing-title {
                font-size: 28px;
            }
            
            .pricing-tagline {
                font-size: 26px;
            }
            
            .card-title {
                font-size: 20px;
            }
            
            .card-title-csat {
                font-size: 20px;
            }
            
            .card-title-name {
                font-size: 16px;
            }
            
            .card-title-full {
                font-size: 18px;
            }
            
            .current-price {
                font-size: 28px;
            }
            
            .features-list li {
                font-size: 12px;
            }
            
            .enroll-btn {
                font-size: 14px;
                padding: 12px 20px;
            }
        }
        
        /* Sixth Section - FAQ */
        .faq-section {
            background: white;
            padding: 80px 0;
        }
        
        .faq-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .faq-title {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1.2;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .faq-title .main-text {
            color: #1e40af;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .faq-title .faq-text {
            color: #2464ec;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .faq-subtitle {
            font-size: 32px;
            color: #000;
            margin-top: 10px;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .faq-accordion {
            max-width: 100%;
            margin: 0 auto;
        }
        
        .accordion-item {
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: visible;
            background: white;
        }
        
        .accordion-item .accordion-collapse {
            overflow: hidden;
        }
        
        .accordion-item:last-child {
            margin-bottom: 0;
        }
        
        .accordion-button {
            background: white;
            color: #1f2937;
            font-size: 18px;
            font-weight: 700;
            padding: 20px 60px 20px 25px;
            border: 1px solid #999;
			border-radius: 15px;
             position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            overflow: visible;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
			box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }
        
        .accordion-button:not(.collapsed) {
            background: white;
            color: #1f2937;
            box-shadow: none;
        }
        
        .accordion-button:focus {
            border-color: transparent;
            box-shadow: none;
        }
        
        .accordion-button::after {
            background-image:  url(../images/right.svg);
            width: 1.25rem;
            height: 1.25rem;
            transition: transform 0.3s;
            margin-left: auto;
            flex-shrink: 0;
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }
        
        .accordion-button:not(.collapsed)::after {
            background-image: url(../images/top.svg); background-repeat:no-repeat;
            transform: translateY(-50%) rotate(180deg);
        }
        
        .accordion-body {
            padding: 20px 25px;
            color: #4b5563;
            font-size: 15px;
            line-height: 1.7;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .faq-formula {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 15px 0;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .faq-formula-line {
            margin: 2px 0;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .faq-formula-divider {
            width: 100px;
            height: 1px;
            background: #1f2937;
            margin: 5px 0;
        }
        
        .faq-or {
            text-align: center;
            margin: 20px 0;
            font-weight: 600;
            color: #6b7280;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        /* Responsive for FAQ Section */
        @media (max-width: 992px) {
            .faq-title {
                font-size: 42px;
            }
            
            .faq-subtitle {
                font-size: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .faq-section {
                padding: 60px 0;
            }
            
            .faq-header {
                margin-bottom: 40px;
            }
            
            .faq-title {
                font-size: 36px;
            }
            
            .faq-subtitle {
                font-size: 14px;
            }
            
            .accordion-button {
                font-size: 16px;
                padding: 18px 55px 18px 20px;
            }
            
            .accordion-button::after {
                right: 20px;
            }
            
            .accordion-body {
                font-size: 14px;
                padding: 18px 20px;
            }
        }
        
        @media (max-width: 576px) {
            .faq-title {
                font-size: 28px;
            }
            
            .accordion-button {
                font-size: 15px;
                padding: 15px 50px 15px 18px;
            }
            
            .accordion-button::after {
                right: 18px;
            }
            
            .accordion-body {
                font-size: 13px;
                padding: 15px 18px;
            }
        }
        
        /* Seventh Section - Footer */
        .footer-top-bar {
            background: white;
            padding: 0;
            border-top: 1px solid #e5e7eb;
        }
        
        .footer-top-bar-content {
            display: flex;
            align-items: center;
            width: 100%;
            max-width: 100%;
            margin: 0;
        }
        
        .other-websites-label-box {
            background: #1e40af;
            padding: 20px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
			text-align: center;
            min-width: 170px;
        }
        
        .other-websites-label-line1 {
            color: white;
            font-weight: 700;
            font-size: 16px;
            line-height: 1.2;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .other-websites-label-line2 {
            color: white;
            font-weight: 700;
            font-size: 16px;
            line-height: 1.2;
            margin-top: 2px;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .other-websites-logos-wrapper {
            flex: 1;
            background: white;
            padding:10px 10px;
            overflow: hidden;
            position: relative;
        }
        
        .other-websites-logos {
            display: flex;
            align-items: center;
			justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            width: 100%;
        }
        
        /* Desktop: Normal display */
        @media (min-width: 769px) {
            .other-websites-logos {
                flex-wrap: wrap;
                animation: none;
            }
        }
        
        /* Mobile: Slider with autoplay */
        @media (max-width: 768px) {
            .other-websites-logos-wrapper {
                padding: 15px 0;
                overflow: hidden;
                position: relative;
            }
            
            .other-websites-logos {
                flex-wrap: nowrap;
                gap: 30px;
                animation: slideLogos 25s linear infinite;
                width: max-content;
                will-change: transform;
            }
            
            .other-websites-logos:hover {
                animation-play-state: paused;
            }
            
            .website-link {
                flex-shrink: 0;
            }
        }
        
        @keyframes slideLogos {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        .website-link {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .website-link img {
            height: 45px;
            width: auto;
            object-fit: contain;
            display: block;
        }
        
        .website-link.pd img {
            height: 50px;
        }
        
        .website-link.test-range img {
            height: 48px;
        }
        
        .website-link.ebooks img {
            height: 42px;
        }
        
        .website-link.pd-mag img {
            height: 45px;
        }
        
        .website-link.upkar img {
            height: 48px;
        }
        
        .website-link.ta-white img {
            height: 45px;
        }
        
        .website-link:hover {
            opacity: 0.8;
            transform: translateY(-2px);
        }
        
        .main-footer {
            background: #f9fafb;
            padding: 50px 0 30px;
            border-top: 1px solid #e5e7eb;
        }
        
        .footer-column {
            margin-bottom: 30px;
        }
        
        .footer-logo {
            font-size: 32px;
            font-weight: 800;
            color: #dc2626;
            margin-bottom: 20px;
        }
        
        .footer-logo img {
            height: 55px;
            width: auto;
            object-fit: contain;
        }
        
        .footer-description {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.7;
            margin-bottom: 25px;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .social-icons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgb(234 164 81 / 21%);
   			color: #e31e24;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s;
            font-family: "bootstrap-icons" !important;
        }
        
        .social-icon i {
            font-family: "bootstrap-icons" !important;
        }
        
        .social-icon:hover {
            background: #ea580c;
            transform: translateY(-2px);
            color: white;
        }
        
        .footer-column-title {
            font-size: 16px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 18px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #6b7280;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
            display: inline-block;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .footer-links a:hover {
            color: #dc2626;
            text-decoration: underline;
        }
        
        .contact-info {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .contact-info li {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: #6b7280;
            line-height: 1.6;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .contact-icon {
            color: #dc2626;
            font-size: 16px;
            flex-shrink: 0;
            margin-top: 3px;
            font-family: "bootstrap-icons" !important;
        }
        
        .contact-icon i {
            font-family: "bootstrap-icons" !important;
        }
        
        .contact-info a {
            color: #6b7280;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-info a:hover {
            color: #dc2626;
            text-decoration: underline;
        }
        
        .footer-bottom {
            background: #1f2937;
            padding: 20px 0;
            border-top: 1px solid #374151;
        }
        
        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .copyright-text {
            font-size: 13px;
            color: #9ca3af;
            margin: 0;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        .developer-text {
            font-size: 13px;
            color: #9ca3af;
            margin: 0;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
            margin: 0;
        }
        
        /* Floating Action Buttons */
        .floating-buttons {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .floating-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            color: white;
            font-size: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            font-family: "bootstrap-icons" !important;
        }
        
        .floating-btn i {
            font-family: "bootstrap-icons" !important;
        }
        
        .floating-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0,0,0,0.2);
        }
        
        .floating-btn.whatsapp {
            background: #25d366;
        }
        
        .floating-btn.whatsapp:hover {
            background: #20ba5a;
        }
        
        .floating-btn.scroll-top {
            background: #dc2626;
        }
        
        .floating-btn.scroll-top:hover {
            background: #b91c1c;
        }
        
        .floating-btn.chat {
            background: #10b981;
        }
        
        .floating-btn.chat:hover {
            background: #059669;
        }
        
        /* Responsive for Footer */
        @media (max-width: 992px) {
            .main-footer {
                padding: 50px 0 25px;
            }
            
            .footer-column {
                margin-bottom: 10px;
            }
        }
        
        @media (max-width: 768px) {
            .footer-top-bar-content {
                flex-direction: column;
            }
            
            .other-websites-label-box {
                width: 100%;
                padding: 15px 20px;
                text-align: center;
            }
            
            .other-websites-label-line1,
            .other-websites-label-line2 {
                font-size: 14px;
            }
            
            .other-websites-logos-wrapper {
                padding: 15px 0;
                width: 100%;
            }
            
            .other-websites-logos {
                padding: 0;
                gap: 30px;
                justify-content: flex-start;
            }
            
            .website-link img {
                height: 35px;
            }
            
            .website-link.pd img {
                height: 40px;
            }
            
            .website-link.test-range img {
                height: 38px;
            }
            
            .website-link.ebooks img {
                height: 32px;
            }
            
            .website-link.pd-mag img {
                height: 35px;
            }
            
            .website-link.upkar img {
                height: 38px;
            }
            
            .website-link.ta-white img {
                height: 35px;
            }
            
            .footer-logo img {
                height: 50px;
            }
            
            .main-footer {
                padding: 40px 0 20px;
            }
            
            .footer-logo {
                font-size: 28px;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }
            
            .floating-buttons {
                right: 15px;
                bottom: 15px;
            }
            
            .floating-btn {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .footer-column-title {
                font-size: 16px;
            }
            
            .footer-links a,
            .contact-info li {
                font-size: 13px;color: #000;
            }
        }
        
        /* Enroll Now Modal Styles - Bootstrap Based */
        #enrollModal .modal-dialog {
            max-width: 380px;
        }
        
        #enrollModal .modal-header {
            border-bottom: 1px solid #e5e7eb;
        }
        
        #enrollModal .modal-title {
            font-size: 18px;
            font-weight: 700;
            color: #1f2937;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        #enrollModal .modal-body {
            padding-top: 0;
        }
        
        #enrollModal .form-label {
            font-size: 12px;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 4px;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        #enrollModal .form-control-sm,
        #enrollModal .form-select-sm {
            font-size: 13px;
            padding: 6px 10px;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        #enrollModal .form-control-sm:focus,
        #enrollModal .form-select-sm:focus {
            border-color: #2464ec;
            box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.15);
        }
        
        #enrollModal .form-check-label {
            font-size: 12px;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        #enrollModal .form-check-input {
            width: 14px;
            height: 14px;
            margin-top: 0.15em;
        }
        
        #enrollModal .btn-sm {
            font-size: 13px;
            padding: 6px 16px;
            font-weight: 600;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        #enrollModal .btn-sm i {
            font-family: "bootstrap-icons" !important;
            font-size: 12px;
        }
        
        #enrollModal .small {
            font-size: 12px;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        #enrollModal .mb-2 {
            margin-bottom: 0.5rem !important;
        }
        
        #enrollModal .mb-3 {
            margin-bottom: 0.75rem !important;
        }
        
        #enrollModal .text-muted {
            color: #6b7280 !important;
        }
        
        @media (max-width: 576px) {
            #enrollModal .modal-dialog {
                max-width: 95%;
                margin: 10px auto;
            }
            
            #enrollModal .modal-title {
                font-size: 16px;
            }
        }
        
        .black-text{ color:#1f2937!important;}
        
        /* Login / Register Modal Styles - Bootstrap Based */
        #loginModal .modal-dialog {
            max-width: 380px;
        }
        
        #loginModal .modal-header {
            border-bottom: 1px solid #e5e7eb;
        }
        
        #loginModal .modal-title {
            font-size: 18px;
            font-weight: 700;
            color: #1f2937;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        #loginModal .modal-body {
            padding-top: 0;
        }
        
        #loginModal .nav-tabs {
            border-bottom: 2px solid #e5e7eb;
            margin-bottom: 15px;
        }
        
        #loginModal .nav-tabs .nav-link {
            font-size: 13px;
            font-weight: 600;
            color: #6b7280;
            padding: 8px 12px;
            border: none;
            border-bottom: 2px solid transparent;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        #loginModal .nav-tabs .nav-link:hover {
            border-color: transparent;
            color: #2464ec;
        }
        
        #loginModal .nav-tabs .nav-link.active {
            color: #2464ec;
            background-color: transparent;
            border-color: transparent;
            border-bottom-color: #2464ec;
        }
        
        #loginModal .form-label {
            font-size: 12px;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 4px;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        #loginModal .form-control-sm {
            font-size: 13px;
            padding: 6px 10px;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        #loginModal .form-control-sm:focus {
            border-color: #2464ec;
            box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.15);
        }
        
        #loginModal .form-check-label {
            font-size: 12px;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        #loginModal .form-check-input {
            width: 14px;
            height: 14px;
            margin-top: 0.15em;
        }
        
        #loginModal .btn-sm {
            font-size: 13px;
            padding: 6px 16px;
            font-weight: 600;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        #loginModal .btn-sm i {
            font-family: "bootstrap-icons" !important;
            font-size: 12px;
        }
        
        #loginModal .small {
            font-size: 12px;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        #loginModal .mb-2 {
            margin-bottom: 0.5rem !important;
        }
        
        #loginModal .mb-3 {
            margin-bottom: 0.75rem !important;
        }
        
        @media (max-width: 576px) {
            #loginModal .modal-dialog {
                max-width: 95%;
                margin: 10px auto;
            }
            
            #loginModal .modal-title {
                font-size: 16px;
            }
            
            #loginModal .nav-tabs .nav-link {
                font-size: 12px;
                padding: 6px 10px;
            }
        }
        
        /* Forgot Password Modal Styles - Bootstrap Based */
        #forgotPasswordModal .modal-dialog {
            max-width: 380px;
        }
        
        #forgotPasswordModal .modal-header {
            border-bottom: 1px solid #e5e7eb;
        }
        
        #forgotPasswordModal .modal-title {
            font-size: 18px;
            font-weight: 700;
            color: #1f2937;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        #forgotPasswordModal .modal-body {
            padding-top: 0;
        }
        
        #forgotPasswordModal .form-label {
            font-size: 12px;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 4px;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        #forgotPasswordModal .form-control-sm {
            font-size: 13px;
            padding: 6px 10px;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        #forgotPasswordModal .form-control-sm:focus {
            border-color: #2464ec;
            box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.15);
        }
        
        #forgotPasswordModal .btn-sm {
            font-size: 13px;
            padding: 6px 16px;
            font-weight: 600;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        #forgotPasswordModal .btn-sm i {
            font-family: "bootstrap-icons" !important;
            font-size: 12px;
        }
        
        #forgotPasswordModal .small {
            font-size: 12px;
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
        
        #forgotPasswordModal .mb-3 {
            margin-bottom: 0.75rem !important;
        }
        
        #forgotPasswordModal .text-muted {
            color: #6b7280 !important;
        }
	 
.kaise{ display:none;}       

@media (max-width: 767px) {

#forgotPasswordModal .modal-dialog {max-width: 95%;margin: 10px auto;}
#forgotPasswordModal .modal-title {font-size: 16px;}
.hero-content { padding: 6% 0;}
.step-box{ margin:0;padding:15px 20px 15px 70px; background:#fff;text-align: left;border-radius: 5px;}
.pricing-section {padding: 0;}
.medium-badge {top: -20px;right: 0;padding: 2px 10px;border-radius: 5px;font-size: 11px;}
.top-promo-bar{ display:none;}
.hindi-text-1 {font-size: 42px;font-weight: 800;line-height: 50px;}
.hindi-text-2 {font-size: 42px;margin-bottom: 30px;}
			
			/* Promo Section Mobile */
.promo-section {padding: 40px 0;}
.promo-header {margin-bottom: 30px;}
.promo-main-title {font-size: 18px;margin-bottom: 5px;}
.promo-sub-title {font-size: 28px;margin-bottom: 10px;}
.promo-tagline {font-size: 16px;line-height: 1.5;padding: 0 10px;}
.feature-blocks {padding: 20px 0;}
.connecting-line {display: none;}
.feature-block {margin-bottom: 0px;padding: 25px 20px 20px;border: 1px solid #e5e7eb;box-shadow: 0 2px 8px rgba(0,0,0,0.08);}
.feature-title {margin-top: 0!important;margin-bottom: 10px;}
.feature-icon-container {width: 60px;height: 65px;top: 0;position: relative;}
.feature-icon {font-size: 32px;}
.feature-title {font-size: 17px;margin-top: 20px;margin-bottom: 10px;}
.feature-block:last-child .feature-title {font-size: 15px;}
.feature-description {font-size: 13px;line-height: 1.5;}
.feature-block {display: flex;align-items: flex-start;position: relative;z-index: 1;height: 100%;box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 8px;background: white;border-width: 1px;border-style: solid;border-color: rgb(229, 231, 235);border-image: initial;border-radius: 12px;padding: 20px;gap: 20px;transition: 0.3s;}
.feature-icon-container {flex-shrink: 0;width: 70px;height: 70px;display: flex;align-items: center;justify-content: center;box-shadow: rgba(36, 100, 236, 0.3) 0px 4px 12px;background: rgb(36, 100, 236);border-radius: 12px;left: 40px;position: relative;}
.feature-content {text-align: left;flex: 1 1 0%;}
.test-structure-section {padding: 20px 0;}
.step-number {position: absolute;top: 20%;left: 4%;padding: 23px 10px;border-radius: 100px;font-size: 16px;     width: 50px;height: 50px;display: flex;align-items: center;justify-content: center;}
.info-card {padding: 20px;margin: 0 40px;}
.step-number {font-size: 0;}
.step-number::after {content: "1";  /* Har step ke liye alag CSS lagega */font-size: 16px;}
.how-to-header {margin-bottom: 10px;}
.how-to-section {background: #f2f2f2;padding: 20px 10px;margin:10px 10px;border-radius: 10px;}
.how-to-header.col-lg-6.col-md-12{ padding:0!important;}

.video-bg{ display:none;}
.kaise{display: flex;align-items: center;justify-content: center;margin: 10% auto 0;background: url(../images/bg2.png) repeat center center;
    background-size: 100% 100%;
    color: white;}
.buticon{background: #fff;padding: 5px;color: #2563eb;border-radius: 100px;height: 30px;width: 30px;display: flex;align-items: center;justify-content: center;}

.video-container {margin-bottom: 0;}


}
