/* Color Palette */
:root {
    --tawny-gold: #C08552;
    --ivory-cream: #F3E9DC;
    --espresso-brown: #5E3023;
    --peach-beige: #DAB49D;
    --caramel-brown: #895737;
    --light-cream: #FAF6F1;
    --text-dark: #3A2618;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--light-cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--ivory-cream);
    box-shadow: 0 2px 10px rgba(94, 48, 35, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--tawny-gold);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 70px;
    width: auto;
}

.school-name h1 {
    font-size: 1.5rem;
    color: var(--espresso-brown);
    font-weight: 700;
    letter-spacing: 1px;
}

.tagline {
    font-size: 0.85rem;
    color: var(--caramel-brown);
    font-style: italic;
    margin-top: -5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--espresso-brown);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--tawny-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--tawny-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 0;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(243, 233, 220, 0.75) 0%, rgba(218, 180, 157, 0.7) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    padding: 120px 20px 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    color: var(--espresso-brown);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--caramel-brown);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--caramel-brown);
    color: white;
}

.btn-primary:hover {
    background-color: var(--espresso-brown);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(94, 48, 35, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--espresso-brown);
    border: 2px solid var(--caramel-brown);
}

.btn-secondary:hover {
    background-color: var(--caramel-brown);
    color: white;
    transform: translateY(-2px);
}

.btn-call {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    color: white;
    border: none;
}

.btn-call:hover {
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.4);
}

.btn-call-small {
    padding: 10px 20px;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-call-small:hover {
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(46, 125, 50, 0.4);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--espresso-brown);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--tawny-gold), var(--caramel-brown));
    margin: 0 auto;
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, var(--ivory-cream) 0%, white 100%);
    padding: 3rem 0;
    border-bottom: 1px solid var(--peach-beige);
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(94, 48, 35, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(94, 48, 35, 0.15);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.trust-item h4 {
    color: var(--espresso-brown);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.trust-item p {
    color: var(--caramel-brown);
    font-size: 0.9rem;
    margin: 0;
}

/* About Section */
.about {
    background-color: white;
}

.about-content {
    display: grid;
    gap: 4rem;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--caramel-brown);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--ivory-cream);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--peach-beige);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(94, 48, 35, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--espresso-brown);
    margin-bottom: 0.8rem;
}

.feature-card p {
    color: var(--text-dark);
    font-size: 1rem;
}

/* Programs Section */
.programs {
    background: linear-gradient(to bottom, var(--light-cream), var(--ivory-cream));
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.program-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--tawny-gold);
    box-shadow: 0 5px 20px rgba(94, 48, 35, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(94, 48, 35, 0.2);
}

.program-card h3 {
    font-size: 1.6rem;
    color: var(--espresso-brown);
    margin-bottom: 0.5rem;
}

.program-grades {
    color: var(--tawny-gold);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.program-card > p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.program-highlights {
    list-style: none;
    padding-left: 0;
}

.program-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-dark);
}

.program-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--caramel-brown);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Admissions Section */
.admissions {
    background-color: white;
}

.admissions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.admissions-info h3 {
    font-size: 1.8rem;
    color: var(--espresso-brown);
    margin-bottom: 1.5rem;
}

.admissions-info > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.admission-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background-color: var(--tawny-gold);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    color: var(--espresso-brown);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Form Styles */
.admissions-form-container {
    background-color: var(--ivory-cream);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(94, 48, 35, 0.1);
}

.inquiry-form h3 {
    font-size: 1.6rem;
    color: var(--espresso-brown);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--espresso-brown);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--peach-beige);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    background-color: white;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--tawny-gold);
}

.inquiry-form button[type="submit"] {
    width: 100%;
    cursor: pointer;
    border: none;
}

.form-note {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-dark);
    font-size: 0.95rem;
    padding: 1rem;
    background-color: rgba(192, 133, 82, 0.1);
    border-radius: 5px;
    border-left: 3px solid var(--tawny-gold);
}

