/**
 * PK International School - Main Stylesheet
 * 
 * Color Theme: Light Pink & White
 * Fonts: Poppins (body), Playfair Display (headings)
 */

/* ========================================
   CSS Custom Properties / Design Tokens
   ======================================== */
:root {
    /* Primary Colors */
    --primary-pink: #e06b9f;
    --primary-pink-rgb: 224, 107, 159;
    --light-pink: #fce8f0;
    --soft-pink: #f3b5cc;
    --pale-pink: #fef3f7;
    --accent-pink: #c44d82;
    --white: #FFFFFF;
    
    /* Gradient */
    --gradient-pink: linear-gradient(135deg, #e06b9f 0%, #eb8fb8 100%);
    --gradient-soft: linear-gradient(135deg, #fce8f0 0%, #fef3f7 100%);
    --gradient-hero: linear-gradient(135deg, rgba(224, 107, 159, 0.85) 0%, rgba(196, 77, 130, 0.75) 100%);
    
    /* Text Colors */
    --dark-text: #2D2D2D;
    --body-text: #555555;
    --light-text: #888888;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --section-padding-sm: 50px 0;
    
    /* Borders & Shadows */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(224, 107, 159, 0.1);
    --shadow-lg: 0 8px 40px rgba(224, 107, 159, 0.15);
    --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.08);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ========================================
   Global Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--body-text);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-text);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--primary-pink);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-pink);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Section Titles
   ======================================== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-pink);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-family: var(--font-body);
    position: relative;
    padding: 0 20px;
}

.section-title .subtitle::before,
.section-title .subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--soft-pink);
}

.section-title .subtitle::before { left: -20px; }
.section-title .subtitle::after { right: -20px; }

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--light-text);
    font-size: 16px;
}

/* ========================================
   Buttons
   ======================================== */
.btn-pink {
    background: var(--gradient-pink);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(224, 107, 159, 0.3);
}

.btn-pink:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(224, 107, 159, 0.4);
    color: var(--white);
}

.btn-pink-outline {
    background: transparent;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-pink-outline:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(224, 107, 159, 0.3);
}

.btn-white {
    background: var(--white);
    color: var(--primary-pink);
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    color: var(--accent-pink);
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
    background: #a82356;
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar a {
    color: rgba(255,255,255,0.9);
    margin-right: 20px;
    font-size: 13px;
}

.top-bar a:hover {
    color: var(--white);
}

.top-bar a i {
    margin-right: 5px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.follow-text {
    font-weight: 500;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    color: var(--white);
    margin-right: 5px;
    font-size: 12px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--white);
    color: #a82356;
    transform: translateY(-2px);
}

/* ========================================
   Main Navbar
   ======================================== */
.main-navbar {
    background: var(--pale-pink);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 1000;
}

.main-navbar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px 0;
    box-shadow: var(--shadow-md);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 55px;
    width: auto;
    transition: var(--transition);
}

.scrolled .logo-img {
    height: 45px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.school-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.2;
}

.school-tagline {
    font-size: 11px;
    color: var(--primary-pink);
    font-weight: 500;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    padding: 8px 14px !important;
    font-weight: 500;
    color: var(--dark-text);
    font-size: 14px;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--primary-pink);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-pink);
}

.nav-link.nav-cta {
    background: var(--gradient-pink);
    color: var(--white) !important;
    border-radius: 50px;
    padding: 8px 20px !important;
    margin-left: 10px;
    font-size: 13px;
}

.nav-link.nav-cta::after {
    display: none;
}

.nav-link.nav-cta:hover {
    box-shadow: 0 4px 15px rgba(224, 107, 159, 0.3);
    transform: translateY(-1px);
}

/* Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    padding: 10px 0;
    margin-top: 5px;
    border-top: 3px solid var(--primary-pink);
}

.dropdown-item {
    padding: 8px 20px;
    font-size: 14px;
    color: var(--body-text);
    transition: var(--transition);
}

.dropdown-item:hover,
.dropdown-item.active {
    background: var(--pale-pink);
    color: var(--primary-pink);
    padding-left: 25px;
}

/* ========================================
   Hero Banner / Slider
   ======================================== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slider .swiper-slide {
    position: relative;
    height: 85vh;
    min-height: 500px;
    max-height: 750px;
    display: flex;
    align-items: center;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
}

.hero-content .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-content h1 {
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 17px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* Swiper Navigation & Pagination */
.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.5;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* ========================================
   About Section (Homepage)
   ======================================== */
.about-section {
    padding: var(--section-padding);
    background: var(--white);
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper .experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-pink);
    color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
    display: block;
}

.experience-badge .label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-content .highlight-text {
    font-size: 17px;
    color: var(--primary-pink);
    font-weight: 500;
    margin-bottom: 15px;
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--dark-text);
}

