@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ////////////////////// */
.ias-prelims-section {
    background-color: #004680;
    color: white;
    border-radius: 0 0 20px 20px;
    font-family: "Inter", serif;
}


.highlight-box {
    background-color: #ffc107;
    color: #000;
    padding: 4px 16px;
    font-size: 24px;
    border-radius: 5px;
    font-weight: bold;
    font-family: "Inter", serif;
}


.ias-image {
    max-width: 300px;
    opacity: 0.9;
    border-radius: 50%;
    border: 4px solid #ffc107;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
    background: radial-gradient(circle at center, #ffffff33 0%, transparent 70%);
    padding: 10px;
}

/* //////////////////////////////////// */
.youtubecontainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 60px 5%;

    color: #333;
    background: #f8f9fa;
    font-family: "Inter", serif;
}

.text-content {
    flex: 1 1 45%;
    max-width: 500px;
}

.text-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #004680;
}

.text-content ul {
    padding-left: 20px;
    line-height: 1.8;
}

.text-content ul li::marker {
    color: #0073e6;
}

.video-thumbnail {
    flex: 1 1 45%;
    max-width: 600px;
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin-top: 30px;
}

.video-thumbnail img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff0000;
    color: white;
    font-size: 2rem;
    border: none;
    border-radius: 50%;
    padding: 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    transition: 0.2s ease;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
    padding: 0;
    border-radius: 8px;
}

.modal iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 8px;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .youtubecontainer {
        flex-direction: column;
        text-align: center;
    }
    .text-content, .video-thumbnail {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .youtubecontainer > * {
        margin-bottom: 30px;
    }
    .text-content h2 {
        font-size: 1.5rem;
    }
    .text-content ul {
        font-size: 1rem;
    }
}

/* ////////////////////////////////// */
.intergratenmaincontainer {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    color: #333;
}

.topbar {
    background: #3b0087;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.promo-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}

.image-card {
    flex: 1 1 300px;
    max-width: 500px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 1 1 300px;
    max-width: 500px;
}

.highlight {
    color: #f5b921;
    font-weight: bold;
}

.features {
    background: #ffc107;
    padding: 20px;
    border-radius: 10px;
    color: black;
    font-weight: 500;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.features li::before {
    content: '\2714';
    color: green;
    font-weight: bold;
    margin-right: 10px;
}

.features h2::before {
    content: '\1F4D6';
    margin-right: 10px;
}

@media screen and (max-width: 768px) {
    .promo-section {
        flex-direction: column;
        padding: 10px;
    }
}

/* ///////////////////////////// */
.batchdetailcontainer {
    background-color: #f9f9f9;
    color: #333;
    font-family: "Inter", serif;

}

.main-section {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
}

.section-title {
    background-color: #01427A;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 1.5rem;
    border-radius: 8px;
    margin-bottom: 20px;
    display: inline-block;
}

.branch-title {
    color: #01427A;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 20px;
}

.class-timings {
    font-size: 1rem;
    margin-left: 15px;
}

.image-container img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
}

/* ////////////////////////////// */
.upcomingbatchcontainer {
    background-color: lightgray;
    font-family: "Inter", serif;
}

.batch-card {
    transition: transform 0.3s, background-color 0.3s;
    border-top: 5px solid;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.batch-card:hover {
    transform: scale(1.03);
}

.blue-border {
    border-color: #0d6efd;
}

.green-border {
    border-color: #198754;
}

.yellow-border {
    border-color: #ffc107;
}

.join-now {
    font-size: 1.25rem;
    font-weight: bold;
    background: linear-gradient(to top, #e0e0e0, #ffffff);
    padding: 10px;
    text-align: center;
    border-top: 1px solid #ccc;
}

.batch-card h5,
.batch-card p {
    margin-bottom: 0.75rem;
}

/* //////////////////////////////////// */
.counsellingboxcontainer {
    font-family: "Inter", serif;
}

.counselling-box {
    background-color: #01427A;
    color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.counselling-label {
    color: #ffffff;
    font-weight: bold;
    padding: 10px 20px;
    display: inline-block;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.check-icon {
    color: #ffffff;
    margin-right: 10px;
}

.counselling-list {
    font-size: 1.1rem;
    line-height: 1.8;
}

.counselling-list a {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 576px) {
    .counselling-label {
        font-size: 1.2rem;
        padding: 8px 16px;
    }

    .counselling-list {
        font-size: 1rem;
        padding: 0 10px;
    }
}

/* //////////////////////////// */
.highlightprogramcontainer {
    font-family: "Inter", serif;
    background-color: #f8f9fa;

}

.highlight-section {
    background-color: #ffffff;
    border-left: 8px solid #01427A;
    padding: 30px;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.highlight-section h2 {
    color: #01427A;
    font-weight: 700;
    margin-bottom: 20px;
}

.highlight-section ul {
    padding-left: 20px;
}

.highlight-section ul li {
    margin-bottom: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
}

.highlight-section ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #01427A;
    font-size: 18px;
}

.program-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

/* /////////////////////////////////////// */
.planprogramcontainer{
    background-color: #f8f9fa;
    font-family: "Inter", serif;

}
.plan-card {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.title-highlight {
    color: #01427A;
    font-weight: bold;
    font-size: 2rem;
}

h5 {
    font-weight: 700;
    color: #01427A;
    margin-bottom: 1rem;
}

ul {
    padding-left: 0;
    list-style: none;
}

ul li {
    margin-bottom: 10px;
}

ul li i {
    margin-right: 8px;
    color: #01427A;
}

p {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .title-highlight {
        font-size: 1.5rem;
    }
}
/* /////////////////////////////////////////////// */
.topper-card {
    background-color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    margin: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.topper-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    margin-bottom: 10px;
}
.topper-name {
    font-weight: bold;
    font-size: 18px;
}
.topper-rank {
    color: red;
    font-size: 16px;
    font-weight: bold;
}