/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.wrapper {
    flex: 1;
}

/* Navbar Styles */
.navbar-brand .school-name {
    font-size: 1rem;
}

.navbar-brand small {
    font-size: 0.75rem;
}

/* Navbar Logo Styles */
.navbar-brand img {
    filter: brightness(0) invert(1); /* Makes the emblem white in color */
    max-height: 65px;
    width: auto;
}

.navbar-brand:hover img {
    filter: brightness(0) invert(0.9); /* Slightly dim on hover */
}

/* Adjust school name position */
.navbar-brand .school-name {
    margin-left: 0.5rem;
    border-left: 2px solid rgba(255, 255, 255, 0.5);
    padding-left: 1rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/school-building.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

/* Quote Section */
.quote-section {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.quote-text {
    font-style: italic;
    font-size: 1.2rem;
}

/* Staff Cards */
.staff-card {
    transition: transform 0.3s;
    margin-bottom: 20px;
}

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

.staff-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
}

/* Staff Card Hindi Text */
.staff-card .hindi-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
}

/* Gallery */
.gallery-category {
    margin-bottom: 30px;
}

.gallery-item {
    margin-bottom: 20px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* ICT Lab */
.ict-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Contact Form */
.contact-form {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

/* Footer */
footer {
    margin-top: auto;
}

.social-links a {
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #0d6efd !important;
}

/* Carousel Styles */
#schoolCarousel {
    margin-bottom: 2rem;
}

#schoolCarousel .carousel-item {
    height: 400px; /* Fixed height of 400px */
}

#schoolCarousel .carousel-item img {
    object-fit: cover;
    height: 400px;
    width: 100%;
    object-position: center 35%;
}

#schoolCarousel .carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 0.75rem;
    border-radius: 6px;
    bottom: 10px;
}

#schoolCarousel .carousel-caption h1 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

#schoolCarousel .carousel-caption p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

#schoolCarousel .carousel-indicators {
    bottom: 1rem;
}

#schoolCarousel .carousel-control-prev,
#schoolCarousel .carousel-control-next {
    width: 5%;
}

/* ICT Lab Instructor Card Styles */
.instructor-card {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

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

.instructor-card .card-title {
    color: #1e4d92;
    font-weight: 600;
}

.instructor-card .instructor-img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.instructor-card:hover .instructor-img {
    transform: scale(1.05);
}

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

.instructor-card ul {
    padding-left: 1.2rem;
}

.instructor-card ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Instructor Quote Styles */
.instructor-quote {
    border-left: 4px solid #1e4d92;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    background: rgba(30, 77, 146, 0.05);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.instructor-quote .blockquote {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.instructor-quote .blockquote-footer {
    color: #666;
    font-size: 0.9rem;
}

.instructor-quote .blockquote p {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}
