/* ============================================================
   About Area Specific Styles
============================================================ */

/* Section Background */
#about-area {
    background-color: #f8f9fa;
    padding: 50px 0;
}

/* Section Heading */
#about-area .fs-35 {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
}

#about-area .section__desc {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
}

/* Divider */
#about-area .section-divider {
    width: 80px;
    height: 3px;
    background-color: #ec5252;
    margin-top: 15px;
}

/* About Text Content */
#about-area h3 {
    font-size: 30px;
    font-weight: 600;
    color: #233d63;
}

#about-area p {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
}

#about-area ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#about-area ul li {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #7f8897;
    margin-bottom: 15px;
}

#about-area ul li i {
    color: #ec5252;
    font-size: 20px;
    margin-right: 10px;
}

/* Icon Colors */
#about-area ul li:nth-child(2) i {
    color: #F68A03;
}

#about-area ul li:nth-child(3) i {
    color: #358FF7;
}

#about-area ul li:nth-child(4) i {
    color: #38BB0C;
}

/* About Image */
#about-area .about-image {
    position: relative;
}

#about-area .about-image img {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Decorative Gradient Element */
#about-area .about-image .bg-gradient {
    background: linear-gradient(135deg, #ec5252, #f58585);
    width: 200px;
    height: 200px;
    opacity: 0.1;
    border-radius: 50%;
}

/* Button */
.theme-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background-color: #ec5252;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.theme-btn:hover {
    background-color: #bf4141;
}
/* ============================================================
   Admissions Area Specific Styles
============================================================ */
/* Admissions Area Styles */
.admissions-area {
    padding: 80px 0;
    background: var(--primary-background, #f8f9fa);
}

/* Section Header */
.section-title {
    font-size: 35px;
    font-weight: 700;
    color: var(--primary-text, #233d63);
    margin-bottom: 20px;
    text-align: center;
}

.section-desc {
    font-size: 16px;
    color: var(--secondary-text, #7f8897);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

#admissions-area .section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ec5252, #f58585);
    margin: 20px auto;
    border-radius: 3px;
}

/* Admissions Image */
.admissions-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.admissions-image img {
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.bg-gradient {
    background: linear-gradient(135deg, rgba(236, 82, 82, 0.5), rgba(52, 58, 64, 0.3));
    z-index: 1;
}

/* Admissions Details */
.admissions-details {
    z-index: 2;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-text, #233d63);
    margin-bottom: 20px;
}

/* Highlights */
.admissions-highlights {
    padding: 0;
    margin: 0;
    list-style: none;
}

.admissions-highlights li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--primary-text, #233d63);
}

.icon-circle {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 20px;
}

.bg-primary {
    background-color: #007bff;
}

.bg-success {
    background-color: #28a745;
}

.bg-info {
    background-color: #17a2b8;
}

.bg-warning {
    background-color: #ffc107;
}

/* Buttons */
.btn-primary-gradient {
    padding: 12px 25px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ec5252, #f58585);
    color: var(--light-text, #ffffff);
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    margin-right: 15px; /* Space between buttons on desktop */
}

.btn-primary-gradient:hover {
    background: linear-gradient(135deg, #d94343, #ec5252);
    box-shadow: 0 8px 20px rgba(236, 82, 82, 0.3);
    transform: translateY(-3px);
}

.btn-outline-dark {
    padding: 12px 25px;
    border-radius: 8px;
    border: 2px solid var(--primary-text, #233d63);
    color: var(--primary-text, #233d63);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: var(--primary-text, #233d63);
    color: var(--light-text, #ffffff);
}

/* Responsive Design */
@media (max-width: 991px) {
    .admissions-area {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-desc {
        font-size: 14px;
    }

    .icon-circle {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .btn-primary-gradient {
        margin-right: 10px; /* Adjust margin between buttons for tablets */
    }
}

@media (max-width: 576px) {
    .admissions-area {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .btn-primary-gradient,
    .btn-outline-dark {
        width: 100%; /* Full-width buttons on smaller screens */
        text-align: center;
        margin-right: 0; /* Remove margin between buttons on mobile */
        margin-bottom: 10px; /* Add space between stacked buttons */
    }
}



/* ============================================================
   Chairman & Principal Section Specific Styles
============================================================ */

/* Section Background */
#chairman-principal {
    background-color: #f8f9fa;
    padding: 50px 0;
}

/* Section Heading */
#chairman-principal h2 {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
}

#chairman-principal .section__desc {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
}

/* Divider */
#chairman-principal .section-divider {
    width: 80px;
    height: 3px;
    background-color: #ec5252;
    margin-top: 15px;
}

/* Individual Box Styling */
#chairman-principal .chairman-box, #chairman-principal .principal-box {
    text-align: center;
}

#chairman-principal .chairman-box img, #chairman-principal .principal-box img {
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#chairman-principal .chairman-box h3, #chairman-principal .principal-box h3 {
    font-size: 25px;
    font-weight: 700;
    color: #233d63;
    margin-top: 15px;
}

#chairman-principal .chairman-box p, #chairman-principal .principal-box p {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
}

#chairman-principal .chairman-box p.text-color, #chairman-principal .principal-box p.text-color {
    font-size: 14px;
    font-weight: 600;
    color: #ec5252;
    margin-top: 5px;
}

/* Button Styling */
#chairman-principal .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background-color: #ec5252;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#chairman-principal .btn:hover {
    background-color: #bf4141;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #chairman-principal .chairman-box img, #chairman-principal .principal-box img {
        width: 150px;
        height: 150px;
    }
    #chairman-principal .chairman-box h3, #chairman-principal .principal-box h3 {
        font-size: 22px;
    }
    #chairman-principal .chairman-box p, #chairman-principal .principal-box p {
        font-size: 14px;
    }
}


/* Additional Features */
/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ec5252, #f58585);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* Loading animations */
.stats-number {
    position: relative;
    display: inline-block;
}

.stats-number::after {
    content: '+';
    position: absolute;
    right: -15px;
    top: 0;
    color: #ec5252;
}

/* Hover effects for company logos */
.company-logo-wrap {
    perspective: 1000px;
}

.company-card {
    transition: transform 0.5s;
    transform-style: preserve-3d;
}

.company-card:hover {
    transform: rotateY(10deg);
}

/* Print styles */
@media print {
    #placements-section {
        background: none;
        padding: 20px 0;
    }

    .placement-stats-card,
    .success-story-card,
    .company-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .placement-btn,
    .scroll-top {
        display: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    #placements-section {
        background: #ffffff;
    }

    .stats-icon {
        background: #233d63;
    }

    .company-badge {
        background: #233d63;
        color: #ffffff;
    }

    .placement-btn-primary {
        background: #233d63;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    #placements-section {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    }

    .fs-35,
    .section-subtitle,
    .stats-number,
    .student-info h4 {
        color: #ffffff;
    }

    .section__desc,
    .stats-text,
    .story-content {
        color: #cccccc;
    }

    .placement-stats-card,
    .success-story-card,
    .company-card,
    .placement-cta {
        background: #2d2d2d;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    .company-logo {
        filter: brightness(0.8) grayscale(100%);
    }

    .company-card:hover .company-logo {
        filter: brightness(1) grayscale(0%);
    }

    .placement-btn-outline {
        border-color: #ffffff;
        color: #ffffff;
    }

    .placement-btn-outline:hover {
        background: #ffffff;
        color: #233d63;
    }
}
/* Base Section Styles */
.faculty-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-header .badge {
    background: linear-gradient(135deg, #ec5252, #f58585);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.section-header h2 {
    color: #233d63;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 25px;
}

.header-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.line-dot {
    width: 8px;
    height: 8px;
    background: #ec5252;
    border-radius: 50%;
}

.line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ec5252, #f58585);
}

