:root {
--primary-color: #1a73e8;
--secondary-color: #34a853;
--dark-color: #202124;
--light-color: #f8f9fa;
--accent-color: #fbbc04;
--text-color: #5f6368;
}

body {
font-family: 'Open Sans', sans-serif;
color: var(--text-color);
line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Poppins', sans-serif;
font-weight: 600;
color: var(--dark-color);
}

.hero-section {
background: linear-gradient(135deg, rgba(26, 115, 232, 0.9) 0%, rgba(52, 168, 83, 0.8) 100%), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
color: white;
padding: 120px 0 80px;
margin-top: 76px; /* For fixed navbar */
}

.navbar {
background-color: white !important;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
padding: 15px 0;
}

.navbar-brand {
font-family: 'Poppins', sans-serif;
font-weight: 700;
font-size: 1.8rem;
color: var(--primary-color) !important;
}

.badge-new {
background-color: var(--accent-color);
color: var(--dark-color);
font-size: 0.7rem;
padding: 3px 8px;
border-radius: 12px;
position: absolute;
top: -5px;
right: -10px;
}

.stats-card {
background: white;
border-radius: 10px;
padding: 25px;
text-align: center;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
height: 100%;
transition: transform 0.3s ease;
}

.stats-card:hover {
transform: translateY(-5px);
}

.stats-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 10px;
}

.program-card {
border-radius: 10px;
overflow: hidden;
border: 1px solid #eee;
transition: all 0.3s ease;
height: 100%;
}

.program-card:hover {
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transform: translateY(-5px);
}

.program-badge {
position: absolute;
top: 15px;
right: 15px;
background-color: var(--accent-color);
color: var(--dark-color);
padding: 5px 10px;
border-radius: 5px;
font-size: 0.8rem;
font-weight: 600;
}

.testimonial-card {
background: var(--light-color);
border-radius: 10px;
padding: 30px;
height: 100%;
position: relative;
}

.testimonial-card::before {
content: '"';
font-size: 80px;
color: rgba(26, 115, 232, 0.1);
position: absolute;
top: 10px;
left: 20px;
font-family: Georgia, serif;
}

.feature-icon {
width: 60px;
height: 60px;
background-color: rgba(26, 115, 232, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

.feature-icon i {
font-size: 24px;
color: var(--primary-color);
}

.cta-section {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
color: white;
padding: 80px 0;
border-radius: 15px;
}

.news-card {
border: none;
border-radius: 10px;
overflow: hidden;
transition: all 0.3s ease;
}

.news-card:hover {
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.event-date {
background-color: var(--primary-color);
color: white;
width: 80px;
height: 80px;
border-radius: 10px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}

.event-date .month {
font-size: 0.9rem;
text-transform: uppercase;
font-weight: 600;
}

.event-date .day {
font-size: 1.8rem;
font-weight: 700;
line-height: 1;
}

.btn-primary {
background-color: var(--primary-color);
border-color: var(--primary-color);
padding: 10px 25px;
border-radius: 5px;
font-weight: 600;
}

.btn-primary:hover {
background-color: #0d62d9;
border-color: #0d62d9;
}

.btn-outline-light {
border-radius: 5px;
padding: 10px 25px;
font-weight: 600;
}

section {
padding: 80px 0;
}

.section-title {
position: relative;
padding-bottom: 15px;
margin-bottom: 50px;
}

.section-title::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 60px;
height: 3px;
background-color: var(--primary-color);
}

.section-title.text-center::after {
left: 50%;
transform: translateX(-50%);
}

footer {
background-color: var(--dark-color);
color: white;
padding: 60px 0 20px;
}

@media (max-width: 768px) {
.hero-section {
padding: 100px 0 60px;
text-align: center;
}

section {
padding: 60px 0;
}
}





.notice-board {
    border: 2px solid #333;
    height: 300px;           /* SAME HEIGHT */
    background: #fff8dc;     /* notice board color */
    box-shadow: 4px 4px 10px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}

.notice-header {
    background: #8b0000;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;
}

.notice-body {
    padding: 10px;
    flex: 1;
    overflow: hidden;
}

.notice-item {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.notice-item:hover {
    color: #8b0000;
    font-weight: 600;
}






.footer-area {
    background: #0b1f3a;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #e5e7eb;
}

.footer-item i {
    font-size: 18px;
    color: #0d6efd;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.15);
    margin: 25px 0;
}

.footer-copy {
    font-size: 14px;
    color: #cbd5e1;
}




/* ===== Hero Carousel Styles ===== */
.hero-carousel {
position: relative;
height: 80vh;
min-height: 500px;
margin-top: 76px;
}

.carousel-item {
height: 80vh;
min-height: 500px;
}

.carousel-image {
width: 100%;
height: 100%;
object-fit: cover;
filter: brightness(0.7);
}

.carousel-caption {
background: rgba(0, 0, 0, 0.5);
padding: 20px;
border-radius: 10px;
max-width: 600px;
margin: 0 auto;
}

.carousel-control-prev,
.carousel-control-next {
width: 50px;
height: 50px;
background: rgba(0, 0, 0, 0.5);
border-radius: 50%;
top: 50%;
transform: translateY(-50%);
opacity: 0.7;
transition: opacity 0.3s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
opacity: 1;
}

.carousel-indicators [data-bs-target] {
width: 12px;
height: 12px;
border-radius: 50%;
margin: 0 8px;
border: 2px solid white;
background: transparent;
}

.carousel-indicators .active {
background: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.hero-carousel,
.carousel-item {
height: 60vh;
min-height: 400px;
}

.carousel-caption h3 {
font-size: 1.5rem;
}

.carousel-caption p {
font-size: 0.9rem;
}
}

/* ===== Breadcrumb Banner ===== */
.breadcrumb-banner-area {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    background-image: url("../img/breadcrumb.jpg"); /* your image */
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    font-family: 'Poppins', sans-serif;
}

/* Dark overlay */
.breadcrumb-banner-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.55)
    );
}