.inline-phone-link {
    color: var(--caramel-brown);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--tawny-gold);
}

.inline-phone-link:hover {
    color: var(--espresso-brown);
    border-bottom: 2px solid var(--espresso-brown);
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, var(--light-cream), var(--ivory-cream));
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.contact-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(94, 48, 35, 0.1);
    text-align: center;
}

.contact-item h3 {
    font-size: 1.4rem;
    color: var(--espresso-brown);
    margin-bottom: 1rem;
}

.contact-item p {
    color: var(--text-dark);
    line-height: 1.8;
}

.phone-numbers {
    margin-bottom: 0.5rem;
}

.phone-link {
    color: var(--espresso-brown);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: inline-block;
    margin: 0.3rem 0;
}

.phone-link:hover {
    color: var(--tawny-gold);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(58, 38, 24, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content {
    background-color: white;
    padding: 3rem 2.5rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.4s ease;
    border-top: 5px solid var(--tawny-gold);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--espresso-brown);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--tawny-gold);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.5s ease 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.modal-content h2 {
    color: var(--espresso-brown);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-detail {
    color: var(--caramel-brown);
    font-size: 1rem;
    font-style: italic;
}

.modal-reference {
    background-color: var(--ivory-cream);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--tawny-gold);
}

.modal-reference strong {
    color: var(--espresso-brown);
    font-size: 0.95rem;
}

#referenceId {
    color: var(--caramel-brown);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Courier New', monospace;
}

.modal-urgent {
    font-weight: 600;
    color: var(--espresso-brown);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-close-btn {
    cursor: pointer;
    border: 2px solid var(--caramel-brown);
}

/* Footer */
.footer {
    background-color: var(--espresso-brown);
    color: var(--ivory-cream);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-motto {
    font-style: italic;
    color: var(--peach-beige);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--ivory-cream);
    opacity: 0.8;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--tawny-gold);
}

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

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: var(--ivory-cream);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--tawny-gold);
    opacity: 1;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.social-link {
    color: var(--ivory-cream);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.social-link:hover {
    color: var(--tawny-gold);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(243, 233, 220, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--ivory-cream);
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-security {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--peach-beige);
    opacity: 0.9;
}

/* Why Choose SMIS Section - Modern Design */
.why-choose {
    background: linear-gradient(to bottom, #ffffff, var(--light-cream));
    padding: 80px 0;
}

.section-description {
    font-size: 1.1rem;
    color: var(--caramel-brown);
    margin-top: 1rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-intro-card {
    max-width: 1000px;
    margin: 0 auto 4rem;
    background: linear-gradient(135deg, var(--ivory-cream) 0%, white 100%);
    padding: 3rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(94, 48, 35, 0.08);
    display: flex;
    align-items: center;
    gap: 2rem;
    border-left: 6px solid var(--tawny-gold);
}

.intro-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--tawny-gold), var(--caramel-brown));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 20px rgba(192, 133, 82, 0.3);
}

.why-choose-intro-card p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin: 0;
}

.reasons-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.reason-modern-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(94, 48, 35, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(192, 133, 82, 0.1);
}

.reason-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(94, 48, 35, 0.15);
    border-color: var(--tawny-gold);
}