.section-desc {
    color: #7f8897;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Faculty Grid Layout */
.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

/* Faculty Card Styles */
.faculty-card {
    perspective: 1500px;
    height: 500px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.faculty-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.card-back {
    transform: rotateY(180deg);
    padding: 30px;
    background: linear-gradient(135deg, #233d63 0%, #1a2d4a 100%);
    color: #ffffff;
}

/* Faculty Image Styles */
.faculty-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.faculty-card:hover .faculty-image img {
    transform: scale(1.05);
}

.expertise-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(35, 61, 99, 0.9);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
}

/* Faculty Info Styles */
.faculty-info {
    padding: 25px;
    text-align: center;
}

.faculty-info h3 {
    color: #233d63;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.position {
    color: #7f8897;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Stats Section Styles */
.stats {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.stat {
    text-align: center;
}

.number {
    color: #ec5252;
    font-size: 20px;
    font-weight: 700;
    display: block;
}

.label {
    color: #7f8897;
    font-size: 13px;
}

/* Back Card Content Styles */
.card-back .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.expertise h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.expertise ul {
    list-style: none;
    padding: 0;
}

.expertise li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.expertise li:before {
    content: "•";
    color: #ec5252;
}

/* Social Links Styles */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #ec5252;
    transform: translateY(-3px);
}

/* Profile Button Styles */
.profile-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #ec5252;
    color: #ffffff;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.profile-btn:hover {
    background: #f58585;
    transform: translateY(-3px);
}

/* Action Section Styles */
.faculty-action {
    margin-top: 80px;
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, #233d63 0%, #1a2d4a 100%);
    border-radius: 15px;
    color: #ffffff;
}

.action-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.action-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #ec5252;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f58585;
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .faculty-section {
        padding: 60px 0;
    }

    .faculty-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .faculty-action {
        margin-top: 40px;
        padding: 40px 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }
}
/* Awards Section Base Styles */
.awards-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .badge {
    display: inline-block;
    padding: 8px 16px;
    background: #f58585;
    color: #ffffff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    color: #233d63;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
}

.header-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.line-dot {
    width: 8px;
    height: 8px;
    background: #ec5252;
    border-radius: 50%;
}

.line {
    width: 60px;
    height: 2px;
    background: #ec5252;
}

.section-desc {
    color: #7f8897;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Awards Grid Layout */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Award Card Styles */
.award-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.award-card.featured {
    border: 2px solid #ec5252;
}

/* Award Icon */
.award-icon {
    font-size: 32px;
    color: #ec5252;
    margin-bottom: 20px;
}

/* Award Content */
.award-content h3 {
    color: #233d63;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.award-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.award-meta span {
    font-size: 14px;
    color: #7f8897;
}

.award-content p {
    color: #7f8897;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Award Statistics */
.award-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    color: #233d63;
    font-size: 18px;
    font-weight: 700;
}

.stat .label {
    display: block;
    color: #7f8897;
    font-size: 13px;
}

/* Awards Action Section */
.awards-action {
    background: linear-gradient(135deg, #ec5252 0%, #f58585 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    color: #ffffff;
}

.action-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.action-content p {
    margin-bottom: 25px;
    font-size: 16px;
    opacity: 0.9;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #ffffff;
    color: #233d63;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Dark Mode Styles */
@media (prefers-color-scheme: dark) {
    .awards-section {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    }

    .award-card {
        background: #2d2d2d;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    .award-card:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .award-content h3,
    .stat .number {
        color: #ffffff;
    }

    .award-meta span,
    .award-content p,
    .stat .label {
        color: #cccccc;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .awards-section {
        padding: 40px 0;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .awards-action {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .award-meta {
        flex-direction: column;
        gap: 8px;
    }

    .award-stats {
        flex-direction: column;
        gap: 15px;
    }
}

/* General Section Styles */
.news-events-section {
    padding: 60px 0;
}

/* Grid Layout */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three equal columns */
    gap: 20px;
}

/* Card Styles */
.content-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures footer stays at the bottom */
    height: 100%; /* Uniform card height */
    overflow: hidden;
}

/* Card Header */
.card-header {
    padding: 20px;
    text-align: center;
}

.header-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.header-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.line-dot {
    width: 8px;
    height: 8px;
    background: #ec5252;
    border-radius: 50%;
}

.line {
    width: 40px;
    height: 2px;
    background: #ec5252;
}

/* Content Lists (News, Notices, Events) */
.news-list, .notice-list, .event-list {
    padding: 15px;
    flex: 1; /* Fills available space between header and footer */
    max-height: 400px; /* Prevents overflow */
    overflow-y: auto;
}

/* Individual Items */
.news-item, .notice-item, .event-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.date-badge {
    width: 60px;
    text-align: center;
    background: #f8f8f8;
    border-radius: 8px;
    padding: 5px;
}

.date-badge .day {
    font-size: 16px;
    font-weight: bold;
    color: #ec5252;
}

.date-badge .month {
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
}

.news-content, .notice-content, .event-content {
    flex: 1;
}

/* Titles and Excerpts */
.news-title, .notice-title, .event-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title:hover, .notice-title:hover, .event-title:hover {
    color: #ec5252;
}

.news-excerpt, .event-excerpt {
    font-size: 12px;
    color: #777;
    margin: 5px 0;
}

/* Read More Link */
.read-more {
    font-size: 12px;
    color: #ec5252;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.read-more:hover {
    color: #f76a6a;
}

/* Footer Styles */
.card-footer {
    padding: 15px;
    text-align: center;
    background: #f8f8f8;
    border-top: 1px solid #ececec;
    margin-top: auto; /* Pushes the footer to the bottom */
}

.archive-link {
    color: #ec5252;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
}

.archive-link:hover {
    color: #f76a6a;
}

/* Event Tabs */
.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border-bottom: 1px solid #ececec;
}

.tab-btn {
    padding: 5px 15px;
    font-size: 14px;
    color: #777;
    background: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #ec5252;
    color: #ffffff;
    font-weight: bold;
}

.tab-btn:hover {
    background: #f76a6a;
    color: #ffffff;
}

.event-list {
    display: none;
}

.event-list.active {
    display: block;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .grid-layout {
        grid-template-columns: 1fr; /* Stack cards vertically */
    }

    .content-card {
        margin-bottom: 20px;
    }

    .news-list, .notice-list, .event-list {
        max-height: 300px;
    }
}

@media (max-width: 576px) {
    .header-title {
        font-size: 16px;
    }

    .tab-buttons {
        flex-wrap: wrap;
        gap: 5px;
    }

    .tab-btn {
        flex: 1;
        justify-content: center;
    }

    .news-title, .notice-title, .event-title {
        font-size: 12px;
    }
}
/* Counter Section Styles */
.counter-area {
    padding: 80px 0;
    background: var(--primary-gradient, linear-gradient(135deg, #233d63, #1a2d4a));
    color: var(--light-text, #ffffff);
}

/* Section Header */
.section__title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section__desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

#counter .section-divider {
    width: 60px;
    height: 3px;
    background: #ffffff;
    margin: 20px auto;
    border-radius: 3px;
}

.section-divider-white {
    background: rgba(255, 255, 255, 0.5);
}

/* Counter Items */
.counter-item {
    text-align: center;
}

.counter-item i {
    font-size: 50px;
    margin-bottom: 15px;
    display: block;
    color: var(--light-text, #ffffff);
}

.counter-item h3 {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    color: var(--light-text, #ffffff);
}

.counter-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

/* Responsiveness */
@media (max-width: 991px) {
    .counter-area {
        padding: 60px 20px;
    }

    .section__title {
        font-size: 30px;
    }

    .section__desc {
        font-size: 14px;
    }

    .counter-item i {
        font-size: 40px;
    }

    .counter-item h3 {
        font-size: 35px;
    }

    .counter-item p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .counter-area {
        padding: 40px 15px;
    }

    .counter-item i {
        font-size: 35px;
    }

    .counter-item h3 {
        font-size: 30px;
    }

    .counter-item p {
        font-size: 13px;
    }
}
/* Placements Section */
#placements-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
}

.section__desc {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
    max-width: 600px;
    margin: 10px auto 0;
}

#placement .section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ec5252, #f58585);
    margin: 20px auto;
    border-radius: 3px;
}

/* Stats Overview */
.stats-grid .placement-stats-card {
    text-align: center;
    background: #ffffff;
    border-radius: 10px;
    padding: 20px 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

.placement-stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stats-icon {
    font-size: 40px;
    color: #ec5252;
    margin-bottom: 15px;
}

.stats-number {
    font-size: 30px;
    font-weight: 700;
    color: #233d63;
}

.stats-text {
    font-size: 16px;
    color: #7f8897;
}

/* Featured Companies */
.featured-companies {
    margin-top: 60px;
    text-align: center;
}

.featured-companies .section-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 30px;
}

.company-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.company-logo-wrap {
    position: relative;
    width: 120px;
    height: 60px;
}

.company-card {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.company-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.company-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.company-card:hover .company-overlay {
    opacity: 1;
}

/* Success Stories */
.success-stories {
    margin-top: 60px;
}

.success-stories .section-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 30px;
}

.success-story-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

.success-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.student-profile {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.student-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.student-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #233d63;
    margin: 0;
}

.company-badge {
    font-size: 14px;
    color: #ffffff;
    background: #ec5252;
    border-radius: 15px;
    padding: 5px 10px;
    display: inline-block;
    margin-top: 5px;
}

.story-content {
    font-size: 14px;
    color: #7f8897;
    margin-bottom: 15px;
    line-height: 1.6;
}

.package-info {
    font-size: 14px;
    color: #233d63;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-info i {
    color: #ec5252;
}

/* CTA Section */
.placement-cta {
    margin-top: 60px;
    text-align: center;
    background: #ec5252;
    padding: 30px;
    border-radius: 10px;
    color: #ffffff;
}

.placement-cta h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.placement-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.placement-btn-primary {
    background: #ffffff;
    color: #ec5252;
    border: none;
}

.placement-btn-primary:hover {
    background: #f8f9fa;
    color: #d94343;
}

.placement-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.placement-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 991px) {
    .stats-grid .placement-stats-card {
        margin-bottom: 30px;
    }

    .success-story-card {
        margin-bottom: 30px;
    }

    .placement-cta {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .placement-btn {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .company-grid {
        gap: 15px;
    }
}
/* Counter Section */
#counter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #233d63, #1a2d4a);
    color: #fff;
    text-align: center;
}

#counter-section .row {
    display: flex; /* Flexible row layout */
    flex-wrap: wrap; /* Allow wrapping of items */
    justify-content: space-between; /* Equal spacing between items */
}

#counter-section .col-lg-3 {
    flex: 0 0 23%; /* 4 cards in one row (23% width + spacing) */
    max-width: 23%;
    margin-bottom: 20px; /* Spacing between rows */
}

#counter-section .counter-item {
    padding: 30px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#counter-section .counter-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

#counter-section .counter-item i {
    font-size: 50px;
    color: #fff;
    margin-bottom: 15px;
}

#counter-section .counter-item h3 {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

#counter-section .counter-item p {
    font-size: 16px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Adjustments for Tablets */
@media (max-width: 991px) {
    #counter-section .col-lg-3 {
        flex: 0 0 48%; /* Two cards per row */
        max-width: 48%;
        margin-bottom: 20px; /* Add spacing between rows */
    }
}

/* Responsive Adjustments for Mobile */
@media (max-width: 576px) {
    #counter-section .col-lg-3 {
        flex: 0 0 48%; /* Two cards per row on small screens */
        max-width: 48%;
        margin-bottom: 20px; /* Space between rows */
    }
}
/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: #233d63;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-header .section__desc {
    color: #7f8897;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

#counter-second .section-divider {
    width: 80px;
    height: 3px;
    background: #ec5252;
    margin-top: 20px;
}

/* Stats Grid Styles */
.stats-grid {
    margin-bottom: 60px;
}

.placement-stats-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.placement-stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stats-icon {
    font-size: 32px;
    color: #ec5252;
    margin-bottom: 15px;
}

.stats-number {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 10px;
}

.stats-text {
    color: #7f8897;
    font-size: 16px;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: #233d63;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-header .section__desc {
    color: #7f8897;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

#stats .section-divider {
    width: 80px;
    height: 3px;
    background: #ec5252;
    margin-top: 20px;
}

