:root {
  --primary-black: #111;
  --accent-yellow: #f1c40f;
  --accent-red: #e74c3c;
  --bg-light: #f9f9f9;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background-color: white;
  color: #333;
  line-height: 1.6;
}

.navbar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-num {
  background: #2ecc71;
  padding: 5px 12px;
  border-radius: 5px;
  font-weight: bold;
}
.nav-links {
  display: none;
  gap: 20px;
} /* Hidden on mobile */
.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
}
.btn-yellow {
  background: var(--accent-yellow);
  color: black;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  padding: 40px 20px;
  gap: 30px;
  align-items: center;
}
.badgetitle {
  background: #fff3cd;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: black;
  font-weight: bold;
}
h1 {
  font-size: 2.5rem;
  margin: 15px 0;
  line-height: 1.1;
  color: #222;
}
.red-text {
  color: var(--accent-red);
}
.sub-headline {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.exam-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 30px;
}
.exam-grid span {
  font-weight: bold;
  color: #444;
}
.exam-grid i {
  color: var(--accent-red);
  margin-right: 5px;
}

.features-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.feature-card {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}
.feature-card i {
  font-size: 1.5rem;
  color: #5533ff;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.75rem;
  font-weight: bold;
}

.hero-image img {
  width: 100%;
  height: auto;
}

/* Pricing Section */
.pricing-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-top: 1px solid #eee;
  gap: 20px;
}
.pricing-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.price-box {
  text-align: center;
}
.old-price {
  text-decoration: line-through;
  font-size: 1.2rem;
  display: block;
}
.new-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--accent-red);
}
.btn-red {
  background: var(--accent-red);
  color: white;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
}

/* Responsiveness for Tablets and Desktops */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
  }
  .features-row {
    grid-template-columns: repeat(4, 1fr);
  }
  .exam-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pricing-bar {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* मोबाईल टॉगल बटन स्टाइल */
.mobile-menu-icon {
  display: none; /* डेस्कटॉपवर लपवा */
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* मोबाईलसाठी विशेष बदल */
@media (max-width: 767px) {
  .mobile-menu-icon {
    display: block; /* फक्त मोबाईलवर दाखवा */
  }

  .nav-links {
    display: none; /* सुरुवातीला लपवा */
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #111;
    padding: 20px;
    z-index: 100;
    text-align: center;
    border-top: 1px solid #333;
  }

  /* जेव्हा 'active' क्लास येईल तेव्हा मेनू दिसेल */
  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 15px 0;
    border-bottom: 1px solid #222;
  }

  .desktop-only-btn {
    display: none;
  }
  .mobile-only-btn {
    display: block !important;
    margin-top: 10px;
  }
}

@media (min-width: 768px) {
  .mobile-only-btn {
    display: none;
  }
}

:root {
  --history: #5d3ebc;
  --geography: #27ae60;
  --polity: #2980b9;
  --economy: #f39c12;
  --science: #8e44ad;
  --sociology: #16a085;
  --bg-light: #fdfdfd;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
}
.section3{
    margin-top: 20px;
}
/* .section3 { max-width: 1300px; margin: 0 auto; } */

.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 15px 0;
}

.header h1{
    margin: 0;
    font-size: 25px;
    font-weight: 700;
}

.badges{
display: inline-flex;
    align-items: center;
    background-color: #f8fbf8; /* The light background color */
    border: 1px solid #ebebeb; /* Subtle border */
    border-radius: 8px;
    padding: 8px 16px;
    font-family: sans-serif;
    font-size: 14px;
    color: #333;
}