.about-feature-item i {
    color: var(--primary-pink);
    font-size: 16px;
    width: 28px;
    height: 28px;
    background: var(--light-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ========================================
   Why Choose Us Section
   ======================================== */
.why-choose-section {
    padding: var(--section-padding);
    background: var(--pale-pink);
    position: relative;
}

.why-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-pink);
    transform: scaleX(0);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card .icon-box {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--light-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.why-card .icon-box i {
    font-size: 28px;
    color: var(--primary-pink);
    transition: var(--transition);
}

.why-card:hover .icon-box {
    background: var(--gradient-pink);
}

.why-card:hover .icon-box i {
    color: var(--white);
}

.why-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 600;
}

.why-card p {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.7;
}

/* ========================================
   Facilities Section
   ======================================== */
.facilities-section {
    padding: var(--section-padding);
    background: var(--white);
}

.facility-icon-card {
    text-align: center;
    padding: 30px 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

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

.facility-icon-card .facility-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 2px dashed var(--soft-pink);
    transition: var(--transition);
}

.facility-icon-card:hover .facility-icon {
    background: var(--gradient-pink);
    border-color: var(--primary-pink);
}

.facility-icon-card .facility-icon i {
    font-size: 30px;
    color: var(--primary-pink);
    transition: var(--transition);
}

.facility-icon-card:hover .facility-icon i {
    color: var(--white);
}

.facility-icon-card h5 {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--dark-text);
}

/* ========================================
   Academic Excellence Section
   ======================================== */
.academic-section {
    padding: var(--section-padding);
    background: var(--gradient-pink);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.academic-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.academic-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.academic-section .section-title .subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.academic-section .section-title .subtitle::before,
.academic-section .section-title .subtitle::after {
    background: rgba(255, 255, 255, 0.3);
}

.academic-section .section-title h2 {
    color: var(--white);
}

.academic-section .section-title p {
    color: rgba(255, 255, 255, 0.85);
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Gallery Preview Section
   ======================================== */
.gallery-section {
    padding: var(--section-padding);
    background: var(--pale-pink);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(224, 107, 159, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 28px;
    color: var(--white);
}

/* Gallery Page Tabs */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-tab-btn {
    padding: 10px 25px;
    border: 2px solid var(--soft-pink);
    border-radius: 50px;
    background: var(--white);
    color: var(--body-text);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-tab-btn.active,
.gallery-tab-btn:hover {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    color: var(--white);
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--white);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-card);
    margin: 15px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 80px;
    color: var(--light-pink);
    font-family: var(--font-heading);
    position: absolute;
    top: 10px;
    left: 25px;
    line-height: 1;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--body-text);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--light-pink);
}

.testimonial-author .author-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
    font-family: var(--font-body);
}

.testimonial-author .author-info span {
    font-size: 13px;
    color: var(--primary-pink);
}

.testimonials-slider .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.testimonials-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--soft-pink);
    opacity: 1;
}

.testimonials-slider .swiper-pagination-bullet-active {
    background: var(--primary-pink);
    width: 25px;
    border-radius: 5px;
}

/* ========================================
   Page Banner (Inner Pages)
   ======================================== */
.page-banner {
    background: var(--light-pink);
    background-image: url('../images/banners/banner-bg-doodle.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(252, 228, 236, 0.55);
    z-index: 0;
}

.page-banner::after {
    display: none;
}

.page-banner h1 {
    color: var(--primary-pink);
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-banner .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
    color: var(--accent-pink);
    font-size: 14px;
}

.page-banner .breadcrumb-item.active {
    color: var(--dark-text);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: var(--primary-pink);
}

.banner-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.banner-wave svg {
    display: block;
    width: 100%;
    height: 50px;
}

.banner-wave svg path {
    fill: var(--white);
}

/* ========================================
   Content Sections (Inner Pages)
   ======================================== */
.content-section {
    padding: var(--section-padding);
}

.content-section.bg-light {
    background: var(--pale-pink);
}

.content-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
    margin-bottom: 30px;
}

.content-card h3 {
    color: var(--primary-pink);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-pink);
}

.message-card {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.message-card .person-image {
    flex-shrink: 0;
    width: 200px;
}

.message-card .person-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.message-card .person-info h3 {
    border: none;
    padding: 0;
    margin-bottom: 5px;
}

.message-card .person-info .designation {
    color: var(--primary-pink);
    font-weight: 500;
    margin-bottom: 20px;
    display: block;
}

/* Facility Detail Cards */
.facility-detail-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-bottom: 40px;
    scroll-margin-top: 100px;
}

.facility-detail-card .facility-header {
    background: var(--gradient-pink);
    padding: 20px 30px;
    color: var(--white);
}

.facility-detail-card .facility-header h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.4rem;
}

.facility-detail-card .facility-body {
    padding: 30px;
}

.facility-list {
    list-style: none;
    padding: 0;
}

.facility-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid var(--pale-pink);
}

.facility-list li:last-child {
    border: none;
}

.facility-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-pink);
    font-size: 12px;
}