.reason-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--tawny-gold), var(--caramel-brown));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

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

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--peach-beige), var(--ivory-cream));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--espresso-brown);
    box-shadow: 0 4px 12px rgba(192, 133, 82, 0.2);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.reason-modern-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon.holistic {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.card-icon.sacred {
    background: linear-gradient(135deg, #FF9800, #F57C00);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
}

.card-icon.international {
    background: linear-gradient(135deg, #2196F3, #1565C0);
    color: white;
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
}

.card-icon.classroom {
    background: linear-gradient(135deg, #9C27B0, #6A1B9A);
    color: white;
    box-shadow: 0 8px 20px rgba(156, 39, 176, 0.3);
}

.card-icon.character {
    background: linear-gradient(135deg, #E91E63, #C2185B);
    color: white;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.card-icon.faculty {
    background: linear-gradient(135deg, #00BCD4, #0097A7);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.3);
}

.reason-modern-card h3 {
    font-size: 1.5rem;
    color: var(--espresso-brown);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.reason-modern-card p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.card-bottom-line {
    height: 3px;
    width: 60px;
    background: linear-gradient(90deg, var(--tawny-gold), transparent);
    border-radius: 3px;
}

.statistics-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-modern-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(94, 48, 35, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(94, 48, 35, 0.15);
    border-color: var(--tawny-gold);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon.years {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.stat-icon.students {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.stat-icon.ratio {
    background: linear-gradient(135deg, #2196F3, #1565C0);
    color: white;
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}

.stat-icon.values {
    background: linear-gradient(135deg, #E91E63, #C2185B);
    color: white;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}

.stat-content {
    flex: 1;
}

.stat-number-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--espresso-brown);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--tawny-gold), var(--caramel-brown));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label-modern {
    font-size: 0.95rem;
    color: var(--caramel-brown);
    font-weight: 600;
    line-height: 1.3;
}

/* Curriculum Details Section */
.curriculum-details {
    background-color: white;
    padding: 80px 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--caramel-brown);
    margin-top: 0.5rem;
    font-weight: 400;
}

.curriculum-approach {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.curriculum-approach h3 {
    font-size: 1.8rem;
    color: var(--espresso-brown);
    margin-bottom: 1rem;
}

.curriculum-approach p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.subject-category {
    background: var(--ivory-cream);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--tawny-gold);
    transition: transform 0.3s ease;
}

.subject-category:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subject-category h4 {
    font-size: 1.3rem;
    color: var(--espresso-brown);
    margin-bottom: 1rem;
}

.subject-category ul {
    list-style: none;
    padding: 0;
}

.subject-category li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    padding-left: 1.5rem;
    position: relative;
}

.subject-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--tawny-gold);
    font-size: 1.5rem;
    line-height: 1;
}

.teaching-methodology {
    max-width: 1000px;
    margin: 0 auto;
}

.teaching-methodology h3 {
    font-size: 1.8rem;
    color: var(--espresso-brown);
    text-align: center;
    margin-bottom: 2rem;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.method-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(94, 48, 35, 0.08);
}

.method-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.method-item h4 {
    font-size: 1.2rem;
    color: var(--espresso-brown);
    margin-bottom: 0.8rem;
}

.method-item p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Facilities Section */
.facilities {
    background: linear-gradient(to bottom, var(--light-cream), var(--ivory-cream));
    padding: 80px 0;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.facility-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(94, 48, 35, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(94, 48, 35, 0.15);
}

.facility-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.facility-card h3 {
    font-size: 1.3rem;
    color: var(--espresso-brown);
    margin-bottom: 1rem;
}

.facility-card p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Faculty Section */
.faculty {
    background-color: white;
    padding: 80px 0;
}

.faculty-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.faculty-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.faculty-highlight-card {
    background: var(--ivory-cream);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.faculty-highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.faculty-highlight-card h3 {
    font-size: 1.3rem;
    color: var(--espresso-brown);
    margin-bottom: 0.8rem;
}

.faculty-highlight-card p {
    color: var(--text-dark);
    line-height: 1.7;
}

.faculty-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faculty-stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--peach-beige), var(--ivory-cream));
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(94, 48, 35, 0.1);
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--espresso-brown);
    margin-bottom: 0.5rem;
}

.stat-description {
    display: block;
    font-size: 1rem;
    color: var(--caramel-brown);
}

/* Student Life Section */
.student-life {
    background: linear-gradient(to bottom, var(--light-cream), white);
    padding: 80px 0;
}

.daily-schedule {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.daily-schedule h3 {
    font-size: 1.8rem;
    color: var(--espresso-brown);
    margin-bottom: 1rem;
}

.daily-schedule p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.activity-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--peach-beige);
    transition: all 0.3s ease;
}

.activity-card:hover {
    border-color: var(--tawny-gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(94, 48, 35, 0.12);
}

.activity-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.activity-card h4 {
    font-size: 1.1rem;
    color: var(--espresso-brown);
    margin-bottom: 0.5rem;
}

.activity-card p {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Achievements Section */
.achievements {
    background-color: var(--ivory-cream);
    padding: 80px 0;
}

.achievement-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.achievement-category {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(94, 48, 35, 0.1);
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.achievement-category h3 {
    font-size: 1.5rem;
    color: var(--espresso-brown);
    margin-bottom: 1.5rem;
}

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

.achievement-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.achievement-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--tawny-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(to bottom, white, var(--light-cream));
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(94, 48, 35, 0.1);
    border-top: 4px solid var(--tawny-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(94, 48, 35, 0.15);
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--peach-beige);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 2px solid var(--peach-beige);
    padding-top: 1rem;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--espresso-brown);
    margin-bottom: 0.3rem;
}

.author-role {
    font-size: 0.9rem;
    color: var(--caramel-brown);
}

/* Gallery Section */
.gallery {
    background-color: var(--ivory-cream);
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(94, 48, 35, 0.1);
    transition: transform 0.3s ease;
}

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

.gallery-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(94, 48, 35, 0.9), transparent);
    color: white;
    padding: 1.5rem 1rem 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.gallery-placeholder {
    background: white;
    border-radius: 10px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px dashed var(--peach-beige);
    transition: all 0.3s ease;
}

.gallery-placeholder:hover {
    border-color: var(--tawny-gold);
    background: var(--light-cream);
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.gallery-placeholder p {
    color: var(--caramel-brown);
    font-size: 1rem;
    font-weight: 500;
}

.gallery-note {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid var(--tawny-gold);
    max-width: 800px;
    margin: 0 auto;
}

.gallery-note p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .admissions-content {
        grid-template-columns: 1fr;
    }
    
    .reasons-modern-grid,
    .subjects-grid,
    .facilities-grid,
    .faculty-highlights,
    .activities-grid,
    .achievement-categories,
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .statistics-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-intro-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-container {
        padding: 80px 20px 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .programs-grid,
    .about-features,
    .reasons-modern-grid,
    .subjects-grid,
    .facilities-grid,
    .faculty-highlights,
    .activities-grid,
    .achievement-categories,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .statistics-modern,
    .faculty-stats,
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number-modern,
    .stat-value {
        font-size: 2rem;
    }
    
    .why-choose-intro-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .intro-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 50px;
    }
    
    .school-name h1 {
        font-size: 1.2rem;
    }
    
    .hero {
        min-height: 550px;
    }
    
    .hero-container {
        padding: 60px 20px 50px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
    }
    
    .modal-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .modal-content h2 {
        font-size: 1.4rem;
    }
    
    .modal-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .modal-buttons .btn {
        width: 100%;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .reason-modern-card,
    .facility-card,
    .faculty-highlight-card,
    .activity-card,
    .achievement-category,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .stat-number-modern,
    .stat-value {
        font-size: 1.8rem;
    }
    
    .testimonial-quote {
        font-size: 3rem;
    }
    
    .gallery-image {
        height: 220px;
    }
    
    .card-badge {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-modern-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .intro-icon {
        width: 60px;
        height: 60px;
    }
    
    .intro-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .why-choose-intro-card {
        padding: 1.5rem;
    }
    
    .why-choose-intro-card p {
        font-size: 1rem;
    }
    
    .reason-modern-card h3 {
        font-size: 1.3rem;
    }
    
    .curriculum-approach p,
    .faculty-intro,
    .daily-schedule p {
        font-size: 1rem;
    }
}

