    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Montserrat', sans-serif !important;
    }

    :root {
        --colorPrimary: #0066B2;
        --colorBlue: #4582ff;
        --colorGreen: #00d6d3;
        --colorBlack: #0f2239;
        --paraColor: #636363;
        --ratingColor: #f1cc38;
        --colorWhite: #fff;
        --box-shadow: rgba(99, 99, 99, .2) 0px 2px 8px 0px;
    }

    body {
        background-image: url('../icon/9.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 100vh;
    }

.page-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    height: auto;
    width: 90%;
    margin: 120px auto;
}
    /* Hero Slider Styles */
    .hero-slider {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .slides {
        display: flex;
        transition: transform 0.6s ease-in-out;
        width: 100%;
    }


    .slide {
        width: 100%;

        height: auto;
    }

    .slide img {
        width: 100%;
        display: block;
    }

    /* Navigation Arrows */
    .slider-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
    }

    .nav-arrow {
        background-color: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        padding: 10px 15px;
        cursor: pointer;
        font-size: 22px;
        border-radius: 50%;
    }

    @media (max-width:768px) {
        .nav-arrow {
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 4px 9px;
            cursor: pointer;
            font-size: 10px;
            border-radius: 50%;
        }
    }

    /* Default active "Sikar" style (example for navbar) */
    .nav-item.active {
        color: var(--colorPrimary);
        font-weight: bold;
    }
/* ========== NEET SECTION ========== */
    .neet-section {
      max-width: 1300px;
      margin: 60px auto;
      padding: 20px;
    }

    .neet-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
   
      padding: 20px 30px;
    }
.card{
       background: #fff;
       box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
       border-radius: 10px;
       /* padding: 20px 30px; */
}
    .neet-top img.doctor {
      width: 250px;
      height: auto;
    }

    .neet-content {
      flex: 1;
    }

    .neet-content h2 {
      color: #0066b2;
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 10px;
      background: antiquewhite;
      padding: 10px;
    }

    .neet-content p {
      font-size: 15px;
      color: #333;
      line-height: 1.6;
      padding: 10px;
    }

    .neet-top img.stethoscope {
      width: 168px;
      height: auto;
      opacity: 0.9;
      position: relative;
      top: 70px;
    }

    /* ========== BATCHES SECTION ========== */
    .batches {
      text-align: center;
      margin-top: 40px;
    }

    .batches h3 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 25px;
      color: #000;
    }

    .batch-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .batch-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
      width: 300px;
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .batch-card:hover {
      transform: translateY(-5px);
    }

     .batch-header-neet {
      background: #f36729;
      color: #f7f5f5;
      font-weight: 600;
      padding: 10px;
      font-size: 1.1rem;
    }
    
    .batch-body {
      padding: 20px;
    }

    .batch-body h4 {
      color: #f15a29;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 5px;
    }

    .batch-body p {
      font-size: 14px;
      color: #555;
      margin-bottom: 15px;
    }

    .batch-body button {
      background: #0066b2;
      color: #fff;
      border: none;
      padding: 8px 16px;
      border-radius: 5px;
      font-size: 14px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .batch-body button:hover {
      background: #004d86;
    }

    @media (max-width: 768px) {
      .neet-top {
        flex-direction: column;
        text-align: center;
      }

      .neet-top img.doctor,
      .neet-top img.stethoscope {
        display: none;
      }

      .batch-container {
        flex-direction: column;
        align-items: center;
      }
    }


           /* ========== IIT-JEE SECTION ========== */
        .jee-section {
            max-width: 1300px;
            margin: 60px auto;
            padding: 20px;
        }

        .jee-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            /* background: #fff; */
            /* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05); */
            border-radius: 10px;
            padding: 20px 30px;
        }

        .jee-top img.engineer {
            width: 250px;
            height: auto;
        }

        .jee-content {
            flex: 1;
        }

        .jee-content h2 {
            color: #0066b2;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            background: antiquewhite;
            padding: 10px;
        }

        .jee-content p {
            font-size: 15px;
            color: #333;
            line-height: 1.6;
            padding: 10px;
        }

        .jee-top img.rocket {
            width: 55px;
            height: auto;
            position: relative;
            top: 62px;
        }

        /* ========== BATCHES SECTION ========== */
        .batches {
            text-align: center;
            margin-top: 40px;
        }

        .batches h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: #000;
        }

        .batch-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 67px;
        }

        .batch-card {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            width: 260px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .batch-card:hover {
            transform: translateY(-5px);
        }

        .batch-header {
            background: #ffd54f;
            color: #000;
            font-weight: 700;
            padding: 10px;
            font-size: 1.1rem;
        }

        .batch-body {
            padding: 20px;
        }

        .batch-body h4 {
            color: #0066b2;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .batch-body p {
            font-size: 14px;
            color: #555;
            margin-bottom: 15px;
        }

        .batch-body button {
            background: #0066b2;
            color: #fff;
            border: none;
            padding: 8px 16px;
            border-radius: 5px;
            font-size: 14px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .batch-body button:hover {
            background: #004d86;
        }

        @media (max-width: 768px) {
            .jee-top {
                flex-direction: column;
                text-align: center;
            }

            .jee-top img.engineer,
            .jee-top img.rocket {
                display: none;
            }

            .batch-container {
                flex-direction: column;
                align-items: center;
            }
        }



      /* ========== PRE-FOUNDATION SECTION ========== */

      .pre-foundation-section {
        max-width: 1300px;
        margin: 60px auto;
        padding: 20px;
    }

    .pre-foundation-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        /* background: #fff; */
        /* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05); */
        border-radius: 10px;
        padding: 20px 30px;
    }

    .pre-foundation-top img.engineer {
        width: 250px;
        height: auto;
    }

    .pre-foundation-content {
        flex: 1;
    }

    .pre-foundation-content h2 {
        color: #0066b2;
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 10px;
        background: antiquewhite;
        padding: 10px;
    }

    .pre-foundation-content p {
        font-size: 15px;
        color: #333;
        line-height: 1.6;
        padding: 10px;
    }

    .pre-foundation-top img.student-study {
      width: 154px;
      height: auto;
      position: relative;
      top: 62px;
    }


   .batches {
    text-align: center;
    margin-top: 40px;
}

.batches h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
}

