/* ========== MOBILE FIRST RESPONSIVE CSS - RED THEME ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
    color: #2C3E50;
    overflow-x: hidden;
    width: 100%;
}

/* ========== FLOATING BUTTONS ========== */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-wa, .floating-call {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.floating-wa {
    background: #25D366;
    color: white;
}

.floating-call {
    background: #007bff;
    color: white;
}

.floating-wa i, .floating-call i {
    font-size: 24px;
}

/* ========== NAVBAR - MOBILE FIRST ========== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.logo-text h2 {
    font-size: 0.75rem;
    font-weight: 800;
    color: #0A2B3E;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.55rem;
    color: #C0392B;
    font-weight: 600;
}

.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    list-style: none;
}

.nav-links.show {
    display: flex;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    color: #0A2B3E;
    padding: 10px 0;
    display: block;
    transition: all 0.3s ease;
}

.nav-links a:hover, 
.nav-links a.active {
    color: #C0392B;
}

.hamburger {
    display: block;
    font-size: 24px;
    cursor: pointer;
    color: #0A2B3E;
}

/* ========== HERO SECTION - MOBILE FIRST ========== */
.hero-header {
    min-height: 100vh;
    height: auto;
    position: relative;
    background: url('../assests/hero_image1.jfif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 60px;
}

.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,43,62,0.85) 0%, rgba(10,43,62,0.6) 100%);
}

.hero-content-main {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 60px 20px;
}

.hero-text-box {
    max-width: 100%;
}