/* Stats Grid Styles */
.stats-grid {
    margin-bottom: 60px;
}

.placement-stats-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.placement-stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stats-icon {
    font-size: 32px;
    color: #ec5252;
    margin-bottom: 15px;
}

.stats-number {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 10px;
}

.stats-text {
    color: #7f8897;
    font-size: 16px;
}

/* Featured Companies Logo Slider */
.featured-companies {
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 24px;
    color: #233d63;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.logo-slider {
    background: white;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
}

.logo-slide-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: calc(200px * 8); /* Adjust based on number of logos */
}

.logo-slide {
    width: 200px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slide img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.logo-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 4));
    }
}

.logo-slider:hover .logo-slide-track {
    animation-play-state: paused;
}

/* Success Stories Styles */
.success-stories {
    margin-bottom: 60px;
}

.success-story-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.success-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.student-profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.student-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.student-info h4 {
    color: #233d63;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.company-badge {
    background: #f8f9fa;
    color: #ec5252;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.story-content {
    color: #7f8897;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.package-info {
    color: #233d63;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.package-info i {
    margin-right: 8px;
    color: #ec5252;
}

/* CTA Section Styles */
.placement-cta {
    background: linear-gradient(135deg, #ec5252 0%, #f58585 100%);
    border-radius: 15px;
    padding: 60px 30px;
    color: #ffffff;
    margin-top: 60px;
}

.placement-cta h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.placement-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.placement-btn i {
    margin-left: 8px;
}

.placement-btn-primary {
    background: #ffffff;
    color: #ec5252;
}

.placement-btn-primary:hover {
    background: #233d63;
    color: #ffffff;
}

.placement-btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.placement-btn-outline:hover {
    background: #ffffff;
    color: #ec5252;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 30px;
    }
    
    .placement-cta {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 40px;
    }
    
    .stats-grid {
        margin-bottom: 40px;
    }
    
    .logo-slider {
        padding: 15px 0;
    }
    
    .placement-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 26px;
    }
    
    .stats-number {
        font-size: 28px;
    }
    
    .logo-slide {
        width: 150px;
    }
    
    .logo-slide img {
        max-width: 120px;
    }
}
/* FAQ Section Styles */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Accordion Styles */
.standard-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.standard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    position: relative;
    width: 100%;
    padding: 20px;
    text-align: left;
    background: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #233d63;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-button::after {
    content: '';
    position: absolute;
    right: 20px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #233d63;
    border-bottom: 2px solid #233d63;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-135deg);
    border-color: #ec5252;
}

.accordion-button:not(.collapsed) {
    color: #ec5252;
}

.accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-collapse.show {
    max-height: 500px; /* Adjust based on your content */
}

.accordion-body {
    padding: 20px;
    background: #ffffff;
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.show .accordion-body {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ec5252 0%, #f58585 100%);
    padding: 80px 0;
}

.cta-section h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-section p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
}

.primary-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-btn.bg-white {
    background: #ffffff;
    color: #233d63;
}

.primary-btn:hover {
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .accordion-button {
        font-size: 16px;
    }
    
    .cta-section {
        text-align: center;
    }
    
    .cta-section .text-lg-end {
        text-align: center !important;
        margin-top: 20px;
    }
}
/* ================================
   Form Section Styling
================================= */

#form-area {
    background-color: #f9f9ff; /* Light grey background */
    padding: 80px 0; /* Top and bottom spacing */
}

/* Section Header */
.section-title {
    font-size: 30px;
    font-weight: 700;
    color: #233d63; /* Dark blue */
    margin-bottom: 10px;
    text-align: center;
}

.section-desc {
    font-size: 16px;
    color: #7f8897; /* Grey */
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
}

/* Section Divider */
#form-section .section-divider {
    width: 80px; /* Fixed width of the divider */
    height: 3px; /* Height of the divider */
    background-color: #ec5252; /* Red color */
    margin: 0 auto 20px auto; /* Center horizontally with bottom spacing */
    border-radius: 2px; /* Rounded corners */
    display: block; /* Ensures it behaves like a block-level element */
}

/* Form Container */
.form-container {
    background: #ffffff; /* White background */
    padding: 30px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Form Labels */
.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #233d63; /* Dark blue */
    margin-bottom: 5px;
    display: block; /* Ensures label is above the input */
}

/* Required Field Indicator */
.required {
    color: #ec5252; /* Red for required fields */
}

/* Form Inputs */
.form-control {
    font-size: 15px;
    padding: 12px;
    border: 1px solid #ddd; /* Light grey border */
    border-radius: 8px;
    width: 100%; /* Full width */
    box-sizing: border-box; /* Ensures padding and border don't affect size */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff; /* White background */
}

.form-control:focus {
    border-color: #ec5252; /* Highlight border on focus */
    box-shadow: 0 0 5px rgba(236, 82, 82, 0.2); /* Subtle red glow */
    outline: none;
}

/* Dropdown Fix for <select> */
select.form-control {
    appearance: none; /* Removes browser-specific dropdown styling */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #ffffff; /* White background */
    font-size: 15px; /* Ensures consistent font size */
    padding: 12px; /* Proper padding inside the dropdown */
    height: auto; /* Ensures height is automatically adjusted */
    border: 1px solid #ddd; /* Light grey border */
    border-radius: 8px; /* Rounded corners */
    box-sizing: border-box; /* Ensures padding and border don't affect size */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-image: url('images/dropdown-icon.svg'); /* Optional custom dropdown arrow */
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 14px;
}

select.form-control:focus {
    border-color: #ec5252; /* Highlight border on focus */
    box-shadow: 0 0 5px rgba(236, 82, 82, 0.2); /* Subtle red glow */
    outline: none;
}

/* Textarea */
textarea.form-control {
    resize: none; /* Disable resizing */
    height: auto; /* Automatically adjust height */
}

/* Buttons */
.btn-primary-gradient {
    padding: 12px 25px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ec5252, #f58585); /* Red gradient */
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary-gradient:hover {
    background: linear-gradient(135deg, #d94343, #ec5252); /* Darker red */
    transform: translateY(-2px); /* Slight upward movement */
}

.btn-outline-dark {
    padding: 12px 25px;
    border-radius: 8px;
    border: 2px solid #233d63; /* Dark blue border */
    background: none;
    color: #233d63; /* Dark blue text */
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: #233d63; /* Dark blue background */
    color: #ffffff; /* White text */
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-container {
        padding: 20px; /* Reduce padding on smaller screens */
    }

    .section-title {
        font-size: 26px; /* Adjust font size for smaller screens */
    }

    .form-control {
        font-size: 14px;
        padding: 10px;
    }

    .btn-primary-gradient,
    .btn-outline-dark {
        width: 100%; /* Full width for buttons */
        text-align: center;
        margin-bottom: 10px; /* Add spacing between buttons */
    }
}

@media (max-width: 576px) {
    .form-container {
        padding: 15px; /* Further reduce padding */
    }

    .section-title {
        font-size: 22px; /* Smaller font size for mobile */
    }

    .section-desc {
        font-size: 14px; /* Adjust description font size */
    }
}
/* ================================
   Seat Matrix Section Styling
================================= */

#seat-matrix-area {
    background-color: #f9f9ff; /* Light grey background */
    padding: 80px 0; /* Top and bottom spacing */
}

/* Section Header */
.section-title {
    font-size: 30px;
    font-weight: 700;
    color: #233d63; /* Dark blue */
    margin-bottom: 10px;
    text-align: center;
}

.section-desc {
    font-size: 16px;
    color: #7f8897; /* Grey */
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
}

/* Section Divider */
#matrix-section .section-divider {
    width: 80px;
    height: 3px;
    background-color: #ec5252; /* Red color */
    margin: 0 auto 20px auto; /* Center horizontally with bottom spacing */
    border-radius: 2px; /* Slightly rounded edges */
    display: block;
}

/* Table Styling */
.table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse; /* Remove gaps between cells */
    text-align: left;
}

.table th, 
.table td {
    padding: 12px 15px; /* Add padding inside cells */
    border: 1px solid #ddd; /* Light grey border for cells */
}

.table th {
    background-color: #f3f3f3; /* Light grey header background */
    font-weight: 700;
    color: #233d63; /* Dark blue header text */
    text-transform: uppercase;
    font-size: 14px;
}

.table td {
    font-size: 14px;
    color: #7f8897; /* Grey text for table body */
}

/* Responsive Table */
.table-responsive {
    overflow-x: auto; /* Enable horizontal scrolling for smaller screens */
}

@media (max-width: 768px) {
    .section-title {
        font-size: 26px; /* Adjust font size for smaller screens */
    }

    .section-desc {
        font-size: 14px; /* Smaller description font size */
    }

    .table th, 
    .table td {
        font-size: 13px; /* Smaller text inside the table */
        padding: 10px; /* Reduce padding for smaller screens */
    }
}
/* ================================
   Anti-Ragging Section Styling
================================= */

#anti-ragging-area {
    background-color: #f9f9ff; /* Light grey background */
    padding: 80px 0; /* Top and bottom spacing */
}

/* Section Header */
.section-title {
    font-size: 30px;
    font-weight: 700;
    color: #233d63; /* Dark blue */
    margin-bottom: 10px;
    text-align: center;
}

.section-desc {
    font-size: 16px;
    color: #7f8897; /* Grey */
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
}

/* Section Divider */
#anti-ragging .section-divider {
    width: 80px;
    height: 3px;
    background-color: #ec5252; /* Red color */
    margin: 0 auto 20px auto; /* Center horizontally with bottom spacing */
    border-radius: 2px; /* Slightly rounded edges */
    display: block;
}

/* Anti-Ragging Content */
.anti-ragging-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #233d63; /* Dark blue */
    margin-bottom: 15px;
}

.anti-ragging-content p {
    font-size: 15px;
    color: #7f8897; /* Grey */
    line-height: 1.8;
}