.badges span{
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.badges i{
    color: #16a34a;
}

/* Mobile Responsive */
@media (max-width: 768px){
    .header{
        flex-direction: column;
        align-items: flex-start;
    }

    .header h1{
        font-size: 24px;
    }

    .badges{
        gap: 12px;
    }
}

/* Grid Layout */
.main-wrapper {
  display: flex;
  gap: 10px;
  
}

/* Sidebar labels (Type of samples) */
.sidebar {
  /* padding:25px; */
  flex-shrink: 0;
  border-radius: 20px;
 
}
.sidebar-header {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  text-align: center;
  border-radius: 10px 10px 0 0;
}
.type-box {
  height: 180px;
  background: #f8f9fa;
  /* margin-bottom: 15px;
  border-radius: 10px; */
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  font-size: 16px;
}
.type-box i {
  font-size: 1.8rem;
  margin-bottom: 10px;
  margin-right: 10px;
}
.pdf-t {
  color: #27ae60;
}
.mcq-t {
  color: #5d3ebc;
}
.map-t {
  color: #2980b9;
}
.aud-t {
  color: #e67e22;
}

/* Scrollable Grid Area */
.grid-container {
  overflow-x: auto;
  flex-grow: 1;
}
.grid-content {
  display: grid;
  grid-template-columns: repeat(6, 150px);
  gap: 10px;
}

/* Subject Headers */
.sub-head {
  height: 60px;
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
 
}
.sub-head i {
  font-size: 1.4rem;
  margin-bottom: 3px;
  margin-right: 10px;
}

/* General Card Style */
.grid-content .card {
  height: 180px;
  background: white;
  width: 150px;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.card-title {
  font-size: 0.85rem;
  font-weight: bold;
  line-height: 1.3;
}
.card-img {
  width: 100%;
  height: 60px;
  background: #f0f0f0;
  border-radius: 5px;
  margin: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: #999;
}

/* Buttons */
.card-img .btn {
  border: none;
  border-radius: 5px;
  color: white;
  padding: 8px;

  font-weight: bold;
  cursor: pointer;
  text-align: center;
}
.btn-g {
  background: var(--geography) !important;
    font-size: 14px !important;
    color: white !important;;
}
.btn-v {
  background: var(--history) !important;
    font-size: 14px !important;
    color: white !important;;
}
.btn-b {
  background: var(--polity) !important;  font-size: 14px !important;
  color: white !important;;

}
.btn-o {
  background: #e67e22 !important;
    font-size: 14px !important;
    color: white !important;;
}

/* Footer Message */
.footer-banner {
  background: #fff9c4;
  padding: 15px;
  border-radius: 50px;
  text-align: center;
  margin-top: 30px;
  font-weight: bold;
  font-size: 0.9rem;
  border: 1px solid #f0e68c;
}

@media (max-width: 1000px) {
  .sidebar {
    display: none;
  } /* Mobile var side labels hide kara */
}

/* ==========================================2222222=============== */

  :root {
            --green-theme: #27ae60;
            --orange-theme: #e67e22;
            --blue-theme: #2980b9;
            --purple-theme: #6c5ce7;
            --bg-light: #f4fdf7;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', Arial, sans-serif; }

        .main-container {
            /* max-width: 1100px; */
            margin: 0 auto;
            border: 2px solid #e0e0e0;
            border-radius: 15px;
            padding: 25px;
            background-color:#f1f9f4;
        }

        /* Title Section */
        .header-title {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
           
        }
        .step-badge {
            background-color: var(--green-theme);
            color: white;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            border-radius: 5px;
        }
        .header-title h2 { color: #333; font-size: 1.8rem; text-align: center; }
        .header-title span { color: var(--green-theme); }

        /* Feature Cards Grid */
        .features-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            border: 1px solid #eee;
            border-radius: 10px;
            padding: 20px;
            background-color: #fafafa;
        }

        .feature-item {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 10px;
            position: relative;
        }

        /* Vertical dividers for desktop */
        @media (min-width: 768px) {
            .feature-item:not(:last-child)::after {
                content: "";
                position: absolute;
                right: -10px;
                top: 20%;
                height: 60%;
                width: 1px;
                background-color: #ddd;
            }
        }

        .feature-item i { font-size: 3rem; margin-bottom: 15px; }
        .feature-item h3 { font-size: 1rem; margin-bottom: 15px; line-height: 1.3; color: #222; text-transform: uppercase; }
        
        .feature-list {
            list-style: none;
            text-align: left;
            font-size: 0.85rem;
            color: #555;
            display: inline-block;
        }
        .feature-list li { margin-bottom: 8px; position: relative; padding-left: 20px; }
        .feature-list li::before {
            content: "\f00c";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            font-size: 0.7rem;
        }

        /* Color Variations */
        .audio { color: var(--green-theme); }
        .audio li::before { color: var(--green-theme); }
        
        .info { color: var(--orange-theme); }
        .info li::before { color: var(--orange-theme); }
        
        .mindmap { color: var(--blue-theme); }
        .mindmap li::before { color: var(--blue-theme); }
        
        .mcq { color: var(--purple-theme); }
        .mcq li::before { color: var(--purple-theme); }

        /* Subjects Bar */
        .subjects-bar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
            justify-content: center;
        }
        .subject-label {
            background-color: #e8f5e9;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 0.9rem;
            text-align: center;
        }
        .subject-tag {
            background: #fff;
            border: 1px solid #eee;
            padding: 8px 15px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.03);
        }

        /* Bottom Exams Line */
        .exams-line {
            text-align: center;
            margin-top: 20px;
            font-weight: bold;
            color: var(--green-theme);
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        /* Responsive Mobile View */
        @media (max-width: 767px) {
            .features-grid { flex-direction: column; }
            .feature-item { border-bottom: 1px solid #eee; padding-bottom: 20px; }
            .feature-item:last-child { border-bottom: none; }
            .subjects-bar { justify-content: center; }
        }

      

        /* Default light card */
.card-light {
    background: #f4f5f7;
}

/* History */
.history-card {
    background: #f1efff; /* light purple */
    border-radius: 10px;
}

/* Geography */
.geography-card {
    background: #eaf7ef; /* light green */
    border-radius: 10px;
}

/* Polity */
.polity-card {
    background: #eef3fb; /* light blue */
    border-radius: 10px;
}

/* Economy */
.economy-card {
    background: #fff4e8; /* light orange */
    border-radius: 10px;
}

/* Science */
.science-card {
    background: #f3ecff; /* light violet */
    border-radius: 10px;
}

/* Sociology */
.sociology-card {
    background: #e9f7f5; /* light teal */
    border-radius: 10px;
}


:root {
    --primary-blue: #004aad;
    --accent-red: #e62e2e;
    --text-dark: #333;
    --border-light: #e0e0e0;
}



.section4 {
    /* max-width: 1100px; */
    margin: 0 auto;
    background: white;
    position: relative;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* The Blue Corner Ribbon */
.step-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-blue);
    color: white;
    padding: 10px 25px;
    font-size: 28px;
    font-weight: bold;
    border-bottom-right-radius: 50px;
}

.content-wrapper {
    display: flex;
    padding: 40px 20px 20px 20px;
    gap: 20px;
    align-items: stretch;
}

/* Process Section */
.process-section {
    flex: 2;
    text-align: center;
}

.process-section h2 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.steps-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.step {
    flex: 1;
    font-size: 0.85rem;
    color: #555;
}

.step i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    display: block;
}

.arrow {
    font-size: 1.5rem;
    color: #ccc;
    padding-bottom: 30px;
}

/* Pricing Card */
.pricing-card {
    flex: 1;
    border: 1px solid #ffebeb;
    background: #fffafa;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.price-box span { font-size: 0.75rem; color: #777; }
.old-price { text-decoration: line-through; font-size: 1.4rem; color: #333; font-weight: bold; }
.new-price { font-size: 1.8rem; color: var(--accent-red); font-weight: 900; }
.special span { color: var(--accent-red); font-weight: bold; }

.buy-btn {
    background: var(--accent-red);
    color: white;
    border: none;
    width: 100%;
    padding: 12px;
    font-size: 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.secure-tag {
    font-size: 0.75rem;
    color: #2e7d32;
    margin-top: 10px;
}

/* Guarantee Card */
.guarantee-card {
    flex: 1;
    background: #f8fbff;
    border: 1px solid #eef4ff;
    border-radius: 12px;
    padding: 15px;
}

.guarantee-card h3 {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 0;
}

.guarantee-card ul {
    list-style: none;
    padding: 0;
    font-size: 0.85rem;
}

.guarantee-card li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444;
}

.guarantee-card i { color: #2e7d32; }

/* Footer Strip */
.footer-strip {
    background-color: #fff;
    border-top: 1px solid #eee;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #444;
}

.footer-left, .footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.secure-text {
    font-weight: bold;
    color: #555;
}

.footer-icon {
    height: 18px; /* Consistent height for logos */
    width: auto;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
}

.payment-method i {
    font-size: 16px;
    color: #333;
}

.separator {
    color: #ccc;
    margin: 0 5px;
}

.footer-right i {
    margin-right: 5px;
    color: #555;
}

.footer-left { display: flex; align-items: center; gap: 15px; }
.footer-right { display: flex; gap: 20px; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-wrapper { flex-direction: column; }
    .steps-container { flex-direction: column; gap: 10px; }
    .arrow { transform: rotate(90deg); padding: 0; }
}





/* =========================
   MOBILE RESPONSIVE CSS
   ========================= */

/* Tablet */
@media (max-width: 992px) {

    .hero {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }

    .hero-text,
    .hero-image {
        width: 100%;
    }

    .hero-image img {
        width: 100%;
        max-width: 400px;
    }

    .features-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .pricing-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .pricing-cta {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .subjects-bar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .steps-container {
        flex-direction: column;
        gap: 20px;
    }

    .arrow {
        transform: rotate(90deg);
    }

    .content-wrapper {
        flex-direction: column;
    }

    .pricing-card,
    .guarantee-card,
    .process-section {
        width: 100%;
    }

    .main-wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
        margin-bottom: 20px;
    }

    .grid-container {
        width: 100%;
        overflow-x: auto;
    }

    .grid-content {
        min-width: 900px;
    }
}


/* =========================
   MOBILE VIEW
   ========================= */

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        padding: 0 15px;
    }

    /* NAVBAR */

    .nav-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-icon {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
    }

    .nav-links {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #111;
        display: none;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .desktop-only-btn {
        display: none;
    }

    .mobile-only-btn {
        display: inline-block;
    }

    /* HERO */

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .sub-headline {
        font-size: 16px;
    }

    .exam-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
        margin-top: 20px;
    }

    .exam-grid span {
        font-size: 13px;
    }

    .features-row {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 12px;
        margin-top: 25px;
    }

    .feature-card {
        padding: 15px 10px;
    }

    .feature-card p {
        font-size: 13px;
    }

    .hero-image img {
        width: 100%;
        margin-top: 25px;
    }

    /* PRICING */

    .pricing-bar {
        padding: 20px 15px;
        flex-direction: column;
        text-align: center;
    }

    .pricing-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-red {
        width: 100%;
        text-align: center;
    }

    /* FEATURES */

    .header-title h2 {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: 25px 20px;
    }

    .subjects-bar {
        gap: 10px;
        padding: 20px 10px;
    }

    .subject-tag {
        font-size: 13px;
        padding: 10px 14px;
    }

    .exams-line {
        font-size: 13px;
        line-height: 1.8;
        text-align: center;
    }

    /* TESTIMONIAL */

    .section h1 {
        font-size: 24px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    /* SECTION 4 */

    .steps-container {
        flex-direction: column;
    }

    .step {
        width: 100%;
    }

    .pricing-card,
    .guarantee-card {
        padding: 20px;
    }

    .price-row {
        flex-direction: column;
        gap: 15px;
    }

    .buy-btn {
        width: 100%;
    }

    .footer-strip {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* SAMPLE SECTION */

    .section3 .header h1 {
        font-size: 26px;
        line-height: 1.4;
    }

    .badges {
        font-size: 13px;
        line-height: 1.8;
    }

    .sidebar {
        grid-template-columns: repeat(2,1fr);
    }

    .sidebar-header {
        grid-column: span 2;
    }

    .type-box {
        font-size: 13px;
        padding: 15px 10px;
    }

    .grid-content {
        min-width: 850px;
    }

    .card {
        min-width: 140px;
    }

    .card-title {
        font-size: 14px;
    }

    .card-img {
        font-size: 13px;
    }

    .btn {
        font-size: 12px;
        padding: 8px 10px;
    }

    .footer-banner {
        font-size: 14px;
        line-height: 1.7;
        padding: 15px;
    }
}


/* =========================
   SMALL MOBILE
   ========================= */

@media (max-width: 480px) {

    .hero h1 {
        font-size: 26px;
    }

    .exam-grid {
        grid-template-columns: 1fr;
    }

    .features-row {
        grid-template-columns: 1fr;
    }

    .feature-card {
        width: 100%;
    }

    .sidebar {
        grid-template-columns: 1fr;
    }

    .sidebar-header {
        grid-column: span 1;
    }

    .section h1 {
        font-size: 22px;
    }

    .header-title h2 {
        font-size: 24px;
    }

    .btn-yellow,
    .btn-red,
    .buy-btn {
        width: 100%;
    }

    .price-box {
        width: 100%;
    }

    .footer-left,
    .footer-right {
        flex-direction: column;
        gap: 10px;
    }
}