/* Previous CSS code - exact same */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Gradient Color Variables */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #fb9393 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --warm-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --cool-gradient: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    --footer-gradient: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
}



/* Navbar Styles */
.navbar {
    background: var(--footer-gradient);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    color: white !important;
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    margin-right: 10px;
    border: 3px solid white;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 15px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: white !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: white;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.admission-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.admission-btn:hover {
    transform: scale(1.05);
}

.contact-number {
    color: white;
    margin-right: 20px;
    font-weight: 500;
}

.contact-number i {
    margin-right: 8px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
}

.hero-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1.4s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
}

.hero-image-container {
    position: relative;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    /* animation: float 3s ease-in-out infinite; */
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.about-image {
    border-radius: 20px;
    width: 100%;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.05);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--footer-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Principal Desk */
.principal-section {
    padding: 80px 0;
    background: white;
}

.principal-card {
    background: var(--warm-gradient);
    border-radius: 20px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.principal-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 100px;
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.2;
}

.principal-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid white;
    object-fit: cover;
    margin-bottom: 20px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.service-card {
    background: var(--footer-gradient);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: none;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--secondary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card:hover .service-icon {
    transform: rotate(360deg);
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-card p {
    color: #ffffff;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose-section {
    padding: 80px 0;
    background: white;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--secondary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.feature-content p {
    color: #666;
    margin: 0;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d425500 0%, #3495d60a 100%);
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
    font-size: 3rem;
    color: white;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: var(--primary-gradient);
    text-align: center;
    color: white;
}

.contact-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-btn {
    background: white;
    color: #667eea;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.cta-btn:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer ul li a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.5);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .navbar-brand img {
        height: 40px;
        width: 40px;
    }

    .contact-number {
        display: none;
    }
}


/* Principal Section - Two Column */
.principal-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
}

.principal-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.principal-column {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.principal-left {
    flex: 1;
}

.principal-right {
    flex: 1;
    max-width: 400px;
}

.principal-card {
    background: var(--footer-gradient);
    border-radius: 20px;
    padding: 30px 25px;
    color: #2c3e50;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.principal-card::before {
    content: '\f5fc';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 60px;
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.15;
    color: rgba(255, 255, 255, 0.4);
}

.principal-image {
    width: 100px;
    height: 100px;
    border-radius: 55px;
    border: 4px solid rgba(255, 255, 255, 0.9);
    object-fit: cover;
    margin: 0 auto 15px;
}

.principal-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.principal-card .principal-title {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 15px;
}

.principal-message {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #2c3e50;
    font-style: italic;
}

/* Birthday Section */
.birthday-section {
    background: var(--footer-gradient);
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.birthday-section::before {
    content: '\f1d7';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 80px;
    position: absolute;
    top: -10px;
    right: -10px;
    opacity: 0.1;
    color: #fff;
}

.birthday-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d68910;
    margin-bottom: 20px;
    text-align: center;
}

.happy-birthday-card {
    background: linear-gradient(135deg, #FF9A9E 0%, #FECFEF 50%, #FEF5B6 100%);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    animation: birthdayPulse 2s infinite;
}

.happy-birthday-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

@keyframes birthdayPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.birthday-card-icon {
    font-size: 2.5rem;
    color: #FF6B6B;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.happy-birthday-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
}

.birthday-slider {
    max-height: 300px;
}

.birthday-item {
    background: white;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: none;
}

.birthday-item:hover {
    transform: translateY(-3px);
}

.birthday-img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 12px;
    border: 2px solid #FFE7A0;
}

.birthday-info h6 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 3px;
}

.birthday-info p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.carousel-control-prev-birthday,
.carousel-control-next-birthday {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev-birthday:hover,
.carousel-control-next-birthday:hover {
    background: white;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .principal-column {
        flex-direction: column;
        gap: 20px;
    }

    .principal-right {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .principal-section {
        padding: 40px 0;
    }

    .birthday-item {
        padding: 12px;
    }

    .birthday-img {
        width: 40px;
        height: 40px;
    }
}

/* Counter Section Styles */
.counter-section {
    background: var(--footer-gradient);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

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

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.counter-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.counter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-gradient), var(--success-gradient));
}

.counter-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.counter-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.counter-card:hover .counter-icon {
    transform: scale(1.1) rotate(10deg);
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Segoe UI', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.counter-title {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Counter Animation */
.counter-animated {
    opacity: 0;
    transform: translateY(30px);
}

.counter-animation-running {
    opacity: 1;
    transform: translateY(0);
}

/* Floating particles effect */
.counter-card::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent);
    pointer-events: none;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(-20px) rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .counter-card {
        padding: 30px 15px;
    }

    .counter-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .counter-grid {
        grid-template-columns: 1fr;
    }
}


/* Our Philosophy - Modern Animated Design */
.philosophy-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e1e8ff 100%);
    position: relative;
    overflow: hidden;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #5D9FFF, transparent);
    z-index: 10;
}

.philosophy-container {
    position: relative;
    z-index: 2;
}

.philosophy-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #FF9AC4, #FFB88A, #66D2FF);
    filter: blur(100px);
    animation: float 6s ease-in-out infinite;
}

.philosophy-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.philosophy-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(120deg);
    }

    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

.mission-vision-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 60px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.mission-vision-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FF9AC4 0%, #FFB88A 50%, #66D2FF 100%);
    border-radius: 30px 30px 0 0;
}

.mission-vision-row {
    position: relative;
}

.mission-card, .vision-card {
    padding: 50px 40px;
    border-radius: 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mission-card {
    background: linear-gradient(135deg, #FF9AC4 0%, #FFB88A 100%);
    color: #2c3e50;
    margin-bottom: 30px;
}

.vision-card {
    background: linear-gradient(135deg, #66D2FF 0%, #9AF7FF 100%);
    color: #2c3e50;
    margin-bottom: 30px;
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.mission-card:hover::before, .vision-card:hover::before {
    opacity: 1;
    animation: shine 1.5s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.philosophy-icon {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.mission-card:hover .philosophy-icon {
    transform: scale(1.1) rotate(360deg);
}

.vision-card:hover .philosophy-icon {
    transform: scale(1.1) rotate(-360deg);
}

.philosophy-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    line-height: 1.2;
}

.philosophy-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

.philosophy-content {
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.95;
}

.content-reveal {
    overflow: hidden;
}

.content-reveal-inner {
    display: inline-block;
    transition: transform 0.6s ease;
}

.card-hover {
    transform: translateY(-15px) !important;
}

.vertical-line {
    width: 3px;
    background: linear-gradient(to bottom, #FF9AC4, #66D2FF);
    height: 100px;
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    z-index: 3;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mission-vision-wrapper {
        padding: 40px 25px;
        margin: 0 15px;
    }

    .mission-card, .vision-card {
        padding: 40px 25px;
        margin-bottom: 25px !important;
    }

    .philosophy-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .philosophy-title {
        font-size: 1.8rem;
    }
}


/* Admission Modal Enhancements */
#admissionModal .modal-content {
    border-radius: 25px !important;
}

#admissionModal .form-control:focus,
#admissionModal .form-select:focus {
    border-color: #5D9FFF;
    box-shadow: 0 0 0 0.2rem rgba(93, 159, 255, 0.25);
}

.hero-btn {
    background: linear-gradient(135deg, #5D9FFF 0%, #7B6CFF 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(93, 159, 255, 0.4);
    color: white;
}

.admission-btn {
    background: linear-gradient(135deg, #FF9AC4 0%, #FFB88A 100%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.admission-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 154, 196, 0.4);
    color: white;
}