.anti-ragging-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.anti-ragging-content ul li {
    font-size: 15px;
    color: #7f8897; /* Grey */
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.anti-ragging-content ul li::before {
    content: "•";
    color: #ec5252; /* Red bullet point */
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Table Styling */
.table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse; /* Remove gaps between cells */
    text-align: left;
}

.table th, 
.table td {
    padding: 12px 15px; /* Add padding inside cells */
    border: 1px solid #ddd; /* Light grey border for cells */
}

.table th {
    background-color: #f3f3f3; /* Light grey header background */
    font-weight: 700;
    color: #233d63; /* Dark blue header text */
    text-transform: uppercase;
    font-size: 14px;
}

.table td {
    font-size: 14px;
    color: #7f8897; /* Grey text for table body */
}

/* Links */
.text-danger {
    color: #ec5252; /* Red for emphasis */
    text-decoration: none;
}

.text-danger:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .anti-ragging-content h3 {
        font-size: 20px;
    }

    .table th, 
    .table td {
        font-size: 13px;
        padding: 10px;
    }
}
/* ================================
   Curriculum Section Styling
================================= */

#curriculum-area {
    background-color: #f9f9ff;
    padding: 80px 0;
}

/* Section Header */
.section-title {
    font-size: 30px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 10px;
    text-align: center;
}

.section-desc {
    font-size: 16px;
    color: #7f8897;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
}

/* Section Divider */
#curriculum-area.section-divider {
    width: 80px;
    height: 3px;
    background-color: #ec5252;
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

/* Accordion Styles */
.standard-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.standard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    position: relative;
    width: 100%;
    padding: 20px;
    text-align: left;
    background: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #233d63;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-button::after {
    content: '';
    position: absolute;
    right: 20px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #233d63;
    border-bottom: 2px solid #233d63;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-135deg);
    border-color: #ec5252;
}

.accordion-button:not(.collapsed) {
    color: #ec5252;
}

.accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-collapse.show {
    max-height: 500px;
}

.accordion-body {
    padding: 20px;
    background: #ffffff;
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.show .accordion-body {
    opacity: 1;
    transform: translateY(0);
}

/* Curriculum List */
.curriculum-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.curriculum-list li {
    margin-bottom: 10px;
}

.curriculum-list li a {
    color: #ec5252;
    text-decoration: none;
    font-weight: 600;
}

.curriculum-list li a:hover {
    text-decoration: underline;
}

/* CSE Department Specific Styles */

/* Section Spacing */
#cse-area {
    padding: 80px 0;
}

@media (max-width: 768px) {
    #cse-area {
        padding: 40px 0;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h1,
.section-header h2 {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 16px;
    color: #7f8897;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Section Divider */
.section-divider {
    width: 100px;
    height: 3px;
    background-color: #ec5252;
    margin: 20px auto;
}

/* Department Overview */
.department-overview .department-image img {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.department-content {
    padding: 20px;
}

.department-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 15px;
}

.department-content p {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
    color: #233d63;
}

.feature-list li i {
    color: #ec5252;
    font-size: 20px;
    margin-right: 10px;
}

/* Resources Section */
.resources-section .standard-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.resources-section .standard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.resources-section .card-title {
    font-size: 24px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 15px;
}

.resources-section .body-text {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
    margin-bottom: 20px;
}

.resource-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.resource-link {
    display: flex;
    align-items: center;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 8px;
    color: #233d63;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1 1 calc(33.333% - 15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.resource-link:hover {
    background: linear-gradient(135deg, #ec5252, #f58585);
    color: #ffffff;
    transform: translateY(-3px);
}

.resource-link i {
    font-size: 24px;
    margin-right: 10px;
}

.resource-link span {
    font-size: 16px;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .resources-section .resource-link {
        flex: 1 1 calc(50% - 15px);
    }

    .department-content h2 {
        font-size: 24px;
    }

    .section-header h1,
    .section-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .resources-section .resource-link {
        flex: 1 1 100%;
    }

    .department-content {
        padding: 15px;
    }

    .section-header h1,
    .section-header h2 {
        font-size: 28px;
    }
}
/* Library Section */
#library-area {
    padding: 80px 0;
}

.section-title {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 20px;
    text-align: center;
}

.section-divider {
    width: 80px;
    height: 3px;
    background-color: #ec5252;
    margin: 0 auto 30px;
}

/* Library Overview */
.library-image img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.library-content {
    padding: 20px 0;
}

.library-content .card-title {
    font-size: 28px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 15px;
}

.library-content .body-text {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
    color: #233d63;
}

.feature-list li i {
    font-size: 20px;
    color: #ec5252;
    margin-right: 10px;
}

/* Standard Card */
.standard-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.standard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.standard-card .card-title {
    font-size: 22px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 15px;
}

.standard-card .body-text {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
}

/* Resource Links */
.resource-link {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #233d63;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.resource-link:hover {
    background: #ec5252;
    color: #ffffff;
    transform: translateY(-3px);
}

.resource-link i {
    font-size: 24px;
    margin-right: 10px;
}

/* Membership Section */
.membership-section {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.membership-section .primary-btn {
    background: #ec5252;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.membership-section .primary-btn:hover {
    background: #d94343;
}

/* Policies Section */
.policies-section ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.policies-section ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
    color: #233d63;
}

.policies-section ul li i {
    font-size: 20px;
    color: #ec5252;
    margin-right: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    #library-area {
        padding: 40px 0;
    }

    .library-content {
        text-align: center;
    }

    .feature-list {
        text-align: left;
        margin: 0 auto;
    }

    .membership-section {
        padding: 20px;
    }
}
/* Hostel Area Styles */
#hostel-area {
    padding: 80px 0;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    #hostel-area {
        padding: 40px 0;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: #7f8897;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: #ec5252;
    margin: 20px auto;
    border-radius: 3px;
}

/* Hostel Overview */
.hostel-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hostel-content h2 {
    font-size: 30px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 15px;
}

.hostel-content p {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    font-size: 16px;
    color: #233d63;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    font-size: 20px;
    color: #ec5252;
    margin-right: 10px;
}

/* Hostel Policies */
.standard-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.standard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.standard-card h2 {
    font-size: 24px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 15px;
}

.standard-card p {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
}

.policies-list,
.application-steps {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.policies-list li,
.application-steps li {
    font-size: 16px;
    color: #233d63;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.policies-list li i,
.application-steps li i {
    font-size: 18px;
    color: #ec5252;
    margin-right: 10px;
}

/* Call-to-Action */
.hostel-action {
    background: #233d63;
    color: #ffffff;
    padding: 50px 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
}

.hostel-action h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hostel-action p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-primary-gradient {
    background: linear-gradient(135deg, #ec5252, #f58585);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-gradient:hover {
    background: linear-gradient(135deg, #d94343, #ec5252);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hostel-content h2 {
        font-size: 26px;
    }

    .feature-list li,
    .policies-list li,
    .application-steps li {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }

    .hostel-action h3 {
        font-size: 20px;
    }

    .btn-primary-gradient {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}
/* Transport Section Styles */
#transport-area {
    padding: 80px 0;
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    #transport-area {
        padding: 40px 0;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 16px;
    color: #7f8897;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ec5252, #f58585);
    margin: 20px auto;
    border-radius: 3px;
}

/* Transport Overview */
.transport-overview img {
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.transport-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 20px;
}

.transport-content p {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
    color: #233d63;
}

.feature-list li i {
    font-size: 24px;
    color: #ec5252;
    margin-right: 10px;
}

/* Transport Routes */
.transport-routes .route-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.transport-routes .route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.transport-routes .route-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 10px;
}

.transport-routes .route-card p {
    font-size: 14px;
    color: #7f8897;
    line-height: 1.6;
}

/* Transport Policies */
.transport-policies .standard-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.transport-policies .standard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.transport-policies .standard-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 15px;
}

.transport-policies .standard-card p {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policies-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policies-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
    color: #233d63;
}

.policies-list li i {
    font-size: 24px;
    color: #ec5252;
    margin-right: 10px;
}

/* Transport Call-to-Action */
.transport-action {
    background: linear-gradient(135deg, #ec5252, #f58585);
    border-radius: 15px;
    text-align: center;
    padding: 40px 20px;
    color: #ffffff;
    margin-top: 40px;
}

.transport-action h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.transport-action p {
    font-size: 16px;
    margin-bottom: 20px;
}

.transport-action a {
    display: inline-block;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #ffffff;
    color: #ec5252;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.transport-action a:hover {
    background: #f8f9fa;
    color: #d94343;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 30px;
    }

    .transport-content h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 26px;
    }

    .transport-routes .route-card h3 {
        font-size: 18px;
    }

    .transport-routes .route-card p {
        font-size: 14px;
    }
}
/* General Section Styles */
#inventory-area {
    padding: 80px 0;
    background-color: #f8f9fa;
}

#inventory-area .section-title {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 20px;
}

#inventory-area .section-desc {
    font-size: 16px;
    color: #7f8897;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-divider {
    width: 80px;
    height: 3px;
    background-color: #ec5252;
    margin: 20px auto;
    border-radius: 3px;
}

/* Inventory Overview */
.inventory-overview .department-image img {
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.inventory-overview .department-content {
    padding: 20px;
}

.inventory-overview .department-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 20px;
}

.inventory-overview .department-content p {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
    margin-bottom: 20px;
}

.inventory-overview .department-content .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inventory-overview .department-content .feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #233d63;
}

.inventory-overview .department-content .feature-list li i {
    color: #ec5252;
    margin-right: 10px;
    font-size: 18px;
}

/* Inventory Categories */
.inventory-categories .category-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.inventory-categories .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.inventory-categories .category-card .category-icon {
    font-size: 40px;
    color: #ec5252;
    margin-bottom: 15px;
}

.inventory-categories .category-card .category-title {
    font-size: 20px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 10px;
}

.inventory-categories .category-card .category-desc {
    font-size: 14px;
    color: #7f8897;
    margin-bottom: 20px;
}

.inventory-categories .category-card .btn-link {
    font-size: 14px;
    color: #ec5252;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.inventory-categories .category-card .btn-link:hover {
    color: #f58585;
    transform: translateX(5px);
}

.inventory-categories .category-card .btn-link i {
    margin-left: 5px;
    font-size: 14px;
}

