 @import url(https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap);
 :root {
            --primary-blue: #0066FF;
            --dark-blue: #003366;
            --accent-orange: #FF6600;
            --light-gray: #F8F9FA;
            --medium-gray: #6C757D;
            --dark-gray: #212529;
        
            --primary-dark: #1A237E;
            --primary: #303F9F;
            --primary-light: #7986CB;
            --primary-50: #E8EAF6;
            --accent: #FF5252;
            --accent-light: #FF867F;
            --text-dark: #212121;
            --text-medium: #757575;
            --text-light: #BDBDBD;
            --divider: #E0E0E0;
            --background: #FAFAFA;
            --yellow: #FFC107;
            --yellow-dark: #e6cf00;
            --elevation-1: 0 2px 1px -1px rgba(0,0,0,0.2), 0 1px 1px 0 rgba(0,0,0,0.14), 0 1px 3px 0 rgba(0,0,0,0.12);
            --elevation-2: 0 3px 1px -2px rgba(0,0,0,0.2), 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12);
            --elevation-4: 0 2px 4px -1px rgba(0,0,0,0.2), 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12);
            --elevation-6: 0 3px 5px -1px rgba(0,0,0,0.2), 0 6px 10px 0 rgba(0,0,0,0.14), 0 1px 18px 0 rgba(0,0,0,0.12);
        }
        
        body {
            font-family: 'Manrope', sans-serif;
            color: var(--dark-gray);
        }
        
        /* Navbar Styles */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
           
        }
        
      
        
        .nav-link {
            font-weight: 500;
            font-size: 16px;
            color: var(--dark-gray) !important;
            padding: 8px 15px !important;
            position: relative;
        }
        
        .nav-link.active {
            color: var(--primary-blue) !important;
        }
        
        .nav-link.active:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 15px;
            width: calc(100% - 30px);
            height: 2px;
            background: var(--primary-blue);
        }
        
        .btn-login {
            border: 1px solid var(--primary-blue);
            color: var(--primary-blue) !important;
        }
        
       
        
        .btn-register {
            background-color: var(--primary-blue);
            color: white !important;
        }
        
        /* Hero Slider Styles */
        .hero-slider {
            position: relative;
        }
        
        .hero-slide {
            height: 80vh;
            min-height: 600px;
            background-size: contain;
            background-position: center;
            background-repeat:no-repeat;
            display: flex!important;
            align-items: center;
            position: relative;
        }
        
        .hero-slide:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
            max-width: 600px;
            background: rgba(0, 0, 0, 0.4);
        }
        
        .hero-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            font-size: 20px;
            margin-bottom: 30px;
        }
        
         .mobile{
                display:none;
            }
            .desktop{
                display:block;
            }
        
        /* Slick Slider Customization */
        .slick-dots {
            bottom: 40px;
            text-align: center;
            padding-left: 60px;
        }
        
        .slick-dots li button:before {
            color: white;
            opacity: 0.5;
            font-size: 12px;
        }
        
        .slick-dots li.slick-active button:before {
            opacity: 1;
            color: white;
        }
        
        .slick-prev, .slick-next {
            width: 50px;
            height: 50px;
            z-index: 10;
          
        }
        
        .slick-prev {
            left: 30px;
        }
        
        .slick-next {
            right: 30px;
        }
        .video-slider .slick-next
        {
          right:-20px;  
        }
        .video-slider .slick-prev{
          left:-20px;  
            
        }
        
        .slick-prev:before, .slick-next:before {
            font-size: 50px;
            color: #003366;
            opacity: 0.75;
        }
        
        /* Section Styles */
        .section {
            padding: 80px 0;
        }
        
        
        /*pricing cards */
        
        
         .pricing-section {
            padding-bottom: 30px;
            
        }
        
        .pricing-card {
            border-radius: 10px;
          background:#FFF;
            padding: 30px;
            margin-bottom: 30px;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .pricing-card:hover {
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }
        
        .pricing-card h2 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            margin-top:5px;
            color: #333;
        }
        
        .pricing-card .subtitle {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.5;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .feature-list li {
            margin-bottom: 12px;
            padding-left: 30px;
            position: relative;
            color: #444;
        }
        
        .feature-list li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 4px;
            width: 20px;
            height: 20px;
            background-position: center;
            background-repeat: no-repeat;
            border-radius:10px;
            background-color: white;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23003399' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
        }
        
        .feature-list li[checked]:before {
            background-color: #eee;
            border-color: #eee;
            border-radius:10px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23003399' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .divider {
            border-top: 1px solid #eee;
            margin: 25px 0;
        }
          .popular-badge1 {
           
            background-color: none;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            width:50%;
            text-align:center;
        }
        .popular-badge {
           
            background-color: #052c65;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            width:50%;
            text-align:center;
        }
        
        .popular-card {
            border: 2px solid #FFF;
            position: relative;
            background-color: #003399;  
            
        }
        .popular-card  h2,.popular-card .feature-list li,.popular-card  .subtitle{
            color:#FFF; 
        }
       
        
        
        
        
        
        
        
        
        
        .section-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-blue);
        }
        
        .view-more {
            color: var(--primary-blue);
            font-weight: 600;
            text-decoration: none;
        }
        
        .view-more:hover {
            text-decoration: underline;
        }
        
        /* Course Card Styles */
        .course-card {
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }
        
        .course-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .course-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        .course-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 5px;
            color:#0028A1;
        }
        
        .course-meta,.course-meta a {
            font-size: 18px; color:#0028A1;
            text-decoration:none!important;
            
            margin-bottom: 10px;
        }
        
        .course-meta i {
            margin-right: 5px;
        }
        
        .course-price {
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 18px;
        }
        
        .btn-shortlist {
            border: 1px solid var(--medium-gray);
            color: var(--medium-gray);
            width: 32px;
            height: 32px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            margin-right: 8px;
        }
        .buy-now{
            background:#013399;
            color:#FFF;
            width:130px;
        }
        .buy-now:hover,.shortlist:hover{
           background: var(--yellow-dark);
        }
        .shortlist{
            background:#28A745;
            color:#FFF;
             width:130px;
        }
        
        .btn-shortlist:hover {
            background-color: var(--light-gray);
        }
        
        .btn-buy {
            padding: 6px 12px;
            font-size: 14px;
        }
        
        /* Subscription Section */
        .subscription-section {
            background-color: var(--primary-blue);
            color: white;
        }
        
        .subscription-box {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            color: var(--dark-gray);
        }
        
        .subscription-option {
            margin-bottom: 30px;
        }
        
        .subscription-option:not(:last-child) {
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            padding-bottom: 30px;
        }
        
        .option-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
       /* Footer */
       .footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 4rem 0 2rem;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            display: inline-block;
        }
        
        .footer-about {
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }
        .footer-links .nav-link{
            color:#FFF!important;
        }
        .footer-links h5 {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer-links h5:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent);
        }
        
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        
       
        
        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1rem;
            display: inline-block;
            padding: 0.25rem 0;
        }
        
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            color: white;
            border-radius: 50%;
            margin-right: 0.75rem;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.5);
            padding-top:30px;
            font-size: 1rem;
            opacity: 0.7;
        }
        
        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: white;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            box-shadow: var(--elevation-6);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1) translateY(-5px);
            
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }
        

        .display-5{
            font-family: Manrope;
font-weight: 600;
font-size: 38px;

        }
        
        .lead{
            font-family: Manrope;
            font-weight: 500;
            font-size: 24px;



        }
        .line{
            height:50px;
        }
        .edutv-btn{
           
           
            width:100%;
            margin:0px auto;
            
            color:#000;
           
            font-size:22px;
            font-weight: 600;
            font-family: Manrope;
            padding:1.25rem;
            text-align: center;
            border:1px solid #FFF;
            border-radius: 10px;

        }
        .section-heading{
            background:#003399;
            font-family: Manrope;
            font-weight: 700;
            font-size: 26px;
            color:#FFF;
            text-align: center;
           
            padding:1rem 1.25rem;
            margin:15px 0;

        }
        .section-sub{
            font-family: Manrope;
            font-weight: 600;
            font-size: 26px;

            margin: 15px 0 15px;
            

        }
        .section-text,.section-text p{
            font-family: Manrope;
            font-weight: 400;
            font-size: 22px;

            

        }
          /* Video Slider */
          .video-slider {
            margin: 0 -10px;
        }
        
        .video-slider .slick-slide {
            padding: 0 10px;
        }
        
        .video-slider .slick-list {
            padding: 20px 0;
        }
        
        .video-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--elevation-1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            margin: 0 5px;
        }
        
        .video-card:hover {
            transform: translateY(-5px);
            
            
        }
        
        .video-thumbnail {
            height: 160px;
            background-color: var(--primary);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 500;
            font-size: 1.2rem;
            padding:4px;
            border-radius:10px;
            border:3px solid #eee;
        }
        
        .video-info {
            padding: 1.25rem 1.25rem 0;
        }
        
        .video-title {
            font-weight: 500;
            margin-bottom: 0.5rem;
            font-size: 1rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .video-meta {
            font-size: 0.85rem;
            color: var(--text-medium);
            display: flex;
            align-items: center;
        }
        
        .video-meta i {
            font-size: 0.75rem;
            margin-right: 0.25rem;
        }
        .video-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.video-thumbnail {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.video-thumbnail:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    transition: all 0.3s;
}



.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s;
}

