* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
}

header {
    width: 100%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 45px;
}

/* Nav Links */
nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    transition: 0.2s;
}

nav ul li a:hover {
    color: #0a58ca;
}

/* Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    z-index: 999;
    flex-direction: column;
}

.dropdown-content a {
    padding: 10px 15px;
    display: block;
    color: #333;
}

.dropdown-content a:hover {
    background: #f8f8f8;
}

nav ul li:hover .dropdown-content {
    display: flex;
}

/* Signup/Login Button */
.login-btn {
    padding: 10px 22px;
    border: 1px solid #000;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.login-btn:hover {
    background: #0a58ca;
    color: #fff;
    border-color: #0a58ca;
}

/* Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #111;
    border-radius: 2px;
}

@media (max-width: 900px) {
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        background: #fff;
        flex-direction: column;
        width: 100%;
        padding: 20px;
        gap: 10px;
        transition: 0.3s ease;
        border-top: 1px solid #eee;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        flex-direction: column;
        background: #f9f9f9;
        border-radius: 4px;
    }

    .dropdown-content.show {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* 🔹 SLIDER CONTAINER */
.slider {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 10px auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: #000;
}

/* 🔹 SLIDE STYLE */
.slide {
    display: none;
    width: 100%;
    height: 720px;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 1.5s ease, opacity 1s ease;
    background: #000;
    border-radius: 20px;
}

/* Active Slide Animation */
.slide.active {
    display: block;
    animation: fade 1s ease-in-out;
}

@keyframes fade {
    from {
        opacity: 0.3;
        transform: scale(1.02);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 🔹 NAVIGATION ARROWS */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 28px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    user-select: none;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.prev:hover,
.next:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* 🔹 DOTS NAVIGATION */
.dots {
    text-align: center;
    position: absolute;
    bottom: 25px;
    width: 100%;
    z-index: 10;
}

.dot {
    cursor: pointer;
    height: 14px;
    width: 14px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.4s ease;
}

.dot.active {
    background-color: #ff4c29;
    /* highlight color */
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255, 76, 41, 0.7);
}

.dot:hover {
    background-color: #fff;
}

/* 🔹 RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .slide {
        height: 500px;
    }

    .prev,
    .next {
        width: 40px;
        height: 40px;
        font-size: 22px;
        line-height: 40px;
    }
}

@media (max-width: 768px) {
    .slide {
        height: 320px;
    }

    .prev,
    .next {
        width: 35px;
        height: 35px;
        font-size: 18px;
        line-height: 35px;
    }

    .dot {
        height: 10px;
        width: 10px;
    }
}

@media (max-width: 480px) {
    .slide {
        height: 260px;
    }

    .slider {
        border-radius: 10px;
    }

    .prev,
    .next {
        display: none;
        /* hide arrows on small phones */
    }
}

/* Study */
.study-section {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.study-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #111;
}

.study-section p {
    font-size: 55px;
    color: #555;
    margin-top: 8px;
    margin-bottom: 50px;
}

.study-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.study-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 40px 25px;
    width: 550px;
    transition: all 0.3s ease;
}