/* Call-to-Action Section */
.inventory-action {
    padding: 40px;
    background: linear-gradient(135deg, #ec5252, #f58585);
    color: #ffffff;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.inventory-action h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.inventory-action p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.inventory-action .cta-button {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: #ec5252;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.inventory-action .cta-button:hover {
    background: #f8f9fa;
    color: #d94343;
}

.inventory-action .cta-button i {
    margin-left: 5px;
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .inventory-overview .department-content h2 {
        font-size: 24px;
    }

    .inventory-overview .department-content p {
        font-size: 14px;
    }

    .inventory-categories .category-card .category-title {
        font-size: 18px;
    }

    .inventory-categories .category-card .category-desc {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .inventory-overview .department-content h2 {
        font-size: 20px;
    }

    .inventory-overview .department-content p {
        font-size: 13px;
    }

    .inventory-categories .category-card {
        padding: 15px;
    }

    .inventory-categories .category-card .category-title {
        font-size: 16px;
    }

    .inventory-action h3 {
        font-size: 20px;
    }

    .inventory-action p {
        font-size: 14px;
    }
}
/* Sports Complex Styles */
#sports-complex {
    padding: 80px 0;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    #sports-complex {
        padding: 40px 0;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 16px;
    color: #7f8897;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Divider */
.section-divider {
    width: 80px;
    height: 3px;
    background: #ec5252;
    margin: 20px auto;
    border-radius: 3px;
}

/* Facilities Overview */
.feature-list {
    padding: 0;
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #233d63;
    margin-bottom: 15px;
}

.feature-list li i {
    color: #ec5252;
    font-size: 20px;
    margin-right: 10px;
}

.department-image img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

/* Gallery Section */
.gallery-section {
    margin-top: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Events Section */
.events-section {
    margin-top: 60px;
}

.event-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.event-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 10px;
}

.event-card p {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #ec5252;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #d94343;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        margin-bottom: 20px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    #sports-complex {
        background: #1a1a1a;
    }

    .section-header h2,
    .feature-list li,
    .event-card h3 {
        color: #ffffff;
    }

    .section-header p,
    .feature-list li i,
    .event-card p {
        color: #cccccc;
    }

    .gallery-item img {
        box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
    }

    .gallery-item img:hover {
        box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
    }

    .event-card {
        background: #2d2d2d;
    }

    .event-card:hover {
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
    }

    .btn-link {
        color: #ffffff;
    }

    .btn-link:hover {
        color: #f58585;
    }
}
/* Lab Cards Styles */
.lab-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%; /* Ensures uniform card height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lab-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Card Image */
.lab-card .card-image img {
    width: 100%;
    height: 200px; /* Uniform height for images */
    object-fit: cover;
    border-bottom: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.lab-card:hover .card-image img {
    transform: scale(1.05); /* Slight zoom-in effect on hover */
}

/* Card Body */
.lab-card .card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.lab-card .card-body .card-title {
    font-size: 20px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 10px;
}

.lab-card .card-body .body-text {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .lab-card .card-image img {
        height: 150px; /* Adjust image height for smaller screens */
    }

    .lab-card .card-body .card-title {
        font-size: 18px;
    }

    .lab-card .card-body .body-text {
        font-size: 14px;
    }
}
/* Digital Classrooms Section */
#digital-classrooms .section-title {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
}

#digital-classrooms .section-desc {
    font-size: 16px;
    color: #7f8897;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

#digital-classrooms .section-divider {
    width: 80px;
    height: 3px;
    background: #ec5252;
    margin: 20px auto;
    border-radius: 3px;
}

/* Feature Cards */
#digital-classrooms .feature-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

#digital-classrooms .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

#digital-classrooms .feature-icon {
    font-size: 50px;
    color: #ec5252;
    margin-bottom: 15px;
}

#digital-classrooms .feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 10px;
}

#digital-classrooms .feature-desc {
    font-size: 14px;
    color: #7f8897;
    line-height: 1.8;
}

/* Testimonials Section */
#digital-classrooms .testimonials-section {
    margin-top: 60px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

#digital-classrooms .testimonials-section .section-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 20px;
}

#digital-classrooms .testimonial-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

#digital-classrooms .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

#digital-classrooms .testimonial-text {
    font-size: 14px;
    color: #7f8897;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

#digital-classrooms .testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #233d63;
}

/* Responsive Design */
@media (max-width: 768px) {
    #digital-classrooms .section-title {
        font-size: 30px;
    }

    #digital-classrooms .section-desc {
        font-size: 14px;
    }

    #digital-classrooms .feature-card {
        padding: 20px;
    }

    #digital-classrooms .feature-icon {
        font-size: 40px;
    }

    #digital-classrooms .feature-title {
        font-size: 18px;
    }

    #digital-classrooms .feature-desc {
        font-size: 13px;
    }

    #digital-classrooms .testimonial-card {
        padding: 20px;
    }

    #digital-classrooms .testimonial-text {
        font-size: 13px;
    }

    #digital-classrooms .testimonial-author {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    #digital-classrooms .feature-card {
        padding: 15px;
    }

    #digital-classrooms .feature-icon {
        font-size: 35px;
    }

    #digital-classrooms .testimonial-card {
        padding: 15px;
    }
}
/* ICT Initiatives Section Styles */
#ict-initiatives {
    padding: 80px 0;
    background-color: #f8f9fa;
}

#ict-initiatives .section-header {
    text-align: center;
    margin-bottom: 60px;
}

#ict-initiatives .section-header h2 {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 20px;
}

#ict-initiatives .section-header p {
    font-size: 16px;
    color: #7f8897;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

#ict-initiatives .section-divider {
    width: 80px;
    height: 3px;
    background: #ec5252;
    margin: 20px auto 0;
    border-radius: 3px;
}

/* ICT Features */
.ict-features .feature-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.ict-features .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.ict-features .feature-icon {
    font-size: 40px;
    color: #ec5252;
    margin-bottom: 15px;
}

.ict-features .feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 10px;
}

.ict-features .feature-desc {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
}

/* Success Stories Section */
.ict-success-stories {
    margin-top: 60px;
}

.ict-success-stories .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.ict-success-stories .section-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: #233d63;
}

.ict-success-stories .success-story-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.ict-success-stories .success-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.ict-success-stories .story-title {
    font-size: 20px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 10px;
}

.ict-success-stories .story-desc {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 991px) {
    #ict-initiatives {
        padding: 60px 20px;
    }

    #ict-initiatives .section-header h2 {
        font-size: 30px;
    }

    .ict-features .feature-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    #ict-initiatives {
        padding: 40px 15px;
    }

    .ict-features .feature-card {
        margin-bottom: 20px;
    }

    .ict-success-stories .success-story-card {
        margin-bottom: 20px;
    }
}
/* Placement Overview Styles */
#placement-overview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

#placement-overview .section-title {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
}

#placement-overview .section-desc {
    font-size: 16px;
    color: #7f8897;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

#placement-overview .section-divider {
    width: 80px;
    height: 3px;
    background: #ec5252;
    margin: 20px auto;
    border-radius: 3px;
}

/* Statistics Section */
.placement-stats .stats-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.placement-stats .stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.placement-stats .stats-icon {
    font-size: 40px;
    color: #ec5252;
    margin-bottom: 10px;
}

.placement-stats .stats-number {
    font-size: 30px;
    font-weight: 700;
    color: #233d63;
}

.placement-stats .stats-text {
    font-size: 16px;
    color: #7f8897;
}

/* Placement Process */
.placement-process .process-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.placement-process .process-list li {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #233d63;
    margin-bottom: 15px;
}

.placement-process .process-icon {
    font-size: 24px;
    color: #ec5252;
    margin-right: 15px;
}

.featured-recruiters {
    background-color: #f9f9f9;
}

.featured-recruiters h3 {
    font-size: 28px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 20px;
}

.client-logo-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    transition: transform 0.3s ease-in-out;
}

.client-logo-item:hover {
    transform: scale(1.1);
}

.client-logo-item img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out;
}

.client-logo-item:hover img {
    filter: grayscale(0);
}

/* Responsive Styles */
@media (max-width: 768px) {
    #placement-overview {
        padding: 60px 20px;
    }

    #placement-overview .section-title {
        font-size: 30px;
    }

    .placement-process img {
        margin-top: 20px;
    }
}
/* Scoped CSS for Recruiters Page */
#recruiters-area {
    background-color: #f7f7ff;
    padding: 80px 0;
}

#recruiters-area .section-title {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 20px;
}

#recruiters-area .section-desc {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

#recruiters-area .section-divider {
    width: 60px;
    height: 3px;
    background-color: #ec5252;
    margin: 20px auto 40px auto;
    border-radius: 5px;
}

.recruiters-grid .recruiter-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.recruiters-grid .recruiter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.recruiters-grid .recruiter-card img {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    #recruiters-area .section-title {
        font-size: 28px;
    }

    .recruiters-grid .recruiter-card {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    #recruiters-area .section-title {
        font-size: 24px;
    }

    .recruiters-grid .recruiter-card img {
        max-height: 100px;
    }
}
/* Scoped CSS for Placement Process Section */
#placement-process {
    background-color: #f7f7ff;
    padding: 80px 0;
}

#placement-process .section-title {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 20px;
}

#placement-process .section-desc {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

#placement-process .section-divider {
    width: 60px;
    height: 3px;
    background-color: #ec5252;
    margin: 20px auto 40px auto;
    border-radius: 5px;
}

/* Placement Steps */
.placement-steps .step-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.placement-steps .step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.placement-steps .step-card .step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ec5252;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
    line-height: 60px;
}

.placement-steps .step-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 15px;
}

.placement-steps .step-card p {
    font-size: 14px;
    color: #7f8897;
    line-height: 1.6;
}

/* CTA Section */
#placement-process .cta-section {
    margin-top: 50px;
}

#placement-process .cta-section p {
    font-size: 16px;
    color: #233d63;
    margin-bottom: 20px;
}

#placement-process .btn-primary-gradient {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    color: #ffffff;
    background: linear-gradient(45deg, #ec5252, #f58585);
    border: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
}