.video-card:hover .play-icon {
    background: var(--accent);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}
.gradient-text {
    background: linear-gradient(90deg, #7986CB, #FF5252);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
/* FAQ Section */
.faq-section {
            
            background-color: white;
        }
        
        .faqaccordion .accordion-item {
            border: none;
            border-radius: 8px;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: var(--elevation-1);
        }
        
       .faqaccordion .accordion-button {
            background-color: var(--yellow-dark);
            padding: 1.5rem;
            font-weight: 500;
            color:#000;
            box-shadow: none;
            font-size: 1.1rem;
        }
        
        .faqaccordion .accordion-button:not(.collapsed) {
            background-color: #003399;
            color:#FFF;
            font-weight:bold;
            
        }
 
        
        .accordion-button:after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23303F9F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        .accordion-body {
            padding: 1.5rem;
           
            background-color: white;
        }
        .videoaccordion .accordion-button {
            background-color: #039;
            font-weight: 500;
            color:#FFF;
            box-shadow: none;
            font-size: 28px;
            padding:0px;
        }
        
        .videoaccordion .accordion-button:not(.collapsed) {
            background-color: #039;
            color:#FFF;
            font-weight:bold;
            
        }
        .videoaccordion .accordion-button:after {
            background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath stroke='%23ffffff' stroke-width='1.5' fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        
        }
        .border-bottom{
            border-bottom: 2px solid #eee!important;
        }
        .page-link{
            padding:1rem 1.5rem ;
        }
        .btn-edutv {
    
    color: #000;
    padding: 1.25rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    border: none;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(48,63,159,0.2);
    position: relative;
    overflow: hidden;
}
.btn-primary{
    background:#303F9F;
    color:#FFF;
}



.btn-edutv:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffe600;
    opacity: 0;
    transition: opacity 0.3s;
}
 /* Buttons */
 .btn-edutv {
           
            color: #000;
            padding: 0.875rem 2rem;
            border-radius: 8px;
            font-weight: 500;
            border: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--elevation-1);
            display: inline-flex;
            align-items: center;
            justify-content: center; 
        }
        
        .dropdown-menu{
            max-height:550px; 
            overflow-y:scroll;
            overflow-x:hidden;
            overscroll-behavior: contain;
           -webkit-overflow-behavious: touch;
        }
        .btn-edutv:hover {
             background: var(--yellow-dark);
             color:#FFF;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
            transform: translateY(-1px);
        }
        
        .btn-edutv i {
            margin-right: 0.5rem;
        }
        
        .btn-yellow {
            background: #ffe600;
 
        }
        
        .btn-yellow:hover {
            color:#FFF;
            background: #003399;
          
            transform: scale(1.02); /* Slight zoom */
             transition: transform 0.3s ease, opacity 0.3s ease;
          
        }
        .edutv-btn:active{
             color:#FFF!important;
            background: #003399!important;
        }
        
        a{
            color:#003399;
        }
        .course-title a {
            line-height:32px;
        }
             .edutv-btn1{
    height:40px!important;
    padding:5px 20px!important;
    width:50%;
    margin:0px auto;
    font-size:18px;
    border-radius:0px;
    border:2px solid #ffe600;;
    
}
.register .btn-edutv{
    padding-top:0.5rem;
    padding-bottom:0.5rem;
}
.card-body{
    padding:5px 10px;
}
 @media (max-width: 1167.98px) {
     .edutv-btn1{
   
    font-size:14px;
  
  }
}
@media (max-width: 575.98px) {
     .edutv-btn1{
   
    padding:10px 20px!important;
  
  }
}
        /* Responsive Adjustments */
        @media (max-width: 1199.98px) {
            .hero-slide {
                height: 70vh;
                min-height: 500px;
            }
            
            .hero-title {
                font-size: 42px;
            }
        }
        
        @media (max-width: 991.98px) {
            .hero-slide {
                height: 60vh;
                min-height: 450px;
            }
            
            .hero-title {
                font-size: 36px;
            }
            
            .hero-subtitle {
                font-size: 18px;
            }
            
            .section {
                padding: 60px 0;
            }
            .edutv-btn {
   
    width: 100%!important;
   
    font-size: 19px;
    
}
        }
        
        @media (max-width: 767.98px) {
            .hero-slide {
                height: 50vh;
                min-height: 400px;
            }
            
            .hero-title {
                font-size: 32px;
            }
            
            .hero-subtitle {
                font-size: 16px;
            }
            
            .hero-content {
                text-align: center;
                padding: 0 20px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .section-title:after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .slick-dots {
                text-align: center;
                padding-left: 0;
            }
            
            .slick-prev, .slick-next {
                width: 40px;
                height: 40px;
            }
            
            .slick-prev:before, .slick-next:before {
                font-size: 40px;
            }
            .display-5{
            
font-size: 28px!important;

        }
        .section-heading{
            font-size:25px;
        }
        }
        
        @media (max-width: 575.98px) {
            .hero-slide {
                height: 60vh;
                min-height: 350px;
            }
            
            .hero-title {
                font-size: 28px;
            }
            
            .section {
                padding: 40px 0;
            }
            .register{
                margin-left:15px;
                margin-bottom:15px;
            }
            .mobile{
                display:block;
            }
            .desktop{
                display:none;
            }
            .section-heading{
            font-size:22px;
        }
        .section-sub {
            margin: 20px 0 8px;
        }
              .edutv-btn {
   
    font-size: 14px;
    
}
.section-text,.section-text p{
    font-size:18px;
}
.display-5 {
        font-size: 24px !important;
    }
    .section-sub{
        font-size:20px;
    }
    .line{
        height:60px;
    }
    .step{
        width:60px;
    }
    .video-slider .slick-prev,.video-slider .slick-next{
        top:24%;
        
    }
    .video-slider .slick-next
        {
          right:0px;  
        }
        .video-slider .slick-prev{
          left:0px;  
            
        }
        .pricing-section{
            padding:20px 0px;
        }
        .pricing-card{
            margin:0px;
            height:auto;
        padding: 10px 25px;
            
        }
        .popular-card{
            scale:1;
        }
        .popular-badge{
            margin-top:10px;
        }
        .videoaccordion .accordion-button {
          
            font-size: 22px;
           
        }

        }
         