/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Nunito+Sans:wght@300;400;600;700;800&display=swap');

/* CSS Variables */
:root {
    --primary-blue: #1E3A8A;
    --secondary-yellow: #FDB813;
    --accent-sky: #E9F5FF;
    --light-blue: #3B82F6;
    --dark-blue: #0F172A;
    --medium-blue: #1E40AF;
    --light-gray: #F1F5F9;
    --medium-gray: #94A3B8;
    --dark-gray: #334155;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Nunito Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--primary-blue), var(--medium-blue));
    color: var(--white);
    padding: 15px 0;
}

.emblem-img {
    height: 80px;
}

.white-emblem {
  filter: brightness(0) invert(1);
}


.dept-name {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ut-name {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 5px;
}

.admin-type {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 3px;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.contact-item i {
    margin-right: 8px;
    color: var(--secondary-yellow);
}

.search-box {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.search-box .form-control {
    border: none;
    border-radius: 30px 0 0 30px;
    padding: 8px 15px;
    width: 200px;
    font-size: 0.9rem;
}

.search-btn {
    background: var(--secondary-yellow);
    border: none;
    border-radius: 0 30px 30px 0;
    padding: 8px 15px;
    color: var(--dark-blue);
}

.search-btn:hover {
    background: #e6a70f;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 0;
}

.navbar-nav {
    padding: 10px 0;
}

.nav-link {
    color: var(--dark-blue);
    font-weight: 600;
    padding: 10px 15px !important;
    margin: 0 5px;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-blue);
    color: var(--white) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

/* Make carousel look premium */
#heroCarousel {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.hero-slide {
    height: clamp(360px, 52vh, 560px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Subtle dark overlay for better contrast + consistent look */
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.10) 45%, rgba(0,0,0,0.35) 100%);
    z-index: 1;
}

.slide-content { z-index: 2; }

/* Smooth fade */
.carousel-fade .carousel-item { transition: opacity .8s ease-in-out; }

.slide-content {
    text-align: center;
    padding: 20px;
    z-index: 2;
    width: 100%;
}

.slide-card {
    /* Remove the overlay card completely (keep only slider text) */
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: none;
    border: none;
    animation: none;
}

.slide-title {
    color: var(--white);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-subtitle {
    color: var(--accent-sky);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.highlight-box {
    display: inline-block;
    background: rgba(253, 184, 19, 0.2);
    padding: 10px 25px;
    border-radius: 30px;
    border: 1px solid var(--secondary-yellow);
}

.highlight-text {
    color: var(--secondary-yellow);
    font-weight: 700;
    letter-spacing: 1px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 54px;
    height: 54px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.95;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: none;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.38);
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.carousel-control-prev-icon::after {
    content: "❮";
    font-size: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.carousel-control-next-icon::after {
    content: "❯";
    font-size: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Section Titles */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--secondary-yellow);
    border-radius: 2px;
}

/* Notifications Section */
.notifications-section {
    background: var(--accent-sky);
    padding: 60px 0;
}

.controls {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--medium-gray);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.notifications-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 10px 0 30px;
    scrollbar-width: none;
}

.notifications-slider::-webkit-scrollbar {
    display: none;
}

.notification-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    min-width: 350px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.notification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--secondary-yellow);
    color: var(--dark-blue);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.card-date {
    color: var(--medium-gray);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.card-title {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-excerpt {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.read-more {
    color: var(--light-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-blue);
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 1.5rem;
    animation: rotate 8s linear infinite;
}

.new-badge {
    position: absolute;
    top: -15px;
    right: 15px;
    background: #ff4757;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 71, 87, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.services-carousel {
    padding: 30px 0;
    position: relative;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: #002B5C;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.carousel-control-prev-icon::after {
    content: "❮";
    font-size: 1.2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.carousel-control-next-icon::after {
    content: "❯";
    font-size: 1.2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin: 0 10px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-img-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.service-card:hover .service-icon-badge {
    transform: scale(1.1) rotate(10deg);
    background: var(--secondary-yellow);
    color: var(--dark-blue);
}

.service-content {
    padding: 25px;
    text-align: center;
}

.service-title {
    color: var(--dark-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-desc {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.read-more-link:hover {
    color: var(--secondary-yellow);
}

.read-more-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more-link:hover i {
    transform: translateX(3px);
}

/* Services Buttons */
.services-buttons {
    margin-top: 40px;
}

.service-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-btn:hover {
    background: #002B5C;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.service-btn:hover i {
    transform: translateX(3px);
}

.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn.clicked {
    transform: translateY(-3px) scale(0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.service-btn.hovered {
    background: #002B5C;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .service-card {
        margin: 0 5px;
    }
    
    .service-img-wrapper {
        height: 160px;
    }
    
    .service-icon-badge {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .services-carousel .carousel-item > .row {
        --bs-gutter-x: 0.5rem;
    }
    
    .service-card {
        margin: 0 5px 20px;
    }
    
    .service-img-wrapper {
        height: 150px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .service-img-wrapper {
        height: 140px;
    }
    
    .service-icon-badge {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        top: 15px;
        right: 15px;
    }
    
    .service-content {
        padding: 15px;
    }
    
    .service-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Leadership Section */
.leadership-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.leader-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.leader-img-wrapper {
    padding: 30px 20px 10px;
}

.leader-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--accent-sky);
    margin: 0 auto;
    transition: var(--transition);
}

.leader-card.level-1 .leader-img { width: 130px; height: 130px; }
.leader-card.level-2 .leader-img { width: 150px; height: 150px; }
.leader-card.level-3 .leader-img { width: 170px; height: 170px; }
.leader-card.level-4 .leader-img { width: 190px; height: 190px; }
.leader-card.level-5 .leader-img { width: 220px; height: 220px; }

.leader-card:hover .leader-img {
    border-color: var(--secondary-yellow);
    transform: scale(1.05);
}

.leader-info {
    padding: 20px;
}

.leader-name {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.leader-designation {
    color: var(--light-blue);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.leader-desc {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-title {
    color: var(--secondary-yellow);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-yellow);
}

.footer-address,
.contact-details {
    margin-bottom: 25px;
}

.footer-address p,
.contact-details p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.footer-address i,
.contact-details i {
    color: var(--secondary-yellow);
    margin-right: 10px;
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-yellow);
    color: var(--dark-blue);
    transform: translateY(-5px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--accent-sky);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: block;
}

.footer-links a:hover {
    color: var(--secondary-yellow);
    transform: translateX(5px);
}

.footer-divider {
    background: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.copyright {
    color: var(--accent-sky);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Scroll to Top Button */
#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
}

#scrollToTopBtn.visible {
    opacity: 1;
    transform: translateY(0);
}

#scrollToTopBtn:hover {
    background: var(--secondary-yellow);
    color: var(--dark-blue);
    transform: translateY(-5px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-slide {
        height: 400px;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-subtitle {
        font-size: 1.2rem;
    }
    
    .slide-card {
        padding: 30px 20px;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 10px 0;
    }
    
    .emblem-img {
        height: 40px;
    }
    
    .dept-name {
        font-size: 0.9rem;
    }
    
    .ut-name {
        font-size: 0.8rem;
    }
    
    .admin-type {
        font-size: 0.7rem;
    }
    
    .contact-item {
        font-size: 0.8rem;
    }
    
    .search-box {
        margin-left: 10px;
    }
    
    .search-box .form-control {
        width: 150px;
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .search-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .hero-slide {
        height: 350px;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .notification-card {
        min-width: 300px;
        padding: 20px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .leader-img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .top-bar .row {
        text-align: center;
    }
    
    .top-bar .d-flex {
        justify-content: center !important;
    }
    
    .contact-item {
        margin: 10px 0;
    }
    
    .search-box {
        margin: 10px 0 0;
        justify-content: center;
    }
    
    .hero-slide {
        height: 300px;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slide-subtitle {
        font-size: 0.9rem;
    }
    
    .slide-card {
        padding: 20px 15px;
    }
    
    .highlight-box {
        padding: 8px 15px;
    }
    
    .highlight-text {
        font-size: 0.8rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .controls {
        align-self: flex-end;
    }
    
    .notification-card {
        min-width: 280px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    #scrollToTopBtn {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* About Us Section */
.about-us-section {
    background-color: #f3f9ff;
    padding: 80px 0;
}

.about-us-section .section-title {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.about-us-section .section-divider {
    width: 60px;
    height: 4px;
    background: var(--secondary-yellow);
    border-radius: 2px;
    margin: 0 auto;
}

.about-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #E0E8F9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #00ADEF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.about-card:hover .card-number {
    transform: scale(1.1);
    background: var(--primary-blue);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-sky);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.about-card:hover .card-icon {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
}

.card-title {
    color: var(--dark-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-description {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.learn-more {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: var(--secondary-yellow);
}

.learn-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(3px);
}

/* Responsive Adjustments for About Us Section */
@media (max-width: 992px) {
    .about-card {
        padding: 25px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 60px 0;
    }
    
    .about-us-section .section-title {
        font-size: 1.8rem;
    }
    
    .about-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .about-us-section {
        padding: 50px 0;
    }
    
    .about-us-section .section-title {
        font-size: 1.6rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
}

/* Photo Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: var(--white);
}

.gallery-section .section-title {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.gallery-section .section-divider {
    width: 60px;
    height: 4px;
    background: var(--secondary-yellow);
    border-radius: 2px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
    transform: scale(0.8);
}

.gallery-item:hover .overlay-content {
    transform: scale(1);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(30, 58, 138, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.carousel-control-prev-icon::after {
    content: "❮";
    font-size: 1.2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.carousel-control-next-icon::after {
    content: "❯";
    font-size: 1.2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.carousel-indicators [data-bs-target] {
    width: 14px;
    height: 6px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.55);
    opacity: 0.85;
    transition: all 0.25s ease;
}

.carousel-indicators [data-bs-target].active {
    opacity: 1;
    width: 26px;
    background-color: var(--secondary-yellow);
}

.view-all-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.view-all-btn:hover {
    background: #002B5C;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-modal.show {
    display: block;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--secondary-yellow);
}

.modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.modal-img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 8px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-caption {
    color: white;
    font-size: 1.2rem;
    margin-top: 20px;
    text-align: center;
    max-width: 80%;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    padding: 16px;
    user-select: none;
    transition: color 0.3s ease;
    z-index: 10001;
}

.prev:hover, .next:hover {
    color: var(--secondary-yellow);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Responsive Adjustments for Gallery */
@media (max-width: 992px) {
    .gallery-img {
        height: 200px;
    }
    
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-section .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .gallery-img {
        height: 180px;
    }
    
    .gallery-section {
        padding: 50px 0;
    }
    
    .gallery-section .section-title {
        font-size: 1.6rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev-icon::after,
    .carousel-control-next-icon::after {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .gallery-img {
        height: 150px;
    }
    
    .gallery-section .section-title {
        font-size: 1.4rem;
    }
    
    .close-btn {
        font-size: 30px;
        top: 15px;
        right: 20px;
    }
    
    .prev, .next {
        font-size: 30px;
    }
    
    .prev {
        left: 10px;
    }
    
    .next {
        right: 10px;
    }
    
    .modal-img {
        max-width: 95%;
        max-height: 70%;
    }
}