#placement-process .btn-primary-gradient:hover {
    background: linear-gradient(45deg, #f58585, #ec5252);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    #placement-process .section-title {
        font-size: 28px;
    }

    .placement-steps .step-card {
        padding: 20px;
    }
}
/* Scoped CSS for Internship Opportunities Section */
#internship-opportunities {
    background-color: #f7f7ff;
    padding: 80px 0;
}

#internship-opportunities .section-title {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 20px;
}

#internship-opportunities .section-desc {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

#internship-opportunities .section-divider {
    width: 60px;
    height: 3px;
    background-color: #ec5252;
    margin: 20px auto 40px auto;
    border-radius: 5px;
}

/* Internship Categories */
.internship-categories .internship-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.internship-categories .internship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.internship-categories .internship-card .card-icon {
    font-size: 40px;
    color: #ec5252;
    margin-bottom: 15px;
}

.internship-categories .internship-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 15px;
}

.internship-categories .internship-card p {
    font-size: 14px;
    color: #7f8897;
    line-height: 1.6;
    margin-bottom: 20px;
}

.internship-categories .internship-card .learn-more {
    font-size: 14px;
    font-weight: 600;
    color: #ec5252;
    text-decoration: none;
    transition: all 0.3s ease;
}

.internship-categories .internship-card .learn-more:hover {
    color: #f58585;
    text-decoration: underline;
}

/* CTA Section */
#internship-opportunities .cta-section {
    margin-top: 50px;
}

#internship-opportunities .cta-section p {
    font-size: 16px;
    color: #233d63;
    margin-bottom: 20px;
}

#internship-opportunities .btn-primary-gradient {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    color: #ffffff;
    background: linear-gradient(45deg, #ec5252, #f58585);
    border: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
}

#internship-opportunities .btn-primary-gradient:hover {
    background: linear-gradient(45deg, #f58585, #ec5252);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    #internship-opportunities .section-title {
        font-size: 28px;
    }

    .internship-categories .internship-card {
        padding: 20px;
    }
}
/* Alumni Success Stories Section */
#alumni-stories {
    background-color: #f7f7ff;
    padding: 80px 0;
}

#alumni-stories .section-title {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 20px;
}

#alumni-stories .section-desc {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

#alumni-stories .section-divider {
    width: 60px;
    height: 3px;
    background-color: #ec5252;
    margin: 20px auto 40px auto;
    border-radius: 5px;
}

/* Alumni Cards */
.alumni-grid .alumni-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.alumni-grid .alumni-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.alumni-grid .alumni-card .alumni-image img {
    border-radius: 10px;
    margin-bottom: 15px;
}

.alumni-grid .alumni-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 10px;
}

.alumni-grid .alumni-card .position {
    font-size: 14px;
    color: #7f8897;
    margin-bottom: 15px;
}

.alumni-grid .alumni-card .quote {
    font-size: 14px;
    color: #7f8897;
    font-style: italic;
    margin-bottom: 15px;
}

.alumni-grid .alumni-card .learn-more {
    font-size: 14px;
    font-weight: 600;
    color: #ec5252;
    text-decoration: none;
    transition: all 0.3s ease;
}

.alumni-grid .alumni-card .learn-more:hover {
    color: #f58585;
    text-decoration: underline;
}

/* CTA Section */
#alumni-stories .cta-section {
    margin-top: 50px;
}

#alumni-stories .cta-section p {
    font-size: 16px;
    color: #233d63;
    margin-bottom: 20px;
}

#alumni-stories .btn-primary-gradient {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    color: #ffffff;
    background: linear-gradient(45deg, #ec5252, #f58585);
    border: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
}

#alumni-stories .btn-primary-gradient:hover {
    background: linear-gradient(45deg, #f58585, #ec5252);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    #alumni-stories .section-title {
        font-size: 28px;
    }

    .alumni-grid .alumni-card {
        padding: 15px;
    }
}
/* Research Overview Section */
#research-overview {
    background-color: #f7f7ff;
    padding: 80px 0;
}

#research-overview .section-title {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 20px;
}

#research-overview .section-desc {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

#research-overview .section-divider {
    width: 60px;
    height: 3px;
    background-color: #ec5252;
    margin: 20px auto 40px auto;
    border-radius: 5px;
}

/* Research Highlights */
.research-highlights .highlight-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.research-highlights .highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.research-highlights .highlight-icon {
    font-size: 40px;
    color: #ec5252;
    margin-bottom: 15px;
}

.research-highlights .highlight-title {
    font-size: 20px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 10px;
}

.research-highlights .highlight-desc {
    font-size: 14px;
    color: #7f8897;
    line-height: 1.8;
}

/* Featured Research */
.featured-research .section-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 20px;
}

.featured-research .research-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.featured-research .research-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.featured-research .research-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 10px;
}

.featured-research .research-card p {
    font-size: 14px;
    color: #7f8897;
    line-height: 1.8;
}

/* CTA Section */
#research-overview .cta-section {
    margin-top: 50px;
}

#research-overview .cta-section p {
    font-size: 16px;
    color: #233d63;
    margin-bottom: 20px;
}

#research-overview .btn-primary-gradient {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    color: #ffffff;
    background: linear-gradient(45deg, #ec5252, #f58585);
    border: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
}

#research-overview .btn-primary-gradient:hover {
    background: linear-gradient(45deg, #f58585, #ec5252);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    #research-overview .section-title {
        font-size: 28px;
    }

    .research-highlights .highlight-card {
        padding: 15px;
    }
}
/* Publications Section */
#publications {
    background-color: #f7f7ff;
    padding: 80px 0;
}

#publications .section-title {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 20px;
}

#publications .section-desc {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

#publications .section-divider {
    width: 60px;
    height: 3px;
    background-color: #ec5252;
    margin: 20px auto 40px auto;
    border-radius: 5px;
}

/* Filters */
.filters {
    margin-bottom: 40px;
}

.filter-btn {
    background-color: #ffffff;
    border: 1px solid #ec5252;
    color: #ec5252;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: #ec5252;
    color: #ffffff;
}

/* Publication Cards */
.publication-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.publication-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.publication-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 10px;
}

.publication-card p {
    font-size: 14px;
    color: #7f8897;
    line-height: 1.6;
    margin-bottom: 15px;
}

.publication-card .btn-primary-gradient {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    color: #ffffff;
    background: linear-gradient(45deg, #ec5252, #f58585);
    border: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.publication-card .btn-primary-gradient:hover {
    background: linear-gradient(45deg, #f58585, #ec5252);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #publications .section-title {
        font-size: 28px;
    }

    .publication-card {
        padding: 15px;
    }
}
/* Ongoing Projects Section */
#ongoing-projects {
    background-color: #f9f9f9;
    padding: 80px 0;
}

#ongoing-projects .section-title {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 15px;
}

#ongoing-projects .section-desc {
    font-size: 16px;
    color: #7f8897;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Section Divider */
#ongoing-projects .section-divider {
    width: 100px;
    height: 3px;
    background: #ec5252;
    margin: 20px auto 0;
}

/* Filters */
.filters {
    margin-bottom: 30px;
}

.filters .filter-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #233d63;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    margin: 0 10px;
    border: 2px solid #233d63;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filters .filter-btn:hover,
.filters .filter-btn.active {
    background-color: #ec5252;
    color: #ffffff;
    border-color: #ec5252;
}

/* Project Cards */
.project-list .project-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.project-list .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.project-list .project-title {
    font-size: 20px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 10px;
}

.project-list .project-leader {
    font-size: 16px;
    color: #7f8897;
    margin-bottom: 10px;
}

.project-list .project-summary {
    font-size: 14px;
    color: #7f8897;
    line-height: 1.8;
    margin-bottom: 20px;
}

.project-list .btn-primary-gradient {
    display: inline-block;
    background: linear-gradient(135deg, #ec5252, #f58585);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-list .btn-primary-gradient:hover {
    background: linear-gradient(135deg, #f58585, #ec5252);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    #ongoing-projects .section-title {
        font-size: 28px;
    }

    #ongoing-projects .section-desc {
        font-size: 14px;
    }

    .filters .filter-btn {
        margin: 5px;
        font-size: 14px;
        padding: 8px 15px;
    }

    .project-list .project-card {
        padding: 15px;
    }

    .project-list .project-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .filters .filter-btn {
        margin: 5px;
        padding: 8px 10px;
    }
}
/* Funding Opportunities Section */
#funding-opportunities {
    background-color: #f7f7ff;
    padding: 80px 0;
}

.section-title {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 16px;
    color: #7f8897;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.section-divider {
    width: 60px;
    height: 4px;
    background-color: #ec5252;
    margin: 20px auto 0;
}

/* Funding Cards */
.funding-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.funding-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.funding-card .card-header {
    background-color: #ec5252;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.funding-card .card-body {
    padding: 20px;
    text-align: center;
}

.funding-card .funding-title {
    font-size: 22px;
    color: #233d63;
    margin-bottom: 15px;
    font-weight: 600;
}

.funding-card .funding-desc {
    font-size: 16px;
    color: #7f8897;
    margin-bottom: 20px;
    line-height: 1.6;
}

.funding-card .btn-primary-gradient {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #ec5252, #f58585);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.funding-card .btn-primary-gradient:hover {
    background: linear-gradient(135deg, #d64545, #e67373);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .funding-card .card-header {
        font-size: 18px;
        padding: 15px;
    }

    .funding-card .funding-title {
        font-size: 20px;
    }

    .funding-card .funding-desc {
        font-size: 14px;
    }

    .funding-card .btn-primary-gradient {
        font-size: 14px;
    }
}
/* Portal Styles */
.student-portal {
    background: var(--background, linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%));
    padding: 80px 0;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 15px;
}

.section-title {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 20px;
    word-wrap: break-word;
}

.section-desc {
    font-size: 16px;
    color: #7f8897;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Stats Cards */
.standard-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.standard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 15px;
}