/* Content */
.breadcrumb-text {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

/* Title */
.breadcrumb-text h1 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
	margin-top: 80px;
    margin-bottom: 10px;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    justify-content: center;
    margin: 0;
}

.breadcrumb-item {
    font-size: 15px;
    color: #f1f1f1;
}

/* Breadcrumb link */
.breadcrumb-item a {
    color: #ffd43b;
    font-weight: 500;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

/* Separator */
.breadcrumb-item + .breadcrumb-item::before {
    color: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
    .breadcrumb-banner-area {
        min-height: 200px;
    }

    .breadcrumb-text h1 {
        font-size: 28px;
    }
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.table td {
    font-size: 15px;
    line-height: 1.6;
}
.file-icon {
    height: 40px;
    max-width: 40px;
    object-fit: contain;
    transition: 0.3s ease;
}

.file-icon:hover {
    transform: scale(1.1);
}



/* ===== Contact Us Page ===== */
.contact-box {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 25px;
    background: #ffffff;
}

.contact-box h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #0d6efd;
}

.contact-box p {
    font-size: 15px;
    color: #555;
}

.contact-box i {
    color: #0d6efd;
    margin-right: 8px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}


/* ===== Gallery Page ===== */
.gallery-card {
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}

.gallery-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

/* Modal Image */
.modal-img {
    max-height: 80vh;
    border-radius: 6px;
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    border: none;
    color: #fff;
    font-size: 20px;
    padding: 6px 11px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.left-btn { left: 15px; }
.right-btn { right: 15px; }

.nav-btn:hover {
    background: rgba(0,0,0,0.85);
}


/* ===== Program Page ===== */
.accordion-container {
    max-width: 900px;
    margin: auto;
}

/* Accordion Item */
.accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    margin-bottom: 15px;
    overflow: hidden;
}

/* Header */
.accordion-header {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    background: #f8f9fa;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Icon */
.accordion-header .icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

/* Active */
.accordion-header.active {
    background: #0d6efd;
    color: #fff;
}

.accordion-header.active .icon {
    transform: rotate(45deg);
}

/* Content */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #ffffff;
}

.accordion-content p {
    padding: 15px 20px;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

