* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Section Layout */
.hero-section {
    background-color: #ffffff;
    min-height: 90vh;
    color: #12141D;
    padding: 3rem 0;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-row {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content-left {
    flex: 7;
    text-align: left;
}



.hero-content-right {
    flex: 5;
}

/* Admissions Badge */
.admissions-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.admissions-badge-dot {
    width: 10px;
    height: 10px;
    background: #fbbf24;
    display: inline-block;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.admissions-badge-text {
    color: #f59e0b;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Hero Title */
.hero-title {
    color: #1e3a8a;
    line-height: 1.2;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-title-highlight {
    color: #1e3a8a;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    color: #94A3B8;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #fef3c7;
    color: black;
    border-left: 3px solid #1e3a8a;
    font-weight: 400;
    border-radius: 4px;
}

.hero-badge-icon {
    color: #1e3a8a;
    margin-right: 0.25rem;
}

.hero-description {
    margin-bottom: 2rem;
    opacity: 0.75;
    display: none;
}

@media (min-width: 768px) {
    .hero-description {
        display: block;
    }
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.hero-apply-btn {
    background-color: #1e3a8a;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-apply-btn:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Enquiry Card */
.hero-enquiry-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.enquiry-card-body {
    padding: 2rem;
}

@media (min-width: 768px) {
    .enquiry-card-body {
        padding: 3rem;
    }
}

.enquiry-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.enquiry-title {
    color: #12141D;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.enquiry-subtitle {
    color: #94A3B8;
    font-size: 0.9rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1rem;
}

.form-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-col {
    flex: 1;
}

.enquiry-input {
    width: 100%;
    font-size: 1rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #12141D;
    padding: 0.75rem 1rem;
    border-radius: 8px !important;
    transition: border-color 0.3s ease;
}

.enquiry-input:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.1);
}

.enquiry-submit-btn {
    width: 100%;
    background-color: #4A90E2;
    border-radius: 12px;
    transition: 0.3s;
    padding: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.enquiry-submit-btn:hover {
    background-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-row {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-content-left {
        text-align: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title-highlight {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .form-row {
        flex-direction: column;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
}


.ibi-highlights {
    background-color: var(--color-sec-bg);
    padding: 80px 0;
    font-family: var(--font-body);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-tag {
    color: var(--color-heading);
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    color: #1E212B;
    font-size: 2.5rem;
    text-transform: uppercase;
}

.section-subtitle {
    max-width: 600px;
    font-size: 1rem;
    color: var(--color-default);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.highlight-card {
    background: var(--color-white);
    padding: 35px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--color-heading);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--color-sec-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: 0.3s;
}

.card-icon-wrapper i {
    font-size: 1.6rem;
    color: var(--color-violet);
}

.highlight-card:hover .card-icon-wrapper {
    background-color: var(--color-heading);
}

.highlight-card:hover .card-icon-wrapper i {
    color: var(--color-white);
}

.card-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.08);
}

.card-title {
    font-family: var(--font-heading);
    color: var(--color-violet);
    font-size: 1.3rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.card-text {
    color: var(--color-default);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-list {
    list-style: none;
    padding: 0;
}

.card-list li {
    font-size: 0.85rem;
    color: var(--color-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-list li i {
    color: #2bb826;
    font-size: 0.75rem;
}

@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}



.dates-card {
    background: #1e3a8a;
    color: white;
    padding: 3rem;
    border-radius: 15px;
    margin: 0 auto;
    max-width: 1000px;
}

.helpline {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding : 10px;
}

.helpline i{
    padding: 10px;
}

.dates-header {
    margin-bottom: 2.5rem;
}

.dates-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #4a9eff;
}

.dates-header h3 i {
    margin-right: 10px;
}

.dates-header p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
    font-weight: 300;
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.date-item {

    text-align: center;
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.date-item:last-child {
    border: none;
}

.date-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #f59e0b;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    font-weight: 600;
}

.date-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 8px 0;
    color: white;
}

.date-note {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 400;
}

@media (max-width: 768px) {
    .dates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 0;
    }

    .date-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 20px;
    }

    .date-item:nth-child(2n) {
        border-right: none;
    }

    .date-item:last-child,
    .date-item:nth-last-child(2) {
        border-bottom: none;
    }

    .dates-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .dates-grid {
        grid-template-columns: 1fr;
    }

    .date-item {
        border-right: none;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
}


.ibi-programs-section {
    background: #f8f9fa;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #1e3a8a;
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #1e3a8a;
}

.section-subtitle {
    max-width: 600px;
    font-size: 0.95rem;
    color: #6c757d;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.program-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    border: 1px solid #eee;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.card-top-border {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #1e3a8a, #ea580c);
    position: absolute;
    top: 0;
    left: 0;
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.program-icon i {
    font-size: 1.2rem;
    background: #1e3a8a;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
}



.program-name {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 10px 0;
    color: #212529;
}

.program-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.highlight-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: #f59e0b;
    text-transform: uppercase;
    margin-top: 12px;
    margin-bottom: 4px;
}

.skill-tag {
    background: #f4f4f4;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    margin: 3px 3px 3px 0;
    display: inline-block;
}

.career-roles-inline {
    font-size: 0.8rem;
    color: #6c757d;
}

.recruiters-wrap {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1e3a8a;
}

.program-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-outline-modern {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #1e3a8a;
    color: #1e3a8a;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
}

.btn-primary-modern {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    background: #1e3a8a;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-modern:hover {
    background: #ea580c;
    color: #fff;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.2rem;
    }
}


.ibi-about-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e293b 100%);
    padding: 100px 0;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.ibi-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.ibi-about-section .container {
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ea580c, #f59e0b);
    color: #fff;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.title-highlight {
    background: linear-gradient(45deg, #ea580c, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

.section-subtitle {
    max-width: 650px;
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #f59e0b;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 3rem;
}

.intro-card,
.recognition-card,
.accreditations-card,
.leadership-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
}

.intro-card::before,
.recognition-card::before,
.accreditations-card::before,
.leadership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1e3a8a, #f59e0b);
    border-radius: 15px 15px 0 0;
}

.intro-card:hover,
.recognition-card:hover,
.accreditations-card:hover,
.leadership-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.recognition-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(139, 92, 246, 0.1));
    border-color: rgba(139, 92, 246, 0.3);
}

.recognition-card::before {
    background: linear-gradient(90deg, #1e3a8a, #f59e0b);
}

.intro-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.intro-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1e3a8a, #1e3a8a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.intro-title {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-text {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 25px;
}

.intro-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.highlight:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
    transform: translateX(5px);
}

.highlight i {
    color: #f59e0b;
    font-size: 1.1rem;
}

.recognition-header,
.accreditations-header,
.leadership-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.recognition-header i,
.accreditations-header i,
.leadership-header i {
    color: #f59e0b;
    font-size: 1.3rem;
}

.recognition-header h3,
.accreditations-header h3,
.leadership-header h3 {
    color: #ffffff;
    font-weight: 700;
    margin: 0;
}

.recognition-header p,
.accreditations-header p {
    color: #94a3b8;
    margin: 5px 0 0 0;
    font-size: 0.9rem;
}

.recognition-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.feature i {
    color: #1e3a8a;
    font-size: 1.2rem;
    margin-top: 2px;
}

.recognition-card .feature i {
    color: #ea580c;
}

.feature h4 {
    margin: 0 0 8px 0;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
}

.feature p {
    margin: 0;
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
}

.accreditations-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accreditation-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.accreditation-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.accreditation-icon {
    background: linear-gradient(45deg, #1e3a8a, #f59e0b);
    color: #ffffff;
    padding: 8px 15px;
    font-weight: bold;
    font-size: 0.7rem;
    border-radius: 6px;
    min-width: 60px;
    text-align: center;
}

.accreditation-content h4 {
    margin: 0 0 5px 0;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
}

.accreditation-content p {
    margin: 0;
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.4;
}

.leadership-profile {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.profile-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #1e3a8a, #1e3a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    flex-shrink: 0;
}

.profile-content h4 {
    margin: 0 0 10px 0;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
}

.profile-title {
    color: #f59e0b;
    font-weight: 600;
    margin: 0 0 15px 0;
    font-size: 0.95rem;
}

.profile-desc {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.leadership-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.leadership-stat {
    text-align: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 3px;
}

.stat-name {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .ibi-about-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .intro-card,
    .recognition-card,
    .accreditations-card,
    .leadership-card {
        padding: 25px;
        margin-bottom: 20px;
    }

    .intro-title {
        font-size: 1.5rem;
    }

    .intro-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .highlight {
        font-size: 0.85rem;
        gap: 12px;
    }

    .stats-section {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .leadership-profile {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .leadership-stats {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .ibi-about-section {
        padding: 40px 0;
    }

    .section-badge {
        font-size: 0.7rem;
        padding: 6px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .intro-card,
    .recognition-card,
    .accreditations-card,
    .leadership-card {
        padding: 20px;
    }

    .intro-title {
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .profile-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}


.ibi-stats-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    font-family: 'Inter', system-ui, sans-serif;
}

.section-badge {
    display: inline-block;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    color: #1e3a8a;
    font-weight: 800;
    font-size: 2.5rem;
}

.title-highlight {
    color: #f59e0b;
}

.stats-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.main-stat-card {
    /* height: 150px; */
    width: 100%;
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-bottom: 4px solid #f59e0b;
    transition: 0.3s;

}

.main-stat-card:hover {
    transform: translateY(-8px);
}

.stat-icon {
  width: 65px;
    background: #1e3a8a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50% ;
    overflow: hidden;
    padding: 20px;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e3a8a;
}

.stat-label {
    font-weight: 600;
    color: #1e3a8a;
    font-size: 1rem;
}

.stats-secondary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.secondary-stat-card {
    background: #f1f4f8;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 6px;
}

.title-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.title-text p {
    text-align: center;
}

.secondary-icon {
    color: #f59e0b;
    font-size: 1.4rem;
}

.secondary-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e3a8a;
}

.secondary-label {
    font-size: 0.85rem;
    color: #636e72;
}

@media (max-width: 992px) {

    .stats-main-grid,
    .stats-secondary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .stats-main-grid,
    .stats-secondary-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

.ibi-fees-section {
    background: #f8f9fa;
    padding: 80px 0;
    font-family: 'Inter', system-ui, sans-serif;
}

.section-badge {
    display: inline-block;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.section-title {
    color: #1e3a8a;
    font-weight: 800;
    font-size: 2.5rem;
    padding-top: 1.5rem;
    margin-top: 0;
}

.title-highlight {
    color: #f59e0b;
}

/* Fees Card Styling */
.fees-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.fees-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.fees-icon {
    width: 60px;
    height: 60px;
    background: #1e3a8a;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.fees-title h3 {
    color: #1e3a8a;
    font-weight: 700;
    margin: 0;
    padding-top: 0.5rem;
}

/* Table Styling */
.fees-table {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.table-header {
    background: #1e3a8a;
    color: white;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 15px 20px;
    align-items: center;
}

.table-body .table-row {
    border-bottom: 1px solid #eee;
}

.total-row {
    background: #fef3c7;
    color: #1e3a8a;
    border-top: 2px solid #f59e0b !important;
}

/* Hostel Styling */
.hostel-fees {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.hostel-title {
    color: #1e3a8a;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-top: 1rem;
}

.hostel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.hostel-option {
    background: white;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.option-header {
    font-weight: 700;
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

/* Payment & Scholarship */
.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.payment-card h3 {
    color: #1e3a8a;
    font-weight: 700;
    padding-top: 0.75rem;
}

.scholarship-card {
    background: #1e3a8a;
    color: white;
    margin-top: 20px;
}

.scholarship-card h3 {
    color: #f59e0b;
    padding-top: 0.75rem;
}






.scholarship-subtitle {
    color: rgba(0, 0, 0, 0.9);
    font-size: 0.95rem;
    margin: 5px 0 0 0;
}

.method-item {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    padding: 15px;
    background: #fcfcfc;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.method-icon {
    color: #1e3a8a;
    font-size: 1.2rem;
}

.method-content h4 {
    color: #1e3a8a;
    font-weight: 700;
    margin: 0 0 8px 0;
    padding-top: 0.25rem;
}

.method-benefit {
    display: inline-block;
    font-size: 0.8rem;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 8px;
}

.scholarship-item {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.scholarship-badge {
    background: #f59e0b;
    color: #1e3a8a;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 4px;
    height: fit-content;
    font-size: 0.75rem;
    min-width: 80px;
    text-align: center;
}

.scholarship-content p {
    color: #1e3a8a;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 5px 0 0 0;
}

.scholarship-content h4 {
    color: #f59e0b;
    font-weight: 700;
    margin: 0 0 5px 0;
    padding-top: 0.25rem;
}

/* Responsive */
@media (max-width: 1100px) {
    .fees-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .table-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        font-size: 0.75rem;
        padding: 10px;
    }

    .hostel-grid {
        grid-template-columns: 1fr;
    }
}


.ibi-placements-theme {
    background-color: #1a1d21;
    padding: 80px 0;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.ibi-placements-theme .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ibi-placements-theme .gold-text {
    color: #c5a059 !important;
}

.theme-badge {
    display: inline-block;
    background: #c5a059;
    color: #1a1d21;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.theme-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.theme-subtitle {
    color: #a0a4a9;
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Flex Layout for Stats */
.theme-stats-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}





.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    color: #a0a4a9;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Recruiters Container */
.brands-container {
    background: #25282c;
    padding: 50px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-items: center;
}

.brand-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brands-title {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #c5a059;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.logo-box {
    background: rgba(0, 0, 0, 0.2);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    border: 1px solid rgba(197, 160, 89, 0.1);
    transition: 0.3s;
}

.logo-box:hover {
    border-color: #c5a059;
    background: rgba(197, 160, 89, 0.05);
}

/* CTA Button */
.theme-cta {
    display: inline-block;
    background: #c5a059;
    color: #1a1d21;
    padding: 18px 50px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.theme-cta:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.text-dim {
    color: #a0a4a9;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .theme-stats-flex {
        gap: 15px;
    }

}


.ibi-campus-life {
    background: #f8f9fa;
    padding: 5rem 0;
    font-family: 'Inter', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-badge {
    display: inline-block;
    color: white;
    background: #f59e0b;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.section-title {
    color: #1e3a8a;
    font-size: 2.5rem;
    font-weight: 800;
}

.title-highlight {
    color: #f59e0b;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    gap: 10px;
    margin-bottom: 3rem;
    border-bottom: 2px solid #ddd;
}

.tab-btn {
    padding: 15px 25px;
    border: none;
    background: transparent;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    border-radius: 8px 8px 0 0;
}

.tab-btn:hover {
    background: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
}

.tab-btn.active {
    color: #ffffff;
    background: #1e3a8a;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #f59e0b;
}

/* Tab Layout */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: ibiFadeUp 0.6s ease forwards;
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Info Column */
.tab-info h3 {
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.info-description {
    color: #1e3a8a;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.facility-item {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.facility-item i {
    color: #f59e0b;
    font-size: 1.25rem;
    margin-top: 3px;
}

.facility-item h5 {
    margin: 0;
    color: #1e3a8a;
    font-weight: 700;
    font-size: 1rem;
}

.facility-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #1e3a8a;
}

/* Gallery Slider */
.tab-gallery {
    position: relative;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, #1e3a8a);
    color: white;
    padding: 40px 30px 20px;
    z-index: 2;
}

@keyframes ibiFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .tab-grid {
        grid-template-columns: 1fr;
    }

    .tab-gallery {
        height: 350px;
    }

    .tab-navigation {
        overflow-x: auto;
        white-space: nowrap;
    }
}


.benefits-list h5 {
    color: #000000 !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
}

.benefits-list p {
    color: #000000 !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
}

.score-label {
    color: #000000 !important;
    font-weight: 700 !important;
}

.exam-list h5 {
    color: #000000 !important;
    font-weight: 700 !important;
}

/* Ensure icons are visible */
.benefits-list i {
    color: #c5a059 !important;
    font-size: 1.2rem !important;
}

/* Ensure card backgrounds don't interfere */
.scholarship-card {
    background: #ffffff !important;
}

.score-card {
    background: #fdfaf3 !important;
}



.ibi-admission-steps {
    background: #fef3c7;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-badge {
    display: inline-block;
    background: #1e3a8a;
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    color: #1e3a8a;
    font-weight: 800;
    font-size: 2.5rem;
}

.title-highlight {
    color: #f59e0b;
}

.section-subtitle {
    color: black;
    margin-bottom: 3rem;
}

/* Timeline Logic */
.steps-timeline {
    position: relative;
}

.step-connector {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #1e3a8a, #f59e0b);
    z-index: 1;
}

.step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #1e3a8a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    border: 5px solid #ffffff;
    flex-shrink: 0;
}

.step-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    flex: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.step-content:hover {
    transform: translateX(10px);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.step-icon {
    color: #f59e0b;
    font-size: 1.4rem;
    background: rgba(245, 158, 11, 0.1);
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.step-icon i {
    color: #f59e0b !important;
    font-size: 1.4rem !important;
}

.step-title {
    margin: 0;
    color: #1e3a8a;
    font-weight: 700;
    font-size: 1.3rem;
}

.step-description {
    color: #1e3a8a;
    line-height: 1.6;
}

.exam-badges {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.exam-badge {
    background: #fef3c7;
    color: #1e3a8a;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Dates Card */
.dates-card {
    background: #1e3a8a;
    color: white;
    padding: 3rem;
    border-radius: 15px;
    margin: 4rem 0;
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.date-item {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.date-item:last-child {
    border: none;
}

.date-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #f59e0b;
}

.date-value {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 5px 0;
}

.date-note {
    font-size: 0.85rem;
    opacity: 0.8;
}

.helpline {
    background: white;
    padding: 1.5rem;
    border-radius: 50px;
    text-align: center;
    border: 1px dashed #f59e0b;
}

@media (max-width: 768px) {
    .step-connector {
        left: 20px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .step-item {
        gap: 15px;
    }

    .dates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .date-item {
        border: none;
        margin-bottom: 20px;
    }
}


.ibi-faq-section {
    background: #fef3c7;
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
}

.section-badge {
    display: inline-block;
    background: #1e3a8a;
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title {
    color: #1e3a8a;
    font-weight: 800;
    font-size: 2.2rem;
}

.title-highlight {
    color: #f59e0b;
}

.faq-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    margin-top: 50px;
}

/* Categories */
.category-btn {
    display: block;
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
    color: #1e3a8a;
    font-weight: 600;
}

.category-btn.active {
    background: #1e3a8a;
    color: white;
    border-color: #1e3a8a;
}

.category-btn:hover:not(.active) {
    background: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
    color: #f59e0b;
    transform: translateX(5px);
}

/* Quick Contact Card */
.quick-contact {
    background: #1e3a8a;
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
}

.quick-contact h4 {
    color: #f59e0b;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
}

.contact-value {
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-contact {
    display: block;
    text-align: center;
    background: #f59e0b;
    color: #1e3a8a;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #ea580c;
    transform: translateY(-3px);
}

/* Accordion Customization */
.search-box {
    display: flex;
    align-items: center;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.search-box input {
    flex: 1;
    border: none;
    padding: 0 15px;
    outline: none;
    background-color: white;
}

.search-btn {
    background: #f59e0b;
    border: none;
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 700;
    color: #1e3a8a;
}

.accordion-item {
    border: none;
    background: white;
    margin-bottom: 15px;
    border-radius: 10px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.accordion-button {
    padding: 20px;
    font-weight: 700;
    color: #1e3a8a !important;
    background: white !important;
    border-radius: 10px !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: #f8f9fa !important;
    color: #1e3a8a !important;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    width: 90%;
    align-items: center;
}

.question-category {
    font-size: 0.7rem;
    background: #fef3c7;
    padding: 3px 10px;
    border-radius: 4px;
    color: #f59e0b;
    text-transform: uppercase;
}

.accordion-body {
    color: #1e3a8a;
    line-height: 1.8;
    padding: 0 20px 25px 20px;
    font-size: 0.95rem;
}

.faq-small-text {
    margin-top: 10px;
    margin-bottom: 10px;
}


.btn-load-more {
    background: transparent;
    border: 2px solid #1e3a8a;
    color: #1e3a8a;
    padding: 10px 30px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: #1e3a8a;
    color: white;
}

@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr;
    }

    .categories-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .categories-list {
        grid-template-columns: 1fr;
    }

    .faq-question {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}