.batch-container-pre {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 67px;
    width: 90%;
}

.batch-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    width: 260px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.batch-card:hover {
    transform: translateY(-5px);
}

.batch-header-pre {
    background: #87D2F1;
    color: #000;
    font-weight: 700;
    padding: 10px;
    font-size: 1.1rem;
}

.batch-body-pre {
    padding: 20px;
}

.batch-body-pre h4 {
    color: #0066b2;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.batch-body-pre p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.batch-body-pre button {
    background: #0066b2;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.batch-body-pre button:hover {
    background: #004d86;
}

.setting {
    width: 258px;
    position: relative;
    margin-top: -143px;
    z-index: -1;
}
@media (max-width: 768px) {
    .pre-foundation-top {
        flex-direction: column;
        text-align: center;
    }

    .pre-foundation-top img.engineer,
    .pre-foundation-top img.student-study,
    .setting, .iconimg11course, .iconimg13course {
        display: none;
    }

    .batch-container-pre {
        flex-direction: column;
        align-items: center;
    }
    
}

.iconimg13course {
    width: 10vh;
    margin-top: 30px;
    z-index: -1;
    transform: rotate(231deg);
    position: absolute;
    left: 20px;
    opacity: 0.6;
}

.iconimg11course {
    width: 10vh;
    margin-top: 30px;
    z-index: -1;
    transform: rotate(231deg);
    position: absolute;
    left: 225px;
    opacity: 0.6;
}

/* Registration Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-content h2 {
    color: #0066b2;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 10px;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066b2;
}

.submit-btn {
    background: #0066b2;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #004d86;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.success-message {
    color: #28a745;
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.error-message {
    color: #dc3545;
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 20px;
        margin: 10% auto;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
}