/* Stats Display */
.stats-display {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.stats-icon {
    font-size: 35px;
    min-width: 35px;
    color: #ec5252;
}

.stats-value {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
}

/* Chart Containers */
.chart-container {
    position: relative;
    width: 100%;
    height: 300px;
    margin-top: 15px;
}

canvas {
    width: 100% !important;
    max-height: 300px;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .section-title {
        font-size: 32px;
    }
    
    .stats-value {
        font-size: 30px;
    }
}

@media (max-width: 992px) {
    .student-portal {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .stats-value {
        font-size: 28px;
    }
    
    .chart-container {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .student-portal {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .section-desc {
        font-size: 15px;
    }

    .card-title {
        font-size: 16px;
    }

    .stats-icon {
        font-size: 28px;
    }

    .stats-value {
        font-size: 24px;
    }

    .standard-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .student-portal {
        padding: 30px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 22px;
    }

    .stats-display {
        justify-content: center;
        text-align: center;
    }

    .chart-container {
        height: 200px;
    }
}


/* Course Cards */
.course-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Progress Bar Customization */
.progress {
    background-color: #e9ecef;
    overflow: hidden;
}

.progress-bar {
    transition: width 0.3s ease;
}

/* Table Customization */
.table th {
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}

.table td {
    vertical-align: middle;
    padding: 1rem;
}

/* Badge Customization */
.badge {
    padding: 0.5em 1em;
    font-weight: 500;
}

/* Card Shadow and Hover Effects */
.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.hover-y {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-y:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Background Opacity Classes */
.bg-opacity-10 {
    opacity: 0.1;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section__title {
        font-size: 30px;
    }
    
    .icon-box {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .section__title {
        font-size: 26px;
    }
    
    .course-card {
        padding: 1rem !important;
    }
    
    .icon-box {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .table-responsive {
        border: 0;
    }
    
    .course-card .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .course-card .text-end {
        text-align: center !important;
        margin-top: 1rem;
    }
}
/* Icon Display Fixes */
.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-box i {
    position: relative;
    z-index: 2;
}

/* Background colors with opacity */
.bg-opacity-10 {
    opacity: 1 !important;
}

.bg-1.bg-opacity-10 {
    background: rgba(236, 82, 82, 0.1) !important;
}

.bg-2.bg-opacity-10 {
    background: rgba(126, 60, 249, 0.1) !important;
}

.bg-3.bg-opacity-10 {
    background: rgba(246, 138, 3, 0.1) !important;
}

.bg-4.bg-opacity-10 {
    background: rgba(53, 143, 247, 0.1) !important;
}

/* Text colors for icons */
.text-color {
    color: #ec5252 !important;
}

.text-color-2 {
    color: #7E3CF9 !important;
}

.text-color-3 {
    color: #F68A03 !important;
}

.text-color-4 {
    color: #358FF7 !important;
}

/* Ensure Line Awesome icons are visible */
.la {
    display: inline-block;
    font-size: inherit;
}
/* Scoped Styles for #student-portal */
#student-portal {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #6c757d;
}

#student-portal .section-header {
    text-align: center;
    margin-bottom: 30px;
}

#student-portal .section-title {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 10px;
}

#student-portal .section-desc {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Standard Card */
#student-portal .standard-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#student-portal .standard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#student-portal .card-title {
    font-size: 18px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 15px;
}

/* Stats Cards */
#student-portal .standard-card .d-flex {
    align-items: center;
    justify-content: space-between;
}

#student-portal .fs-35 {
    font-size: 35px;
}

#student-portal .text-primary {
    color: #ec5252 !important;
}

#student-portal .text-dark-blue {
    color: #233d63 !important;
}

/* Table Styles */
#student-portal .table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

#student-portal .table th {
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
    padding: 10px;
    color: #233d63;
}

#student-portal .table td {
    vertical-align: middle;
    padding: 10px;
    color: #6c757d;
}

#student-portal .badge {
    font-size: 14px;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-weight: 500;
}

#student-portal .badge.bg-success {
    background-color: #28a745;
    color: #ffffff;
}

#student-portal .badge.bg-warning {
    background-color: #ffc107;
    color: #212529;
}

#student-portal .badge.bg-danger {
    background-color: #dc3545;
    color: #ffffff;
}

/* Charts */
#student-portal canvas {
    width: 100% !important;
    max-height: 250px;
}

#student-portal .chart-container {
    position: relative;
    width: 100%;
    margin-top: 15px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    #student-portal .section-title {
        font-size: 30px;
    }

    #student-portal .fs-35 {
        font-size: 30px;
    }

    #student-portal .table th,
    #student-portal .table td {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    #student-portal .section-title {
        font-size: 26px;
    }

    #student-portal .standard-card {
        padding: 20px;
    }

    #student-portal .fs-35 {
        font-size: 26px;
    }

    #student-portal .badge {
        font-size: 12px;
        padding: 0.2rem 0.4rem;
    }
}

@media (max-width: 576px) {
    #student-portal .section-header {
        margin-bottom: 20px;
    }

    #student-portal .section-title {
        font-size: 22px;
    }

    #student-portal .table th,
    #student-portal .table td {
        font-size: 12px;
        padding: 8px;
    }
}
/* Student Sidebar Styles */
/* Student Sidebar */
.student-sidebar {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    width: 280px;
    transition: all 0.3s ease;
}

/* Profile Section */
.profile-section {
    text-align: center;
    margin-bottom: 30px;
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.profile-info h3 {
    color: #233d63;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.profile-info p {
    color: #7f8897;
    font-size: 14px;
    margin: 0;
}

/* Sidebar Navigation */
.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 8px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #233d63;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.sidebar-nav a:hover {
    background-color: rgba(35, 61, 99, 0.05);
}

.sidebar-nav li.active a {
    background: linear-gradient(135deg, #ec5252, #f58585);
    color: #ffffff;
}

.sidebar-nav i {
    font-size: 20px;
    margin-right: 12px;
    color: inherit;
}

.sidebar-nav span {
    font-size: 15px;
    font-weight: 500;
    color: inherit;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .student-sidebar {
        width: 100%;
        padding: 20px;
    }

    .profile-image {
        width: 80px;
        height: 80px;
    }

    .profile-info h3 {
        font-size: 16px;
    }

    .profile-info p {
        font-size: 13px;
    }

    .sidebar-nav a {
        padding: 10px;
    }

    .sidebar-nav i {
        font-size: 18px;
    }

    .sidebar-nav span {
        font-size: 14px;
    }
}
/* General Portal Styles */
.student-portal {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 16px;
    color: #7f8897;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Standard Card Styles */
.standard-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.standard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 15px;
}

/* Stats Display */
.d-flex.align-items-center {
    display: flex;
    align-items: center;
}

.fs-35 {
    font-size: 35px;
}

.text-primary {
    color: #ec5252 !important;
}

.text-dark-blue {
    color: #233d63 !important;
}

/* Table Styles */
.table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

.table th {
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
    padding: 10px;
    color: #233d63;
}

.table td {
    vertical-align: middle;
    padding: 10px;
    color: #6c757d;
}

/* Badge Customization */
.badge {
    font-size: 14px;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-weight: 500;
}

.badge.bg-success {
    background-color: #28a745;
    color: #ffffff;
}

.badge.bg-warning {
    background-color: #ffc107;
    color: #212529;
}

.badge.bg-secondary {
    background-color: #6c757d;
    color: #ffffff;
}

/* Chart Styles */
.chart-container {
    position: relative;
    width: 100%;
    margin-top: 15px;
}

canvas {
    width: 100% !important;
    max-height: 300px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section-title {
        font-size: 30px;
    }

    .fs-35 {
        font-size: 30px;
    }

    .table th,
    .table td {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .standard-card {
        padding: 20px;
    }

    .fs-35 {
        font-size: 26px;
    }

    .badge {
        font-size: 12px;
        padding: 0.2rem 0.4rem;
    }
}

@media (max-width: 576px) {
    .section-header {
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 22px;
    }

    .table th,
    .table td {
        font-size: 12px;
        padding: 8px;
    }
}
/* General Portal Styles */
#student-portal {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #6c757d;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Standard Card */
.standard-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.standard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 15px;
}

/* Quick Stats Cards */
.fs-35 {
    font-size: 35px;
}

.text-primary {
    color: #ec5252 !important;
}

.text-dark-blue {
    color: #233d63 !important;
}

/* Notices Section */
.notice-item {
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.notice-item:last-child {
    border-bottom: none;
}

.notice-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 10px;
}

.notice-item p {
    color: #6c757d;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.notice-item .badge {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 12px;
}

.notice-item .text-primary {
    color: #ec5252;
    margin-right: 5px;
}

/* Table Styles */
.table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

.table th {
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
    padding: 10px;
    color: #233d63;
}

.table td {
    vertical-align: middle;
    padding: 10px;
    color: #6c757d;
}

/* Badge Styles */
.badge {
    font-size: 14px;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-weight: 500;
}

.badge.bg-primary {
    background-color: #007bff;
    color: #ffffff;
}

.badge.bg-warning {
    background-color: #ffc107;
    color: #212529;
}

.badge.bg-danger {
    background-color: #dc3545;
    color: #ffffff;
}

.badge.bg-info {
    background-color: #17a2b8;
    color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section-title {
        font-size: 30px;
    }

    .fs-35 {
        font-size: 30px;
    }

    .table th,
    .table td {
        font-size: 14px;
    }

    .notice-item p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .standard-card {
        padding: 20px;
    }

    .fs-35 {
        font-size: 26px;
    }

    .badge {
        font-size: 12px;
        padding: 0.2rem 0.4rem;
    }
}

@media (max-width: 576px) {
    .section-header {
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 22px;
    }

    .table th,
    .table td {
        font-size: 12px;
        padding: 8px;
    }

    .notice-item p {
        font-size: 13px;
    }
}
/* General Portal Styles */
#student-portal {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #6c757d;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Standard Card */
.standard-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.standard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 15px;
}

/* Form Styling */
form .form-label {
    font-size: 14px;
    font-weight: 500;
    color: #233d63;
    margin-bottom: 8px;
}

