@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;
}
/* /////////////////////////////// */
.foundprogramcontainer {
    padding: 50px 0;
    background: #f8f9fa;
    font-family: "Inter", serif;
}
.section-title {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    padding: 15px;
    background: linear-gradient(135deg, #01427A, #007bff);
    color: white;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}
.program-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 0;
}
.program-text {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}
.program-image {
    flex: 1;
    text-align: center;
}
.program-image img {
    max-width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}
.program-image img:hover {
    transform: scale(1.05);
}
.foundprogramcontainer  ul {
    list-style-type: none;
    padding: 0;
}
.foundprogramcontainer ul li {
    background: #01427A;
    color: white;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
}
@media (max-width: 768px) {
    .program-section {
        flex-direction: column;
        text-align: center;
    }
    .program-text, .program-image {
        width: 100%;
    }
}
/* ///////////////////////////////////// */

.programtimecontanier{
    
    background-color: #f0f4f8;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", serif;
}

.timeprogram-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    width: 100%;
    justify-content: center;
}
.timeprogram-box {
    background: linear-gradient(135deg, #ffffff, #f2f6fc);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 30px;
    transition: all 0.3s ease-in-out;
    border-left: 5px solid #01427A;
    flex: 1;
    min-width: 300px;
}
.timeprogram-box:hover {
    transform: scale(1.03);
}
.timeprogram-header {
    font-size: 22px;
    font-weight: bold;
    padding: 12px;
    border-radius: 6px;
    color: white;
    text-align: center;
    background: #01427A;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.highlightprogram {
    color: #01427A  !important;
    font-weight: bold;
}
.bold {
    font-weight: bold;
}
.programtimecontanier p {
    font-size: 16px;
    line-height: 1.8;
    margin: 12px 0;
    color: #333;
}
.info-box {
    background: #01427A;
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .timeprogram-container {
        flex-direction: column;
    }
}
/* /////////////////////////////////////// */
.programhighcontainer{
    background-color: #f8f9fa;
    font-family: "Inter", serif;
}
.highlight-section {
    padding: 60px 0;
    text-align: center;
    background-color: #fff;
}
.highlight-card {
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background: #ffffff;
    border: none;
    text-align: left;
}
.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.highlight-icon {
    font-size: 40px;
    color: #01427A;
}
.highlight-title {
    font-weight: bold;
    font-size: 1.25rem;
    color: #01427A;
}
.highlight-text {
    font-size: 1rem;
    color: #6c757d;
}
/* //////////////////////////////// */
.upcomebatchcontainer {
    background-color: #f8f8f8;
    text-align: center;
    padding: 20px;
    font-family: "Inter", serif;
}

.batchheading {
    background: linear-gradient(90deg, #01427A, #0266A2);
    color: white;
    padding: 20px;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.batch-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: stretch; /* Ensures equal height */
}

.batch-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    width: 45%;
    min-width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Keeps footer aligned */
    min-height: 450px; /* Ensures all cards have the same height */
}

.batch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.batch-card h2 {
    color: #01427A;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.batch-content {
    flex-grow: 1; /* Makes sure the footer stays at the bottom */
    padding: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.batch-footer {
    background: #01427A;
    color: white;
    padding: 15px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.join-btn {
    display: block;
    width: 100%;
    background: #01427A;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s;
}

.join-btn:hover {
    background: #0266A2;
}

@media (max-width: 768px) {
    .batch-card {
        width: 100%;
    }
    .batchheading {
        font-size: 24px;
    }
}
/* ///////////////////////////////// */
.faqkascontainer{
    font-family: "Inter", serif;
}
.faq-section {
    max-width: 800px;
    margin: 50px auto;
}
.faq-header {
    background-color: #01427A;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
.accordion-button {
    background-color: #01427A !important;
    color: white !important;
}
.accordion-button:not(.collapsed) {
    background-color: #012A4A !important;
    color: white !important;
}
.accordion-button:focus {
    box-shadow: none;
}
/* //////////////////////////////////// */
.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;
}