.hero-badge {
    background: #C0392B;
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-text-box h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.hero-location {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    width: 200px;
    text-align: center;
}

.btn-primary {
    background: #C0392B;
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #A93226;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #0A2B3E;
}

/* ========== ACCREDITATION STRIP ========== */
.accred-strip {
    background: #0A2B3E;
    padding: 12px 15px;
    overflow-x: auto;
    white-space: nowrap;
}

.accred-items {
    display: inline-flex;
    gap: 20px;
}

.accred-items span {
    color: white;
    font-size: 0.7rem;
    white-space: nowrap;
}

.accred-items i {
    color: #C0392B;
    margin-right: 5px;
}

/* ========== QUICK INFO CARDS ========== */
.quick-info {
    margin-top: -30px;
    position: relative;
    z-index: 10;
    padding: 0 15px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-card {
    background: white;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 1.5rem;
    color: #C0392B;
    margin-bottom: 8px;
}

.info-card h3 {
    font-size: 0.85rem;
    margin-bottom: 4px;
    color: #0A2B3E;
}

.info-card p {
    font-size: 0.7rem;
    color: #666;
}

/* ========== SECTION TITLE ========== */
.section-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 30px;
    padding: 0 15px;
}

.section-title span {
    color: #C0392B;
}

/* ========== GALLERY SLIDER ========== */
.gallery-slider {
    padding: 40px 0;
    background: #F8F9FA;
}

.swiper {
    width: 100%;
    height: 250px;
}

.swiper-slide {
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.slide-caption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
}

/* ========== ABOUT SECTION ========== */
.about-premium {
    padding: 40px 0;
}

.about-wrapper {
    padding: 0 15px;
}

.about-text-premium {
    margin-bottom: 30px;
}

.section-tag {
    color: #C0392B;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.about-text-premium h2 {
    font-size: 1.6rem;
    margin: 10px 0 15px;
}

.about-text-premium h2 span {
    color: #C0392B;
}

.about-text-premium p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #4a5568;
    margin-bottom: 15px;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.about-stats div {
    flex: 1;
    text-align: center;
    background: #FDE8E6;
    padding: 12px;
    border-radius: 12px;
}

.about-stats strong {
    font-size: 1.2rem;
    color: #0A2B3E;
    display: block;
}

.about-stats br {
    display: none;
}

.btn-learn {
    background: transparent;
    border: none;
    color: #C0392B;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-learn:hover {
    letter-spacing: 1px;
}

.about-image-grid {
    margin-top: 20px;
}

.grid-img-main {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 10px;
}

.grid-small {
    display: flex;
    gap: 10px;
}

.grid-small img {
    width: 50%;
    border-radius: 15px;
}

/* ========== PROGRAMS ========== */
.programs-premium {
    padding: 40px 0;
    background: #F8F9FA;
}

.programs-grid-premium {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.program-card-premium {
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.program-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.program-icon {
    font-size: 2rem;
    color: #C0392B;
    margin-bottom: 10px;
}

.program-card-premium h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.program-card-premium p {
    color: #C0392B;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.program-card-premium ul {
    list-style: none;
    margin: 15px 0;
}

.program-card-premium li {
    margin: 8px 0;
    font-size: 0.8rem;
}

.program-card-premium li i {
    color: #C0392B;
    margin-right: 8px;
}

.program-btn {
    background: #FDE8E6;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.program-btn:hover {
    background: #C0392B;
    color: white;
}

/* ========== FACILITIES ========== */
.facilities-showcase {
    padding: 40px 0;
}

.facilities-masonry {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.facility-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 200px;
}

.facility-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.facility-item:hover img {
    transform: scale(1.05);
}

.facility-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 15px;
}

.facility-overlay h4 {
    color: white;
    font-size: 0.9rem;
}

/* ========== WHY CHOOSE ========== */
.why-premium {
    padding: 40px 0;
    background: #FDE8E6;
}

.why-grid {
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.why-card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.why-card i {
    font-size: 1.3rem;
    color: #C0392B;
    margin-bottom: 8px;
}

.why-card h4 {
    font-size: 0.75rem;
}

/* ========== MESSAGES ========== */
.messages-premium {
    padding: 40px 0;
}

.messages-grid {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.message-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #F8F9FA;
    padding: 20px;
    border-radius: 20px;
    gap: 15px;
    transition: all 0.3s ease;
}

.message-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.message-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #C0392B;
}

.message-content h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.message-content span {
    color: #C0392B;
    font-size: 0.7rem;
}

.message-content p {
    font-size: 0.8rem;
    margin-top: 8px;
    line-height: 1.4;
}

/* ========== CAMPUS LIFE ========== */
.campus-premium {
    padding: 40px 0;
    background: #F8F9FA;
}

.campus-grid {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.campus-card {
    overflow: hidden;
    border-radius: 15px;
    height: 200px;
}

.campus-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.campus-card:hover img {
    transform: scale(1.05);
}
/* ========== FOOTER - PROFESSIONAL DESIGN ========== */
footer {
    background: #0A2B3E;
    color: white;
    padding: 50px 0 20px;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 40px;
}

.footer-about {
    text-align: center;
}

.footer-logo {
    width: 60px;
    margin-bottom: 15px;
}

.footer-about h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #C0392B;
}

.footer-about p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #ccc;
}

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin: 0 5px;
    line-height: 35px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #C0392B;
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4, .footer-newsletter h4 {
    color: #C0392B;
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
}

.footer-links h4::after, .footer-contact h4::after, .footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #C0392B;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin: 12px 0;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #C0392B;
    padding-left: 5px;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item i {
    color: #C0392B;
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-item p, .contact-item a {
    color: #ccc;
    font-size: 0.8rem;
    text-decoration: none;
    line-height: 1.4;
}

.contact-item a:hover {
    color: #C0392B;
}

.footer-newsletter p {
    font-size: 0.8rem;
    color: #ccc;
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 12px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 0.8rem;
    outline: none;
}

.newsletter-form button {
    background: #C0392B;
    border: none;
    padding: 0 15px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #A93226;
}

.footer-hours {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-hours i {
    color: #C0392B;
}

.footer-hours p {
    font-size: 0.8rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-left p {
    font-size: 0.7rem;
    color: #888;
}

.footer-bottom-right {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-right a {
    color: #888;
    text-decoration: none;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.footer-bottom-right a:hover {
    color: #C0392B;
}

/* ========== RESPONSIVE FOOTER ========== */
@media (min-width: 768px) {
    .footer-main {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .footer-about {
        flex: 2;
        text-align: left;
    }
    
    .footer-links {
        flex: 1;
    }
    
    .footer-contact {
        flex: 2;
    }
    
    .footer-newsletter {
        flex: 2;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .footer-bottom-right {
        justify-content: flex-end;
    }
}
/* ========== FOOTER ========== */
footer {
    background: #0A2B3E;
    color: white;
    padding: 40px 0 20px;
}

.footer-grid {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.footer-col h4 {
    color: #C0392B;
    margin-bottom: 12px;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin: 8px 0;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: #C0392B;
}

.social-icons a {
    display: inline-block;
    margin: 0 8px;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #C0392B;
    transform: translateY(-3px);
}

.newsletter {
    display: flex;
    max-width: 250px;
    margin: 10px auto 0;
}

.newsletter input {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 25px 0 0 25px;
    font-size: 0.8rem;
    outline: none;
}

.newsletter button {
    background: #C0392B;
    border: none;
    padding: 8px 15px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    background: #A93226;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.7rem;
}

/* ========== MODAL ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    width: 85%;
    max-width: 320px;
}

.modal-content i {
    color: #C0392B;
}

.modal-content input {
    width: 100%;
    padding: 10px;
    margin: 12px 0;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
}

.close {
    float: right;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: #C0392B;
}

/* ========== TABLET & DESKTOP ========== */
@media (min-width: 768px) {
    /* Navbar Desktop */
    .hamburger {
        display: none;
    }
    
    .nav-links {
        display: flex !important;
        position: static;
        width: auto;
        flex-direction: row;
        padding: 0;
        gap: 25px;
        box-shadow: none;
    }
    
    .nav-links a {
        padding: 0;
    }
    
    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 15px 30px;
    }
    
    .logo-img {
        width: 45px;
        height: 45px;
    }
    
    .logo-text h2 {
        font-size: 0.9rem;
    }
    
    /* Hero Desktop */
    .hero-header {
        margin-top: 0;
    }
    
    .hero-content-main {
        min-height: 100vh;
        padding: 0;
    }
    
    .hero-text-box h1 {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .btn {
        width: auto;
        padding: 12px 30px;
    }
    
    /* Quick Info Desktop */
    .info-cards {
        flex-direction: row;
        justify-content: center;
    }
    
    .info-card {
        min-width: 180px;
    }
    
    /* About Desktop */
    .about-wrapper {
        display: flex;
        gap: 40px;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .about-text-premium {
        flex: 1;
        margin-bottom: 0;
    }
    
    .about-image-grid {
        flex: 1;
        margin-top: 0;
    }
    
    .about-stats {
        gap: 20px;
    }
    
    /* Programs Desktop */
    .programs-grid-premium {
        flex-direction: row;
        max-width: 1200px;
        margin: 0 auto;
        gap: 30px;
    }
    
    .program-card-premium {
        flex: 1;
    }
    
    /* Facilities Desktop */
    .facilities-masonry {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    /* Why Choose Desktop */
    .why-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
        margin: 0 auto;
        gap: 20px;
    }
    
    /* Messages Desktop */
    .messages-grid {
        flex-direction: row;
        max-width: 1200px;
        margin: 0 auto;
        gap: 30px;
    }
    
    .message-card {
        flex-direction: row;
        text-align: left;
        flex: 1;
    }
    
    /* Campus Desktop */
    .campus-grid {
        flex-direction: row;
        max-width: 1200px;
        margin: 0 auto;
        gap: 20px;
    }
    
    .campus-card {
        flex: 1;
    }
    
    /* Footer Desktop */
    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        max-width: 1200px;
        margin: 0 auto;
        gap: 40px;
    }
    
    .newsletter {
        margin: 0;
    }
    
    /* Swiper Desktop */
    .swiper {
        height: 450px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .hero-text-box h1 {
        font-size: 3.5rem;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .swiper {
        height: 500px;
    }
}