form .form-control {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    font-size: 14px;
    color: #6c757d;
    padding: 10px;
    transition: border-color 0.3s ease;
}

form .form-control:focus {
    border-color: #233d63;
    box-shadow: 0 0 0 3px rgba(35, 61, 99, 0.1);
}

form .form-select {
    border-radius: 8px;
    font-size: 14px;
    color: #6c757d;
    padding: 10px;
}

form .primary-btn {
    background: linear-gradient(135deg, #ec5252, #f58585);
    color: #ffffff;
    border: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

form .primary-btn:hover {
    background: linear-gradient(135deg, #d14141, #f36b6b);
}

/* Table Styles */
.table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

.table th {
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
    padding: 10px;
    color: #233d63;
}

.table td {
    vertical-align: middle;
    padding: 10px;
    color: #6c757d;
}

.badge {
    font-size: 14px;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-weight: 500;
}

.badge.bg-primary {
    background-color: #007bff;
    color: #ffffff;
}

.badge.bg-warning {
    background-color: #ffc107;
    color: #212529;
}

.badge.bg-danger {
    background-color: #dc3545;
    color: #ffffff;
}

.badge.bg-success {
    background-color: #28a745;
    color: #ffffff;
}

.badge.bg-secondary {
    background-color: #6c757d;
    color: #ffffff;
}

/* Buttons */
.outline-btn {
    background: none;
    color: #233d63;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.outline-btn:hover {
    background-color: #233d63;
    color: #ffffff;
    border-color: #233d63;
}

/* Chart Styles */
canvas {
    width: 100% !important;
    max-height: 300px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section-title {
        font-size: 30px;
    }

    .fs-35 {
        font-size: 30px;
    }

    .table th,
    .table td {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .standard-card {
        padding: 20px;
    }

    .fs-35 {
        font-size: 26px;
    }

    .badge {
        font-size: 12px;
        padding: 0.2rem 0.4rem;
    }

    form .primary-btn {
        font-size: 12px;
        padding: 8px 16px;
    }

    .outline-btn {
        font-size: 12px;
        padding: 6px 10px;
    }
}

@media (max-width: 576px) {
    .section-header {
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 22px;
    }

    .table th,
    .table td {
        font-size: 12px;
        padding: 8px;
    }

    .badge {
        font-size: 11px;
    }

    form .primary-btn {
        font-size: 11px;
        padding: 6px 12px;
    }

    .outline-btn {
        font-size: 11px;
        padding: 5px 8px;
    }
}
/* General Styles for Student Portal */
#student-portal {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #6c757d;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Standard Card */
.standard-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.standard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 15px;
}

/* Form Styling */
form .form-label {
    font-size: 14px;
    font-weight: 500;
    color: #233d63;
    margin-bottom: 8px;
}

form .form-control {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    font-size: 14px;
    color: #6c757d;
    padding: 10px;
    transition: border-color 0.3s ease;
}

form .form-control:focus {
    border-color: #233d63;
    box-shadow: 0 0 0 3px rgba(35, 61, 99, 0.1);
}

form .btn {
    background: linear-gradient(135deg, #ec5252, #f58585);
    color: #ffffff;
    border: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

form .btn:hover {
    background: linear-gradient(135deg, #d14141, #f36b6b);
}

/* Profile Picture Styling */
.profile-picture img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
}

.profile-picture img:hover {
    transform: scale(1.05);
    border-color: #ec5252;
}

/* Notification Switches */
.form-check-label {
    font-size: 14px;
    color: #6c757d;
}

.form-check-input {
    cursor: pointer;
    border-radius: 15px;
    border: 1px solid #dee2e6;
    transition: background-color 0.3s ease;
}

.form-check-input:checked {
    background-color: #ec5252;
    border-color: #ec5252;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section-title {
        font-size: 30px;
    }

    .form-control {
        font-size: 14px;
    }

    .btn {
        font-size: 13px;
    }

    .profile-picture img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .form-control {
        font-size: 13px;
    }

    .btn {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 22px;
    }

    .form-control {
        font-size: 12px;
        padding: 8px;
    }

    .btn {
        font-size: 11px;
        padding: 8px 16px;
    }
}
.portfolio-overlay {
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.generic-portfolio-content:hover .portfolio-overlay {
    opacity: 1;
}
.icon-element-md {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    display: none;
}
.generic-portfolio-content:hover .icon-element-md {
    display: block;
}
/* General Events Section Styling */
#events-section {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    padding: 80px 0;
}

.section__title {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
    margin-bottom: 20px;
}

.section__desc {
    font-size: 16px;
    color: #7f8897;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: #ec5252;
    margin: 20px auto;
    border-radius: 2px;
}

/* Tab Navigation */
.nav-tabs .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #6c757d;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    background-color: #e9ecef;
    transition: all 0.3s ease-in-out;
}

.nav-tabs .nav-link:hover {
    background-color: #ec5252;
    color: #ffffff;
}

.nav-tabs .nav-link.active {
    background-color: #ec5252;
    color: #ffffff;
    box-shadow: 0px 4px 10px rgba(236, 82, 82, 0.3);
}

/* Event Cards */
.event-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    padding: 20px;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.event-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #233d63;
    margin-bottom: 10px;
}

.event-card p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;
}

.event-card i {
    color: #ec5252;
    margin-right: 8px;
}

.event-marker {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ec5252;
    border-radius: 50%;
    margin-left: 5px;
}

/* Calendar Styling */
.calendar {
    margin-top: 30px;
    padding: 20px;
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h5 {
    font-size: 20px;
    font-weight: 600;
    color: #233d63;
    margin: 0;
}

.calendar-header button {
    background-color: #ec5252;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.calendar-header button:hover {
    background-color: #d14141;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    text-align: center;
    font-weight: 600;
    color: #6c757d;
    font-size: 14px;
}

.calendar-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    text-align: center;
}

.calendar-body div {
    padding: 15px;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
    cursor: pointer;
}

.calendar-body div:hover {
    background-color: #ec5252;
    color: #ffffff;
}

.event-date {
    position: relative;
    background-color: #e9f7ef;
    color: #28a745;
    font-weight: 600;
}

.event-date:hover {
    background-color: #28a745;
    color: #ffffff;
}

.event-marker {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: #28a745;
    border-radius: 50%;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section__title {
        font-size: 30px;
    }

    .nav-tabs .nav-link {
        font-size: 14px;
        padding: 8px 16px;
    }

    .event-card {
        padding: 15px;
    }

    .event-card h5 {
        font-size: 16px;
    }

    .calendar-header h5 {
        font-size: 18px;
    }

    .calendar-days div,
    .calendar-body div {
        font-size: 12px;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .section__title {
        font-size: 26px;
    }

    .nav-tabs .nav-link {
        font-size: 13px;
        padding: 6px 12px;
    }

    .event-card h5 {
        font-size: 14px;
    }

    .calendar-header h5 {
        font-size: 16px;
    }

    .calendar-days div,
    .calendar-body div {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .section__title {
        font-size: 22px;
    }

    .nav-tabs .nav-link {
        font-size: 12px;
        padding: 5px 10px;
    }

    .calendar-header h5 {
        font-size: 14px;
    }

    .calendar-days div,
    .calendar-body div {
        font-size: 10px;
        padding: 8px;
    }
}
/* News Section Styling */
#news-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

#news-section .ribbon {
    font-size: 16px;
    color: #ec5252;
    text-transform: uppercase;
    font-weight: bold;
}

#news-section .section__title {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
}

#news-section .section-divider {
    width: 80px;
    height: 4px;
    background-color: #ec5252;
    margin: 20px auto;
    border-radius: 2px;
}

/* News Cards */
.news-card {
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e9ecef;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.news-card img {
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #e9ecef;
}

.news-card .card-title {
    font-size: 18px;
    font-weight: 600;
    color: #233d63;
}

.news-card .text-muted {
    font-size: 14px;
    color: #7f8897;
}

.news-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #6c757d;
}

.news-card .btn-primary {
    background-color: #ec5252;
    border: none;
    transition: all 0.3s ease-in-out;
}

.news-card .btn-primary:hover {
    background-color: #d14141;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    #news-section .section__title {
        font-size: 30px;
    }

    .news-card img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    #news-section .section__title {
        font-size: 26px;
    }

    .news-card img {
        height: 160px;
    }

    .news-card .card-title {
        font-size: 16px;
    }
}
/* FAQ Section Styling */
#faq-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

#faq-section .ribbon {
    font-size: 16px;
    color: #ec5252;
    text-transform: uppercase;
    font-weight: bold;
}

#faq-section .section__title {
    font-size: 35px;
    font-weight: 700;
    color: #233d63;
}

#faq-section .section-divider {
    width: 80px;
    height: 4px;
    background-color: #ec5252;
    margin: 20px auto;
    border-radius: 2px;
}

/* Accordion Styling */
#faqAccordion .accordion-item {
    border: none;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 10px;
}

#faqAccordion .accordion-header .accordion-button {
    font-size: 16px;
    font-weight: 600;
    color: #233d63;
    background-color: #ffffff;
    padding: 15px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

#faqAccordion .accordion-header .accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #ec5252;
    box-shadow: 0px 4px 10px rgba(236, 82, 82, 0.2);
}

#faqAccordion .accordion-header .accordion-button:hover {
    color: #ffffff;
    background-color: #d14141;
}

#faqAccordion .accordion-body {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.8;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 0 0 5px 5px;
}

/* FAQ Icons */
.faq-icon {
    font-size: 18px;
    margin-right: 8px;
    color: #ec5252;
    transition: all 0.3s ease-in-out;
}

.faq-icon i.la-question-circle {
    color: #233d63;
}

.faq-icon i.la-minus-circle {
    color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    #faq-section .section__title {
        font-size: 30px;
    }

    #faqAccordion .accordion-header .accordion-button {
        font-size: 14px;
    }

    #faqAccordion .accordion-body {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    #faq-section .section__title {
        font-size: 26px;
    }

    #faqAccordion .accordion-header .accordion-button {
        font-size: 13px;
    }

    #faqAccordion .accordion-body {
        font-size: 12px;
    }
}
