/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a365d;
    --secondary-color: #d4af37;
    --accent-color: #4299e1;
    --light-blue: #ebf8ff;
    --dark-color: #2d3748;
    --light-color: #f7fafc;
    --gray-color: #718096;
    --white: #ffffff;
    --success-color: #38a169;
    --danger-color: #e53e3e;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', 'Roboto', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.urdu-text {
    font-family: 'Noto Sans Arabic', sans-serif;
    direction: rtl;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #0f2648;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
}

.btn i {
    margin-right: 8px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.section-header h2 span {
    color: var(--secondary-color);
}

.section-header p {
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow);
}

.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-contact span {
    margin-right: 20px;
}

.top-contact i, .top-social i {
    margin-right: 8px;
}

.top-social a {
    color: var(--white);
    margin-left: 15px;
    font-size: 1.1rem;
}

.top-social a:hover {
    color: var(--secondary-color);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo .college-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
}

.college-tagline {
    margin-left: 15px;
    line-height: 1.2;
}

.college-tagline span {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.college-tagline small {
    color: var(--gray-color);
    font-size: 0.8rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-color);
    padding: 8px 15px !important;
    margin: 0 5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.nav-btn {
    margin-left: 15px;
    padding: 8px 20px;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: 5px;
}

.dropdown-item {
    padding: 10px 20px;
}

.dropdown-item:hover {
    background-color: var(--light-blue);
    color: var(--primary-color);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content .urdu-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0;
    color: var(--white);
}

.hero-content .subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.hero-content .main-title {
    font-size: 3rem;
    color: var(--white);
    margin: 1rem 0;
}

.hero-content .main-title span {
    color: var(--secondary-color);
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 5px;
    backdrop-filter: blur(5px);
}

.highlight-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 10px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.admission-badge {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e6c158 100%);
    color: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: rotate(5deg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.badge-content h3 {
    font-size: 3rem;
    margin-bottom: 5px;
    font-weight: 800;
}

.badge-content p {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.badge-content small {
    font-size: 0.9rem;
    color: rgba(26, 54, 93, 0.8);
}

/* ===== QUICK INFO SECTION ===== */
.quick-info {
    background-color: var(--light-color);
    padding: 50px 0;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.info-card {
    background-color: var(--white);
    padding: 25px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.info-card p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

/* ===== PROGRAMS SECTION ===== */
.programs-section {
    padding: 80px 0;
    background-color: var(--white);
}

.program-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.program-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.program-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.program-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.program-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.program-list i {
    color: var(--success-color);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

.program-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 20px;
}

.program-link:hover {
    color: var(--accent-color);
}

.program-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.program-link:hover i {
    transform: translateX(5px);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.features-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-placeholder {
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: 20px;
}

.image-placeholder p {
    font-size: 1.5rem;
    font-weight: 500;
}

.features-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 15px;
    background-color: var(--white);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.feature-content p {
    color: var(--gray-color);
    margin: 0;
    font-size: 0.95rem;
}

/* ===== EVENTS SECTION ===== */
.events-section {
    padding: 80px 0;
    background-color: var(--white);
}

.event-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.event-card:hover {
    border-bottom-color: var(--secondary-color);
    transform: translateY(-10px);
}

.event-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.event-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.event-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.event-card p {
    color: var(--gray-color);
    margin: 0;
}

/* ===== CALL TO ACTION SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-logo h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 5px;
}

.footer-logo h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-logo .urdu-text {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer h5 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: var(--white);
    transform: scale(1.1);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
}











/* ===== RESPONSIVE STYLES ===== */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .hero-content .main-title {
        font-size: 2.5rem;
    }
    
    .hero-content .urdu-text h2 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section::before {
        width: 100%;
        height: 40%;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 80%);
        opacity: 0.3;
    }
    
    .hero-content .main-title {
        font-size: 2.2rem;
    }
    
    .hero-content .urdu-text h2 {
        font-size: 2rem;
    }
    
    .admission-badge {
        max-width: 300px;
        margin: 30px auto 0;
    }
    
    .features-image {
        margin-bottom: 50px;
    }
    
    .nav-btn {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .top-bar {
        text-align: center;
    }
    
    .top-contact, .top-social {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
    }
    
    .top-contact span {
        margin: 0 10px 5px;
    }
    
    .top-social a {
        margin: 0 8px;
    }
    
    .hero-content .main-title {
        font-size: 1.8rem;
    }
    
    .hero-content .urdu-text h2 {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .quick-info {
        padding: 30px 0;
        margin-top: 0;
    }
    
    .info-card {
        margin-bottom: 20px;
    }
    
    .programs-section, .features-section, .events-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 80px;
        right: 20px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .logo {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .college-tagline {
        margin-left: 0;
        margin-top: 5px;
    }
    
    .hero-content .main-title {
        font-size: 1.6rem;
    }
    
    .hero-content .urdu-text h2 {
        font-size: 1.6rem;
    }
    
    .highlight-item {
        width: 100%;
    }
    
    .program-card, .event-card {
        padding: 20px;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}


/* ===== ADDITIONAL STYLES FOR OTHER PAGES ===== */

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.9)), url('../images/campus-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
}

.about-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.about-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-card h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.mission-vision {
    background-color: var(--light-color);
    padding: 80px 0;
}

.mission-card, .vision-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
}

.mission-icon, .vision-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mission-icon i, .vision-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Leadership Page Styles */
.leadership-section {
    padding: 80px 0;
}

.leader-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.leader-image {
    height: 300px;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.leader-image i {
    font-size: 5rem;
}

.leader-info {
    padding: 30px;
}

.leader-info h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.leader-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.leader-qualifications {
    margin-bottom: 20px;
}

.leader-qualifications li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.leader-qualifications i {
    color: var(--success-color);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

.leader-contact {
    padding-top: 20px;
    border-top: 1px solid var(--light-color);
}

.leader-contact a {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    margin-right: 15px;
}

.leader-contact a i {
    margin-right: 8px;
    color: var(--secondary-color);
}

/* Programs Page Styles */
.programs-hero {
    background: linear-gradient(rgba(66, 153, 225, 0.9), rgba(26, 54, 93, 0.9)), url('../images/programs-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.program-detail-section {
    padding: 80px 0;
}

.program-detail-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
}

.program-detail-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.program-detail-card h3 i {
    margin-right: 15px;
    color: var(--secondary-color);
}

.program-features {
    margin: 25px 0;
}

.program-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.program-features i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 0.9rem;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.fee-table th, .fee-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--light-color);
}

.fee-table th {
    background-color: var(--light-blue);
    color: var(--primary-color);
    font-weight: 600;
}

.fee-table tr:hover {
    background-color: rgba(66, 153, 225, 0.05);
}

.discount-badge {
    display: inline-block;
    background-color: var(--danger-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
}

/* Admission Page Styles */
.admission-process {
    padding: 80px 0;
    background-color: var(--light-color);
}

.process-step {
    text-align: center;
    padding: 30px;
    position: relative;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.process-step p {
    color: var(--gray-color);
    margin: 0;
}

/* For connecting lines between steps */
.process-step::after {
    content: "";
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    z-index: 0;
}

.process-step:last-child::after {
    display: none;
}

/* Responsive adjustment for process steps */
@media (max-width: 767.98px) {
    .process-step::after {
        display: none;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-info-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.contact-info-card h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contact-info-card h4 i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form .form-control {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 54, 93, 0.25);
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.map-placeholder {
    height: 100%;
    background-color: var(--light-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Events Page Styles */
.events-timeline {
    position: relative;
    padding: 80px 0;
}

.events-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-event {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-event:nth-child(even) {
    flex-direction: row-reverse;
}

.event-date {
    width: 120px;
    height: 120px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: var(--shadow);
}

.event-date .month {
    font-size: 1rem;
    font-weight: 500;
}

.event-date .day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-content {
    flex: 1;
    padding: 25px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin: 0 30px;
    z-index: 1;
}

.timeline-event:nth-child(odd) .event-content {
    margin-left: 30px;
}

.timeline-event:nth-child(even) .event-content {
    margin-right: 30px;
}

.event-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.event-content p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.event-tag {
    background-color: var(--light-blue);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Responsive adjustment for timeline */
@media (max-width: 991.98px) {
    .events-timeline::before {
        left: 60px;
    }
    
    .timeline-event, .timeline-event:nth-child(even) {
        flex-direction: row;
    }
    
    .event-content {
        margin-left: 30px !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 767.98px) {
    .events-timeline::before {
        display: none;
    }
    
    .timeline-event {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .event-content {
        margin: 20px 0 0 !important;
    }
}

/* Gallery Page Styles */
.gallery-section {
    padding: 80px 0;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 30px;
    color: var(--dark-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin: 0;
}

/* Scholarship Page Styles */
.scholarship-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.scholarship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.scholarship-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.scholarship-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.scholarship-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.scholarship-title {
    flex: 1;
}

.scholarship-title h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.scholarship-amount {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.scholarship-details {
    margin-bottom: 20px;
}

.scholarship-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.scholarship-details i {
    color: var(--success-color);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

.scholarship-deadline {
    background-color: var(--light-color);
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--dark-color);
}

.scholarship-deadline strong {
    color: var(--danger-color);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .about-hero, .programs-hero {
        padding: 80px 0;
    }
    
    .about-hero h1, .programs-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .about-hero, .programs-hero {
        padding: 60px 0;
    }
    
    .about-hero h1, .programs-hero h1 {
        font-size: 2rem;
    }
    
    .about-card, .program-detail-card, .contact-form {
        padding: 25px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}



/* ===== APPLY PAGE SPECIFIC STYLES ===== */

/* Page Header */
.page-header {
    background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.9)), url('../images/apply-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 80px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    justify-content: center;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Application Form Section */
.application-form-section {
    padding: 80px 0;
}

.form-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #e9ecef;
}

.form-card .card-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 30px;
    border-bottom: 3px solid var(--secondary-color);
}

.form-card .card-header h4 {
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.form-card .card-body {
    padding: 30px;
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.form-control, .form-select {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 54, 93, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Alternative Application Methods */
.method-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-top: 4px solid transparent;
    transition: var(--transition);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.method-card:nth-child(1) {
    border-top-color: var(--primary-color);
}

.method-card:nth-child(2) {
    border-top-color: var(--success-color);
}

.method-card:nth-child(3) {
    border-top-color: var(--danger-color);
}

.method-card h5 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.method-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

/* Documents Section */
.document-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.document-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.document-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.document-card h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.document-card ul li {
    margin-bottom: 8px;
    color: var(--gray-color);
}

/* Form validation styles */
.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: var(--success-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2338a169' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
}

.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: var(--danger-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23e53e3e'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e53e3e' stroke='none'/%3e%3c/svg%3e");
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .form-card .card-body {
        padding: 20px;
    }
    
    .method-card, .document-card {
        padding: 25px;
    }
}


/* ===== FEES PAGE SPECIFIC STYLES ===== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
    color: var(--white);
    padding: 80px 0 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.page-header .lead {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 30px;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Fee Summary Section */
.fee-summary-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.fee-summary-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--secondary-color);
}

.summary-icon {
    width: 100px;
    height: 100px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.summary-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.fee-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 10px 0;
    line-height: 1;
}

.fee-summary-card .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.fee-summary-card .feature-item i {
    margin-right: 10px;
}

/* Program Fee Cards */
.program-fee-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.program-header h3 {
    color: var(--primary-color);
    margin: 0;
    display: flex;
    align-items: center;
}

.program-header h3 i {
    margin-right: 15px;
    color: var(--secondary-color);
}

.discount-badge {
    background-color: var(--danger-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Fee Tables */
.fee-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.fee-table th {
    background-color: var(--light-blue);
    color: var(--primary-color);
    font-weight: 600;
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid var(--primary-color);
}

.fee-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.fee-table tr:hover {
    background-color: rgba(66, 153, 225, 0.05);
}

.fee-table strong {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.note {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-top: 15px;
    font-style: italic;
}

/* Additional Charges */
.additional-charges-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.charges-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.charges-card h4 {
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.charges-card h4 i {
    margin-right: 15px;
    color: var(--secondary-color);
}

.charges-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.charges-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.charges-list li:last-child {
    border-bottom: none;
}

.charges-list .amount {
    font-weight: 600;
    color: var(--primary-color);
}

/* Discounts Section */
.discounts-section {
    padding: 80px 0;
}

.discount-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.discount-card:hover {
    transform: translateY(-10px);
}

.discount-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 25px;
    text-align: center;
    position: relative;
}

.discount-percent {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--white);
}

.discount-header h4 {
    color: var(--white);
    margin: 0;
    font-size: 1.3rem;
}

.discount-body {
    padding: 25px;
}

.discount-body h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.discount-body ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.discount-body ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.discount-body ul li i {
    color: var(--success-color);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Payment Methods */
.payment-methods-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.payment-method {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.payment-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.payment-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.payment-method h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.payment-instructions {
    margin-top: 40px;
}

/* Calculator Section */
.calculator-section {
    padding: 80px 0;
}

.calculator-card, .calculator-result {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.calculator-card h3, .calculator-result h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.form-check-label {
    color: var(--dark-color);
    font-size: 0.95rem;
}

.result-placeholder {
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--gray-color);
}

.result-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ddd;
}

.result-details .result-header {
    background-color: var(--light-blue);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.result-header h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.total-fee {
    display: flex;
    flex-direction: column;
}

.final-fee {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.original-fee {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: var(--gray-color);
    margin-top: 5px;
}

.result-breakdown table {
    margin-bottom: 0;
}

.result-breakdown td {
    border: none;
    padding: 10px 0;
}

.discount-row td {
    color: var(--success-color) !important;
}

.total-row td {
    border-top: 2px solid var(--primary-color);
    padding-top: 15px;
}

/* Responsive Styles for Fees Page */
@media (max-width: 991.98px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .fee-amount {
        font-size: 2.5rem;
    }
    
    .program-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .fee-summary-card, .program-fee-card, .charges-card, 
    .calculator-card, .calculator-result {
        padding: 20px;
    }
    
    .fee-table th, .fee-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
    
    .discount-percent {
        font-size: 2.8rem;
    }
}

@media (max-width: 575.98px) {
    .fee-table {
        font-size: 0.85rem;
    }
    
    .discount-card {
        margin-bottom: 20px;
    }
}



/* ===== INTERMEDIATE PAGE SPECIFIC STYLES ===== */

/* Hero Badge */
.hero-badge {
    margin-top: 20px;
}

.hero-badge .badge {
    margin: 0 5px;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Program Detail Card */
.program-detail-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
    height: 100%;
    transition: var(--transition);
}

.program-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.program-detail-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-color);
}

.program-detail-card h3 i {
    margin-right: 15px;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.program-features {
    margin: 20px 0;
}

.program-features h5 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.program-features ul {
    padding-left: 0;
}

.program-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    padding: 5px 0;
    border-bottom: 1px dashed #eee;
}

.program-features li:last-child {
    border-bottom: none;
}

.program-features i {
    color: var(--success-color);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

.program-features .fa-user-md,
.program-features .fa-laptop-code,
.program-features .fa-chart-line,
.program-features .fa-paint-brush {
    color: var(--primary-color);
}

.program-actions {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid var(--light-color);
}

.program-actions .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

/* Fee Structure Card */
.fee-structure-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--secondary-color);
}

.fee-highlight h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.fee-highlight .lead {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.discount-badge {
    display: inline-block;
    background-color: var(--danger-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fee-details h5 {
    color: var(--gray-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.original-fee {
    font-size: 1.5rem;
    color: var(--gray-color);
    margin-bottom: 10px;
}

.discounted-fee h2 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 5px;
}

.discounted-fee h2 small {
    font-size: 1rem;
    color: var(--gray-color);
    font-weight: 500;
}

.discounted-fee .text-success {
    font-size: 1.1rem;
    font-weight: 600;
}

.fee-table-container {
    overflow-x: auto;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    min-width: 600px;
}

.fee-table th {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.fee-table td {
    padding: 15px;
    border-bottom: 1px solid var(--light-color);
}

.fee-table tr:hover {
    background-color: rgba(66, 153, 225, 0.05);
}

.fee-table strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Feature Card */
.feature-card {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--gray-color);
    margin: 0;
}

/* Process Steps */
.process-steps {
    position: relative;
    padding: 20px 0;
}

.process-steps::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--primary-color);
    z-index: 0;
}

.process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 30px;
    box-shadow: 0 5px 15px rgba(26, 54, 93, 0.3);
}

.step-content {
    flex: 1;
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--gray-color);
    margin: 0;
}

/* Admission Card */
.admission-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--primary-color);
}

.admission-card .card-title {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
}

.admission-card ul {
    padding-left: 20px;
}

.admission-card li {
    margin-bottom: 10px;
    color: var(--dark-color);
    position: relative;
}

.admission-card li::before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .process-steps::before {
        left: 35px;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-right: 20px;
    }
}

@media (max-width: 767.98px) {
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .fee-highlight h3 {
        font-size: 2.8rem;
    }
    
    .program-detail-card {
        padding: 20px;
    }
}

@media (max-width: 575.98px) {
    .program-actions .btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .fee-table {
        min-width: 100%;
        font-size: 0.9rem;
    }
    
    .fee-table th, 
    .fee-table td {
        padding: 10px;
    }
}



/* ===== SCHOLARSHIPS PAGE STYLES ===== */

/* Scholarships Hero */
.scholarships-hero {
    background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.9)), url('../images/scholarships-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.scholarships-hero .hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.scholarships-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badge {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-badge span {
    background-color: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--secondary-color);
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
}

.hero-badge i {
    margin-right: 8px;
    color: var(--secondary-color);
}

/* Scholarships Overview */
.scholarships-overview {
    padding: 80px 0 40px;
}

.overview-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--secondary-color);
}

.overview-card h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.overview-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin: 0;
}

.overview-icon {
    width: 150px;
    height: 150px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.overview-icon i {
    font-size: 4rem;
    color: var(--primary-color);
}

/* Scholarship Types */
.scholarship-types {
    padding: 60px 0;
    background-color: var(--light-color);
}

.scholarship-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.scholarship-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.scholarship-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.scholarship-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.scholarship-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.scholarship-title {
    flex: 1;
}

.scholarship-title h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.scholarship-amount {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.scholarship-details {
    margin-bottom: 20px;
    flex: 1;
}

.scholarship-details p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.scholarship-details ul {
    margin-bottom: 0;
}

.scholarship-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.scholarship-details i {
    color: var(--success-color);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

.scholarship-deadline {
    background-color: var(--light-color);
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.scholarship-deadline strong {
    color: var(--danger-color);
}

.scholarship-action {
    display: flex;
    gap: 10px;
}

/* Application Process */
.application-process {
    padding: 80px 0;
}

.process-steps .process-step {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 10px;
    height: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.process-steps .process-step:hover {
    transform: translateY(-5px);
}

.process-steps .step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-steps .step-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-steps .step-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.process-steps h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.process-steps p {
    color: var(--gray-color);
    margin: 0;
    font-size: 0.95rem;
}

/* Required Documents */
.required-documents {
    padding: 60px 0;
    background-color: var(--light-color);
}

.documents-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.documents-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.documents-card > p {
    color: var(--gray-color);
    margin-bottom: 30px;
}

.documents-list {
    margin-bottom: 20px;
}

.documents-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-color);
}

.documents-list i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.documents-note {
    background-color: var(--light-blue);
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
}

.documents-note i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.documents-note p {
    margin: 0;
    color: var(--dark-color);
}

/* Scholarship Details Tabs */
.scholarship-details {
    padding: 80px 0;
}

.details-tabs {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.details-tabs .nav-tabs {
    background-color: var(--light-color);
    padding: 20px 20px 0;
    border-bottom: 1px solid #dee2e6;
}

.details-tabs .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    border: none;
    padding: 12px 25px;
    margin-right: 5px;
    border-radius: 5px 5px 0 0;
}

.details-tabs .nav-link.active {
    background-color: var(--white);
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.details-tabs .nav-link:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.7);
}

.tab-content {
    padding: 30px;
}

.tab-content-inner h4 {
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-color);
}

.tab-content-inner h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.tab-content-inner ul {
    margin-bottom: 25px;
}

.tab-content-inner li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.tab-content-inner li:before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.tab-note {
    background-color: var(--light-color);
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid var(--secondary-color);
}

.tab-note p {
    margin: 0;
    color: var(--dark-color);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.accordion-item {
    margin-bottom: 15px;
    border: none;
    border-radius: 5px !important;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-button {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    padding: 20px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-blue);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.accordion-body {
    padding: 20px;
    background-color: var(--white);
    color: var(--dark-color);
}

/* Scholarship CTA */
.scholarship-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.scholarship-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--white);
}

.scholarship-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-note {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
}

.cta-note i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.cta-note p {
    margin: 0;
    font-size: 1rem;
}

/* Responsive Styles for Scholarships Page */
@media (max-width: 991.98px) {
    .scholarships-hero {
        padding: 80px 0;
    }
    
    .scholarships-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .overview-card {
        padding: 30px;
    }
    
    .overview-stats {
        justify-content: center;
    }
    
    .overview-icon {
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .scholarships-hero {
        padding: 60px 0;
    }
    
    .scholarships-hero .hero-title {
        font-size: 2rem;
    }
    
    .scholarships-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-badge {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .overview-card, .documents-card, .tab-content {
        padding: 25px;
    }
    
    .scholarship-action {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
}

@media (max-width: 575.98px) {
    .scholarships-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .overview-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .details-tabs .nav-tabs {
        padding: 15px 15px 0;
    }
    
    .details-tabs .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .scholarship-cta h2 {
        font-size: 2rem;
    }
}