.study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.study-card img {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.study-card h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

.study-card p {
    font-size: 20px;
    color: #666;
    margin-bottom: 20px;
}

.study-card .btn {
    display: inline-block;
    background-color: #e63946;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    transition: background 0.3s;
}

.study-card .btn:hover {
    background-color: #c5303d;
}

/* Responsive */
@media (max-width: 768px) {
    .study-options {
        flex-direction: column;
        align-items: center;
    }

    .study-card {
        width: 90%;
        max-width: 350px;
    }

    .study-section h2 {
        font-size: 24px;
    }

    .study-section p {
        font-size: 16px;
    }
}

.btn-enroll {
    display: inline-block;
    background: #f5a623;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-enroll:hover {
    background: #ffb948;
    transform: scale(1.05);
}

.footer {
    background: #0b132b;
    color: #fff;
    padding: 60px 20px 20px;
    font-family: "Inter", sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h3 {
    color: #f5a623;
    margin-bottom: 15px;
    font-size: 22px;
}

.footer-col h4 {
    color: #f5a623;
    margin-bottom: 15px;
}

.footer-col p {
    color: #ccc;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #f5a623;
}

.footer .social-links {
    margin-top: 10px;
}

.footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 18px;
    text-align: center;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: #f5a623;
    color: #0b132b;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 14px;
    color: #aaa;
}

.breadcrumb {
    background: #fff;
    padding: 10px 30px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #777;
}

.course-overview {
    padding: 30px;
}

.course-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.course-details {
    flex: 1 1 65%;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.course-details h2 {
    margin-bottom: 8px;
    font-size: 22px;
    color: #333;
}

.course-details .sub {
    color: #666;
    margin-bottom: 15px;
}

.course-info span {
    display: inline-block;
    margin-right: 20px;
    color: #555;
    font-size: 14px;
}

.validity {
    margin: 15px 0;
    font-size: 15px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.features div {
    background: #f3f6fa;
    padding: 10px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.features i {
    color: #007bff;
}

.contact-box {
    background: #e9f5ff;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
}

.course-card {
    flex: 1 1 30%;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.course-card img {
    width: 100%;
    border-radius: 8px;
}

.price h3 {
    color: #e63946;
    margin: 10px 0 5px;
}

.price span {
    color: #555;
    font-size: 14px;
}

.btn-buy {
    background: #e63946;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    margin: 8px 0;
    width: 100%;
}

.btn-secondary {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

/* Product Highlights */
.product-highlights {
    background: #fff;
    margin: 20px 30px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.product-highlights h3 span {
    color: #e63946;
}

.highlights-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.highlights-list div {
    background: #f3f6fa;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlights-list i {
    color: #007bff;
}

/* Exams Covered */
.exams-covered {
    background: #fff;
    margin: 20px 30px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.exams-covered h3 span {
    color: #e63946;
}

.exam-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.exam-icons div {
    background: #f3f6fa;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.exam-icons i {
    color: #007bff;
}

/* Course Includes */
.course-includes {
    background: #fff;
    margin: 20px 30px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.course-includes h3 span {
    color: #e63946;
}

.includes-box {
    background: #f3f6fa;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.includes-box i {
    color: #007bff;
}

/* Faculty Profile */
.faculty-profile {
    background: #fff;
    margin: 20px 30px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faculty-profile h3 span {
    color: #e63946;
}

.faculty-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 15px;
}

.faculty-card img {
    width: 120px;
    border-radius: 8px;
}

.faculty-info {
    flex: 1;
}

.faculty-info h4 {
    margin: 0;
    color: #333;
}

.faculty-info p {
    margin: 6px 0;
    color: #555;
    font-size: 14px;
}

.btn-demo {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
}

/* Tabs Section */
.tabs-section {
    background: #fff;
    margin: 20px 30px 40px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.tab {
    background: #f3f6fa;
    border: none;
    padding: 8px 15px;
    border-radius: 6px 6px 0 0;
    cursor: pointer;
    font-weight: 500;
}

.tab.active {
    background: #007bff;
    color: #fff;
}

.tab-content {
    display: none;
    font-size: 14px;
    color: #444;
}

.tab-content p {
    margin: 0;
}

.course-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    overflow: hidden;
}

.course-card video.course-video {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    height: 200px;
}

.course-card .price {
    margin-top: 15px;
}

.course-card .price h3 {
    font-size: 20px;
    color: #222;
}

.course-card .price span {
    color: #e63946;
    font-size: 14px;
}

.course-card .btn-buy {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.course-card .btn-secondary {
    width: 100%;
    margin-top: 8px;
    padding: 10px;
    background: #f3f6fa;
    color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.footer {
    background: #0b132b;
    color: #fff;
    padding: 60px 20px 20px;
    font-family: "Inter", sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h3 {
    color: #f5a623;
    margin-bottom: 15px;
    font-size: 22px;
}

.footer-col h4 {
    color: #f5a623;
    margin-bottom: 15px;
}

.footer-col p {
    color: #ccc;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #f5a623;
}

.footer .social-links {
    margin-top: 10px;
}

.footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 18px;
    text-align: center;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: #f5a623;
    color: #0b132b;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 14px;
    color: #aaa;
}

/* ---------------- STEP 1 - Latest Exam Updates ---------------- */
.latest-exams {
    padding: 56px 0;
    background: #f8f9fc
}

.latest-exams h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 6px
}

.latest-exams .sub-title {
    text-align: center;
    color: #555;
    margin-bottom: 30px
}

.exam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px
}

.exam-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(11, 19, 43, 0.06);
    border-left: 5px solid #f5a623
}

.exam-card h3 {
    margin: 0 0 8px;
    font-size: 18px
}

.exam-card p {
    margin: 0 0 12px;
    color: #555
}

.exam-card .read-more {
    color: #f5a623;
    text-decoration: none;
    font-weight: 600
}

/* ---------------- STEP 2 - Trending Courses ---------------- */
.trending {
    padding: 56px 0
}

.trending h2 {
    text-align: center;
    margin-bottom: 12px
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px
}

.course-card {
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(11, 19, 43, 0.04);
    text-align: left
}

.course-card h4 {
    margin: 8px 0
}

.course-badge {
    display: inline-block;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 12px;
    background: rgba(245, 166, 35, 0.12);
    color: #b35f05
}

/* ---------------- STEP 3 - Why Choose Us ---------------- */
.why {
    background: linear-gradient(180deg, #fff, #f7fbff);
    padding: 56px 0
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    align-items: start
}

.why-card {
    background: transparent;
    padding: 10px
}

.why-card h3 {
    margin: 8px 0;
    color: #0b132b
}

.why-card p {
    color: #555
}

/* ---------------- STEP 4 - Testimonials ---------------- */
.testimonials {
    padding: 56px 0;
    background: #fff
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 16px
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative
}

.testimonial {
    display: none;
    padding: 20px;
    border-radius: 10px;
    background: #f8f9fc;
    box-shadow: 0 6px 18px rgba(11, 19, 43, 0.03)
}

.testimonial.active {
    display: block
}

.testimonial p {
    font-style: italic;
    color: #333
}

.testimonial .who {
    margin-top: 12px;
    font-weight: 600;
    color: #0b132b
}

/* ---------------- STEP 5 - Top Coaching Centres ---------------- */
.coaching {
    padding: 56px 0
}

.coach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px
}

.coach-card {
    background: #fff;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(11, 19, 43, 0.04)
}

.coach-card h4 {
    margin: 8px 0
}

.coach-location {
    font-size: 13px;
    color: #777
}

/* ---------------- STEP 6 - Newsletter Signup ---------------- */
.newsletter {
    background: #0b132b;
    color: #fff;
    padding: 36px 18px;
    border-radius: 12px;
    margin: 30px 0
}

.newsletter .row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap
}

.newsletter input[type="email"] {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: 0
}

.newsletter button {
    background: #f5a623;
    border: 0;
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer
}

/* ---------------- STEP 7 - Featured Blogs ---------------- */
.featured-blogs {
    padding: 56px 0
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px
}

.blog-card {
    background: #fff;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(11, 19, 43, 0.04)
}

.blog-card h4 {
    margin: 8px 0
}

/* ---------------- STEP 8 - Top Online Courses Slider ---------------- */
.courses-slider {
    padding: 56px 0;
    background: #f8f9fc
}

.courses-track {
    display: flex;
    gap: 14px;
    overflow: hidden
}

.course-slide {
    min-width: 260px;
    background: #fff;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(11, 19, 43, 0.04)
}

/* ---------------- STEP 9 - Government Exam Categories Grid ---------------- */
.gov-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px
}

.gov-item {
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(11, 19, 43, 0.03)
}

.gov-item i {
    font-size: 22px;
    color: #f5a623;
    margin-bottom: 8px
}

/* ---------------- Footer small tweak ---------------- */
footer {
    background: #0b132b;
    color: #fff;
    padding: 60px 20px 20px
}