/* Academic Sub Section Cards */
.academic-sub-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--light-pink);
}

.academic-sub-section:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.academic-sub-section h3 {
    color: var(--primary-pink);
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.academic-sub-section h3 .section-icon {
    width: 45px;
    height: 45px;
    background: var(--light-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.academic-sub-section h3 .section-icon i {
    font-size: 18px;
    color: var(--primary-pink);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.info-card {
    background: var(--pale-pink);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.info-card i {
    font-size: 30px;
    color: var(--primary-pink);
    margin-bottom: 12px;
}

.info-card h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.info-card p {
    font-size: 13px;
    color: var(--light-text);
    margin: 0;
}

/* ========================================
   Admissions Section
   ======================================== */
.admission-steps {
    counter-reset: step-counter;
}

.admission-step {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.admission-step .step-number {
    counter-increment: step-counter;
    width: 60px;
    height: 60px;
    background: var(--gradient-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.admission-step .step-content h4 {
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 8px;
}

.admission-step .step-content p {
    color: var(--body-text);
    font-size: 14px;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-form-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.contact-form-card .form-control {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 14px;
    transition: var(--transition);
    background: var(--pale-pink);
}

.contact-form-card .form-control:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(224, 107, 159, 0.1);
    background: var(--white);
}

.contact-form-card .form-label {
    font-weight: 500;
    color: var(--dark-text);
    font-size: 14px;
}

.contact-info-card {
    background: var(--gradient-pink);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    color: var(--white);
    height: 100%;
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 25px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-info-item .info-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item .info-icon i {
    font-size: 16px;
}

.contact-info-item .info-text h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
    font-family: var(--font-body);
    color: var(--white);
}

.contact-info-item .info-text p,
.contact-info-item .info-text a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.contact-info-item .info-text a:hover {
    color: var(--white);
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-top: 30px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

/* ========================================
   News / Achievements Cards
   ======================================== */
.news-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-card .news-img {
    height: 200px;
    overflow: hidden;
}

.news-card .news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.news-card .news-body {
    padding: 25px;
}

.news-card .news-date {
    font-size: 13px;
    color: var(--primary-pink);
    font-weight: 500;
    margin-bottom: 8px;
}

.news-card .news-body h4 {
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 10px;
}

.news-card .news-body p {
    font-size: 14px;
    color: var(--light-text);
}

/* Achievement Badge */
.achievement-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    height: 100%;
    border: 2px solid var(--pale-pink);
}

.achievement-card:hover {
    border-color: var(--primary-pink);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.achievement-card .achievement-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--light-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.achievement-card .achievement-icon i {
    font-size: 28px;
    color: var(--primary-pink);
}

.achievement-card h4 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 10px;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    position: relative;
}

.footer-wave {
    position: relative;
    margin-bottom: -1px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.footer-main {
    background: var(--light-pink);
    background-image: url('../images/footer-bg.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    padding: 60px 0 260px;
    color: var(--white);
    position: relative;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-about-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 18px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-pink);
    color: var(--white);
    margin-right: 8px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-pink);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact .contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact .contact-item i {
    width: 18px;
    text-align: center;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact .contact-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact .contact-item span a {
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact .contact-item span a:hover {
    color: var(--white);
}

.footer-bottom {
    background: var(--primary-pink);
    padding: 15px 0;
}

.copyright, .designed-by {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.designed-by .fa-heart {
    font-size: 11px;
}

/* ========================================
   Scroll to Top
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-pink);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1199px) {
    .navbar-nav .nav-link {
        font-size: 13px;
        padding: 8px 10px !important;
    }
}

@media (max-width: 991px) {
    .top-bar {
        display: none;
    }
    
    .main-navbar {
        padding: 10px 0;
    }
    
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-lg);
        margin-top: 10px;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 15px !important;
        border-bottom: 1px solid var(--pale-pink);
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .nav-link.nav-cta {
        margin-left: 0;
        margin-top: 10px;
        display: inline-flex;
        width: auto;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-slider .swiper-slide {
        height: 60vh;
        min-height: 400px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .message-card {
        flex-direction: column;
        text-align: center;
    }
    
    .message-card .person-image {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-slider .swiper-slide {
        height: 50vh;
        min-height: 350px;
    }
    
    .section-title h2 {
        font-size: 1.7rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .page-banner {
        padding: 60px 0 80px;
    }
    
    .page-banner h1 {
        font-size: 1.8rem;
    }
    
    .content-card {
        padding: 25px;
    }
    
    .stat-card .stat-number {
        font-size: 2.2rem;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 25px;
    }
}

@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .admission-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.bg-pale-pink {
    background-color: var(--pale-pink) !important;
}

.text-pink {
    color: var(--primary-pink) !important;
}

.dashed-border {
    border: 2px dashed var(--soft-pink);
    border-radius: var(--border-radius);
}

/* Lightbox (Gallery) */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
    z-index: 10000;
    background: none;
    border: none;
}
