/* Global Styles */
:root {
    --primary: #f89a1c;
    /* Orange */
    --secondary: #145990;
    /* Dark Teal */
    --text-dark: #222222;
    --text-light: #666666;
    --white: #ffffff;
    --border-color: #eaeaea;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #f4f7f6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-apply {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 30px;
    padding: 12px 28px;
}

.btn-apply i {
    margin-right: 8px;
}

.btn-apply:hover {
    background-color: #e08b18;
}

.btn-large {
    padding: 16px 36px;
    border-radius: 30px;
    font-size: 15px;
}

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

.btn-primary:hover {
    background-color: #e08b18;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--border-color);
}

.btn i {
    margin-left: 8px;
    font-size: 12px;
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary);
    color: var(--white);
    font-size: 13px;
    height: 46px;
}

.top-bar-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.top-bar-left {
    background-color: var(--primary);
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 30px 0 15px;
    position: relative;
}

.top-bar-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    border-bottom: 46px solid var(--primary);
    border-right: 20px solid transparent;
}

.follow-text {
    font-weight: 600;
    margin-right: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    margin-right: 8px;
    transition: 0.3s;
    color: var(--white);
}

.social-icons a:hover {
    background-color: var(--white);
    color: var(--primary);
}

.top-bar-right {
    display: flex;
    padding-right: 15px;
}

.contact-info {
    display: flex;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item i {
    color: var(--primary);
}

/* Main Header */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding: 0 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -1px;
    flex-shrink: 0;
}

.logo-icon {
    width: auto;
    max-height: 75px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.main-nav a:hover {
    color: var(--primary);
}

.main-nav i {
    font-size: 10px;
    color: var(--text-light);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.search-icon {
    color: var(--text-dark);
    font-size: 18px;
    transition: 0.3s;
}

.search-icon:hover {
    color: var(--primary);
}

/* Slider Section */
.slider-section {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: background-image 0.5s ease-in-out;
    z-index: 1;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(20, 89, 144, 0.9) 0%, rgba(20, 89, 144, 0.7) 40%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.slider-content-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
    position: relative;
    z-index: 3;
}

.slider-content {
    max-width: 650px;
    color: var(--white);
}

.slider-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--primary);
}

.slider-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.slider-title .highlight {
    color: var(--primary);
}

.slider-desc {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.slider-buttons {
    display: flex;
    gap: 20px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 3;
    pointer-events: none;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    pointer-events: auto;
    backdrop-filter: blur(5px);
}

.control-btn:hover {
    background-color: var(--primary);
}

/* Features Section */
.features-section {
    position: relative;
    z-index: 10;
    margin-top: -80px;
    padding: 0 15px;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    border-radius: 50px 50px 10px 10px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

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

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: 0.3s;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary);
}

.feature-number {
    font-size: 48px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px var(--secondary);
    line-height: 1;
    opacity: 0.5;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .slider-title {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .slider-title {
        font-size: 40px;
    }

    .slider-section {
        height: 500px;
    }
}

/* Common Layout Styles */
.section-heading {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
    position: relative;
}
.section-desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
}
.section-header-center {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Section 2: About */
.section-about {
    padding: 100px 15px;
    background-color: #f8f9fa;
}
.about-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.about-highlights {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.about-highlights li {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-highlights i {
    color: var(--primary);
    font-size: 20px;
}

/* Section 3: Academic Journey */
.section-academic-journey {
    padding: 100px 15px;
    background-color: var(--white); /* Light Blue Tint */
}
.academic-container {
    max-width: 1280px;
    margin: 0 auto;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.journey-card {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}
.journey-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(248, 154, 28, 0.15); /* Orange hover accent */
}
.journey-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(20, 89, 144, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px;
    transition: 0.3s;
}
.journey-card:hover .journey-icon {
    background-color: var(--primary);
    color: var(--white);
}
.journey-card h3 {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 15px;
}
.journey-card p {
    color: var(--text-light);
}

/* Section 4: Why Choose */
.section-why-choose {
    padding: 100px 15px;
    background-color: #f8f9fa;
}
.why-choose-container {
    max-width: 1280px;
    margin: 0 auto;
}
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Section 5: Educational Approach */
.section-educational-approach {
    padding: 100px 15px;
    background-color: #f8f9fa; /* Light Grey */
}
.approach-container {
    max-width: 1280px;
    margin: 0 auto;
}
.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.approach-card {
    background-color: var(--white);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 4px solid transparent;
    transition: 0.3s;
}
.approach-card:hover {
    border-bottom: 4px solid var(--primary);
    transform: translateY(-5px);
}
.approach-icon {
    font-size: 50px;
    color: var(--secondary);
    margin-bottom: 25px;
}
.approach-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}
.approach-card p {
    color: var(--text-light);
}

/* Section 6: School Highlights */
.section-highlights {
    padding: 80px 15px;
    background-color: var(--secondary);
    color: var(--white);
}
.highlights-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.highlight-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}
.highlight-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
}
.highlight-desc {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section 7: Facilities */
.section-facilities {
    padding: 100px 15px;
    background-color: var(--white);
}
.facilities-container {
    max-width: 1280px;
    margin: 0 auto;
}
.facility-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}
.facility-row.reverse {
    flex-direction: row-reverse;
}
.facility-row:last-child {
    margin-bottom: 0;
}
.facility-image {
    flex: 1;
}
.facility-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.facility-content {
    flex: 1;
}
.facility-content h3 {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 20px;
}
.facility-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Section 8: Student Life */
.section-student-life {
    padding: 100px 15px;
    background-color: var(--white);
}
.student-life-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.sl-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.sl-list {
    margin: 30px 0 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.sl-list li {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}
.sl-list i {
    color: var(--primary);
    background: rgba(248, 154, 28, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Section 9: Gallery */
.section-gallery {
    padding: 100px 15px;
    background-color: #f8f9fa;
}
.gallery-container {
    max-width: 1280px;
    margin: 0 auto;
}
.masonry-gallery {
    column-count: 3;
    column-gap: 20px;
}
.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}
.masonry-item:hover img {
    transform: scale(1.05);
}
.masonry-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(20, 89, 144, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
}
.masonry-item:hover::after {
    opacity: 1;
}

/* Section 10: Admission Process */
.section-admission-process {
    padding: 100px 15px;
    background-color: var(--white); /* Light Orange Tint */
}
.process-container {
    max-width: 1000px;
    margin: 0 auto;
}
.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--secondary);
    z-index: 1;
}
.timeline-item {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 200px;
}
.timeline-circle {
    width: 64px;
    height: 64px;
    background-color: var(--primary);
    color: var(--white);
    border: 4px solid #fffaf0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(248, 154, 28, 0.3);
}
.timeline-item h3 {
    font-size: 18px;
    color: var(--secondary);
}

/* Section 11: Parent Testimonials */
.section-testimonials {
    padding: 100px 15px;
    background-color: #f8f9fa;
}
.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
}
.testimonials-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
}
.testimonials-carousel::-webkit-scrollbar {
    height: 8px;
}
.testimonials-carousel::-webkit-scrollbar-track {
    background: #e1eaf0;
    border-radius: 4px;
}
.testimonials-carousel::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 4px;
}
.testimonial-card {
    min-width: 380px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    scroll-snap-align: start;
}
.testi-stars {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 18px;
}
.testi-text {
    font-size: 16px;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testi-name {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
}

/* Section 12: Admission CTA */
.section-cta {
    padding: 100px 15px;
    background: linear-gradient(135deg, var(--secondary) 0%, #1e81b0 100%);
    color: var(--white);
    text-align: center;
}
.cta-container {
    max-width: 800px;
    margin: 0 auto;
}
.cta-container h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}
.cta-container p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.cta-btn1 {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}
.cta-btn1:hover {
    background-color: transparent;
    color: var(--primary);
}
.cta-btn2 {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.cta-btn2:hover {
    background-color: var(--white);
    color: var(--secondary);
}

/* Section 13: Contact Us */
.section-contact {
    padding: 100px 15px;
    background-color: var(--white);
}
.contact-section-container {
    max-width: 1280px;
    margin: 0 auto;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    background-color: #f9f9f9;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
}
.ci-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.ci-item i {
    font-size: 24px;
    color: var(--primary);
    margin-top: 5px;
}
.ci-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--secondary);
}
.ci-item p {
    color: var(--text-light);
}
.map-embed {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

/* Footer */
.site-footer {
    background-color: #0b3456; /* Darker Blue */
    color: var(--white);
    padding-top: 80px;
}
.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}
.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}
.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 15px;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: 0.3s;
}
.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}
.footer-bottom {
    background-color: #07233c;
    padding: 20px 0;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .about-container, .student-life-container, .contact-grid {
        grid-template-columns: 1fr;
    }
    .cards-grid, .why-choose-grid, .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .highlights-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .masonry-gallery {
        column-count: 2;
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .cards-grid, .why-choose-grid, .approach-grid, .highlights-container {
        grid-template-columns: 1fr;
    }
    .facility-row, .facility-row.reverse {
        flex-direction: column;
        text-align: center;
    }
    .masonry-gallery {
        column-count: 1;
    }
    .timeline {
        flex-direction: column;
        gap: 40px;
    }
    .timeline::before {
        left: 32px;
        top: 0;
        width: 4px;
        height: 100%;
    }
    .timeline-item {
        display: flex;
        align-items: center;
        width: 100%;
        text-align: left;
        gap: 20px;
    }
    .timeline-circle {
        margin: 0;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .cta-buttons {
        flex-direction: column;
    }
}


/* Interactive Card styles for Section 4 */
.interactive-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 4px solid transparent;
}
.interactive-card:hover {
    transform: translateY(-10px);
    border-top: 4px solid var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.card-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(248, 154, 28, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}
.interactive-card:hover .card-icon-wrapper {
    background-color: var(--primary);
    color: var(--white);
    transform: rotate(360deg);
}
.card-icon-wrapper i {
    font-size: 32px;
    color: var(--primary);
    transition: all 0.3s ease;
}
.interactive-card:hover .card-icon-wrapper i {
    color: var(--white);
}
.interactive-card h3 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 15px;
}
.interactive-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}


/* Facilities Tabs */
.facilities-tabs {
    margin-top: 40px;
}
.tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}
.tab-btn {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tab-btn i {
    color: var(--secondary);
    transition: all 0.3s ease;
}
.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.tab-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.tab-btn.active i {
    color: var(--white);
}

.tab-content-container {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    padding: 40px;
}
.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}
.tab-pane.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.facility-points {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.facility-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 500;
}
.facility-points i {
    color: var(--primary);
    font-size: 18px;
}

@media (max-width: 768px) {
    .tab-buttons {
        gap: 10px;
    }
    .tab-btn {
        padding: 10px 15px;
        font-size: 14px;
        flex: 1 1 calc(50% - 10px);
        justify-content: center;
    }
    .tab-content-container {
        padding: 20px;
    }
    .facility-points {
        grid-template-columns: 1fr;
    }
}


/* Engaging Academic Journey */
.section-academic-journey {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
    z-index: 1;
}

.journey-path {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

/* Connecting line */
.journey-path::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(to right, rgba(248, 154, 28, 0.2), var(--primary), rgba(248, 154, 28, 0.2));
    z-index: -1;
    transform: translateY(-50%);
    border-radius: 2px;
}

@media (max-width: 992px) {
    .journey-path::before {
        display: none;
    }
}

.journey-step {
    position: relative;
    text-align: center;
}

.journey-step.staggered {
    transform: translateY(40px);
}

.step-number {
    font-size: 80px;
    font-weight: 800;
    color: rgba(20, 89, 144, 0.05);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    transition: all 0.4s ease;
}

.journey-step:hover .step-number {
    color: rgba(248, 154, 28, 0.15);
    top: -50px;
}

.step-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.journey-step:hover .step-card {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

.journey-icon-wrap {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #1a75ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(20, 89, 144, 0.3);
    transition: all 0.4s ease;
}

.journey-step:hover .journey-icon-wrap {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, var(--secondary), #ffb24d);
    box-shadow: 0 10px 20px rgba(248, 154, 28, 0.3);
}

.step-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.step-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.step-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.step-link i {
    transition: transform 0.3s ease;
}

.step-link:hover {
    color: var(--secondary);
}

.step-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .journey-step.staggered {
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .journey-path {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* Custom About Section (Image Redesign) */
.custom-about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.about-image-group {
    position: relative;
    width: 100%;
    min-height: 550px;
}

.about-image-group .img-1 {
    position: absolute;
    top: 0;
    left: 10%;
    width: 45%;
    height: 65%;
    border-radius: 150px 150px 0 0;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-image-group .img-1 img { width: 100%; height: 100%; object-fit: cover; }

.about-image-group .img-2 {
    position: absolute;
    top: 10%;
    right: 0;
    width: 45%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    border: 2px dashed var(--primary);
    padding: 6px;
    background-color: transparent;
}
.about-image-group .img-2 img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.about-image-group .img-3 {
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 45%;
    height: 40%;
    border-radius: 80px 80px 80px 80px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.about-image-group .img-3 img { width: 100%; height: 100%; object-fit: cover; }

.experience-box {
    position: absolute;
    bottom: 10%;
    left: 0;
    background-color: var(--primary);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 20px 20px 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(248, 154, 28, 0.3);
    z-index: 5;
}
.exp-icon i { font-size: 35px; }
.exp-text { font-size: 13px; line-height: 1.4; }
.exp-text strong { font-size: 16px; }

/* Right side content */
.about-features-container {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
    align-items: center;
}

.about-features-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.a-feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.a-feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 2px var(--primary), inset 0 0 0 4px var(--white);
}

.a-feature-text h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 700;
}
.a-feature-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.about-quote-box {
    flex: 0.8;
    background-color: #eef5f4;
    padding: 25px;
    border-radius: 15px;
    position: relative;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 500;
}

.quote-mark {
    position: absolute;
    bottom: -5px;
    right: 20px;
    font-size: 50px;
    font-weight: 900;
    color: #145990; /* Using secondary color to match branding */
    line-height: 1;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.about-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ac-icon {
    width: 45px;
    height: 45px;
    background-color: #145990; /* Secondary */
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.ac-info {
    display: flex;
    flex-direction: column;
}

.ac-title {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}

.ac-number {
    font-size: 16px;
    color: #145990;
    font-weight: 800;
}

@media (max-width: 992px) {
    .custom-about-container {
        grid-template-columns: 1fr;
    }
    .about-features-container {
        flex-direction: column;
        align-items: stretch;
    }
}
@media (max-width: 768px) {
    .about-image-group {
        min-height: 400px;
        margin-bottom: 40px;
    }
    .about-image-group .img-1 { left: 0; width: 50%; height: 55%; }
    .about-image-group .img-2 { right: 0; width: 50%; top: 5%; }
    .about-image-group .img-3 { right: 5%; width: 50%; bottom: 0; height: 40%; }
    .experience-box { bottom: 5%; left: 0; padding: 15px 20px; }
    .about-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Statistics Parallax Section */
.section-statistics {
    position: relative;
    padding: 100px 15px;
    background-image: url('images/student_life.png'); /* Fallback / parallax image */
    background-size: cover;
    background-attachment: fixed; /* Parallax effect */
    background-position: center;
    color: var(--white);
    margin: 0;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 89, 144, 0.85); /* Deep School Blue overlay */
    z-index: 1;
}

.stats-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Creating the custom blob shape with CSS border-radius */
.stat-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
    z-index: 1;
    transition: all 0.5s ease;
}

/* White curved line behind the blob */
.stat-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--white);
    border-radius: 50% 60% 40% 60% / 60% 50% 60% 40%;
    z-index: 0;
    transition: all 0.5s ease;
}

.stat-icon-wrapper i {
    position: relative;
    z-index: 2;
    font-size: 35px;
    color: var(--white);
}

.stat-item:hover .stat-icon-bg {
    border-radius: 60% 40% 40% 60% / 40% 60% 50% 60%;
    transform: rotate(10deg);
}
.stat-item:hover .stat-icon-wrapper::before {
    transform: rotate(-10deg);
}

.stat-number {
    font-size: 55px;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
}

@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }
    .section-statistics {
        background-attachment: scroll; /* Disable parallax on mobile/tablet for performance/support */
    }
}

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


/* Courses Section */
.section-courses {
    padding: 100px 15px;
    background-color: var(--white);
}

.courses-container {
    max-width: 1280px;
    margin: 0 auto;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.course-img {
    position: relative;
    padding: 15px;
    background: var(--white);
}

.course-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 15px;
}

.course-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: var(--primary);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 5px 15px rgba(248, 154, 28, 0.3);
}

.course-content {
    padding: 20px 30px 10px;
    flex-grow: 1;
}

.course-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.course-lessons {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.course-lessons i {
    color: var(--primary);
}

.course-rating i {
    color: var(--primary);
    font-size: 13px;
    margin-left: 2px;
}

.course-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.course-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-top: 1px solid var(--border-color);
}

.course-footer-info {
    display: flex;
    gap: 15px;
}

.course-footer-info span {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-footer-info span i {
    color: var(--primary);
}

.course-price {
    background-color: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 14px;
}

@media (max-width: 992px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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


/* Courses Section */
.section-courses {
    padding: 100px 15px;
    background-color: #f8f9fa; /* Light grey background to make white cards pop */
}

.courses-container {
    max-width: 1280px;
    margin: 0 auto;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.course-card {
    background-color: var(--white);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.course-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 240px;
}

.course-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

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

.course-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.course-content {
    padding: 25px 5px 20px 5px;
    flex-grow: 1;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.lessons {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}
.lessons i {
    color: var(--primary);
}

.course-rating i {
    color: var(--primary);
    font-size: 13px;
}

.course-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.course-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.course-footer {
    padding: 20px 5px 5px 5px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cf-info {
    display: flex;
    gap: 15px;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
}

.cf-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cf-info i {
    color: var(--primary);
}

.course-price {
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

@media (max-width: 992px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
}


/* New Why Choose Us Section */
.section-why-choose-new {
    background-color: var(--secondary); /* Dark Blue Fallback */
    background-image: linear-gradient(rgba(20, 89, 144, 0.95), rgba(20, 89, 144, 0.95)), url('images/about_building.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.wcu-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wcu-content {
    /* To ensure elements align properly */
}

.wcu-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.wcu-feature-card {
    background-color: var(--white);
    border-radius: 40px; /* Pill-like shape */
    padding: 15px 20px 15px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.wcu-feature-card:hover {
    transform: translateY(-5px);
}

.wcu-f-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    /* Border radii are set inline per card to match the image's alternating styles */
}

.wcu-f-text {
    flex-grow: 1;
}

.wcu-f-text h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.2;
}

.wcu-f-text p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}

/* Right Side Image */
.wcu-image-side {
    position: relative;
    padding-left: 20px;
    padding-bottom: 20px;
}

/* The orange frame line */
.wcu-image-side::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    height: 90%;
    border: 3px solid var(--primary);
    border-radius: 200px 40px 150px 40px;
    z-index: 0;
}

.wcu-image-frame {
    position: relative;
    z-index: 1;
    border-radius: 200px 40px 150px 40px; /* Top-Left rounded, Bottom-Right rounded */
    overflow: hidden;
    height: 600px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 5px solid var(--white); /* Crisp inner border to match design */
}

.wcu-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.wcu-image-frame:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .wcu-container {
        grid-template-columns: 1fr;
    }
    .wcu-image-frame {
        height: 400px;
    }
}
@media (max-width: 576px) {
    .wcu-features {
        grid-template-columns: 1fr;
    }
}


/* New Gallery Section */
.section-gallery-new {
    padding: 100px 15px;
    background-color: var(--white);
}

.gallery-new-container {
    max-width: 1280px;
    margin: 0 auto;
}

.gallery-new-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.g-col {
    display: flex;
    flex-direction: column;
}

.g-col img {
    width: 100%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.g-col img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

@media (max-width: 992px) {
    .gallery-new-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .g-col:nth-child(3) {
        grid-column: 1 / -1;
        flex-direction: row;
        gap: 30px;
    }
    .g-col:nth-child(3) img {
        width: calc(50% - 15px);
        margin-bottom: 0 !important;
    }
}
@media (max-width: 576px) {
    .gallery-new-grid {
        grid-template-columns: 1fr;
    }
    .g-col:nth-child(3) {
        flex-direction: column;
    }
    .g-col:nth-child(3) img {
        width: 100%;
        margin-bottom: 25px !important;
    }
    .g-col img {
        margin-bottom: 25px !important;
    }
}


/* Promo Offer Section */
.section-promo {
    background-image: url('images/gallery_1.png'); /* Fallback/background image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Optional: adds a nice parallax feel */
    padding: 120px 15px;
    position: relative;
    /* Adding a slight dark overlay to the photo so the orange pops more */
}

.section-promo::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.1);
}

.promo-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end; /* Push the box to the right */
}

/* The orange block with the transparent gap border */
.promo-content-box {
    background-color: var(--primary);
    padding: 60px 50px;
    border-radius: 40px;
    position: relative;
    max-width: 550px;
    color: var(--white);
    margin-right: 15px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

/* Creating the outer offset orange border with a transparent gap */
.promo-content-box::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 3px solid var(--primary);
    border-radius: 52px;
    pointer-events: none;
}

.promo-content-box h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.25;
    color: var(--white);
}

.promo-content-box p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
}

.btn-white-pill {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 18px 35px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-white-pill:hover {
    background-color: var(--text-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

@media (max-width: 992px) {
    .promo-container {
        justify-content: center;
    }
    .promo-content-box {
        margin-right: 0;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .promo-content-box h2 {
        font-size: 32px;
    }
}
@media (max-width: 576px) {
    .promo-content-box {
        padding: 40px 30px;
    }
    .promo-content-box h2 {
        font-size: 28px;
    }
}


/* Enrollment & Skills Section */
.section-enrollment {
    background-color: var(--white);
    padding: 100px 15px;
}

.enrollment-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Form Side */
.enroll-form-box {
    background-color: var(--white);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.enroll-form-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 30px 40px;
    text-align: left;
}

.enroll-form-header h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
}

.enroll-form-header p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.enroll-form-body {
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: none;
    background-color: #f4f6f8;
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-dark);
    font-family: inherit;
    outline: none;
    transition: background-color 0.3s;
}

.form-control:focus {
    background-color: #e9ecef;
}

textarea.form-control {
    resize: vertical;
}

/* Skills Side */
.enroll-skills-side {
    padding-right: 20px;
}

.skills-wrapper {
    margin-top: 30px;
}

.skill-item {
    margin-bottom: 25px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 700;
}

.progress-bar-bg {
    background-color: #e9ecef; /* Light gray background */
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    background-color: var(--primary);
    height: 100%;
    border-radius: 4px;
    /* Adding a white tip or separator if needed, but solid orange is close to design */
    box-shadow: 2px 0 0 var(--white); /* To give that little white tick at the end of the orange bar shown in design */
}

@media (max-width: 992px) {
    .enrollment-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
@media (max-width: 576px) {
    .enroll-form-body {
        padding: 30px 20px;
    }
    .enroll-form-header {
        padding: 25px 20px;
    }
}


/* Testimonials New Section */
.section-testimonials-new {
    position: relative;
    padding: 100px 15px;
    background-image: url('images/student_life.png'); /* Background image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.testi-new-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(20, 89, 144, 0.85); /* Deep Blue tint overlay */
    z-index: 1;
}

.testi-new-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testi-carousel-wrapper {
    margin-top: 60px;
}

.testi-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0 40px; /* Space for shadow and top badge */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none;  /* Hide scrollbar for IE/Edge */
}

.testi-carousel::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.testi-card {
    background-color: var(--white);
    border-radius: 30px; /* Uniformly rounded */
    border-bottom: 8px solid var(--primary); /* Thick orange bottom border */
    padding: 40px 30px;
    position: relative;
    min-width: 300px;
    flex: 0 0 calc(25% - 22.5px); /* 4 items visible on desktop */
    scroll-snap-align: start;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

.testi-quote-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background-color: var(--primary);
    color: var(--white);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px 12px 0 12px; /* Bubble-like shape: top-left, top-right, bottom-right=0? Wait, top-left, top-right, bottom-left rounded, bottom-right square. */
    font-weight: 900;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(246, 146, 30, 0.4);
}

.testi-stars {
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}

.testi-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1; /* Pushes author info to bottom */
}

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

.testi-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 4px;
    border: 2px dashed var(--primary); /* Dashed orange border */
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.testi-info h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.testi-info span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.testi-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testi-dot.active {
    width: 35px;
    background-color: var(--primary);
    border-radius: 10px;
}

@media (max-width: 1200px) {
    .testi-card { flex: 0 0 calc(33.333% - 20px); }
}
@media (max-width: 992px) {
    .testi-card { flex: 0 0 calc(50% - 15px); }
}
@media (max-width: 576px) {
    .testi-card { flex: 0 0 100%; }
}


/* Eye-Catching CTA Section */
.section-cta-new {
    position: relative;
    background-color: var(--secondary); /* Dark Blue */
    /* Dot pattern overlay */
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 2px, transparent 2px);
    background-size: 30px 30px;
    padding: 100px 15px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

/* Decorative Shapes */
.cta-shape {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

/* Right Side - Big White & Orange Circles */
.cta-shape-1 {
    width: 300px;
    height: 300px;
    background-color: var(--white);
    opacity: 0.05;
    right: -100px;
    top: -50px;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    border: 30px solid var(--primary);
    opacity: 0.8;
    right: -80px;
    bottom: -80px;
}

/* Left Side - Large Dashed Circle */
.cta-shape-3 {
    width: 400px;
    height: 400px;
    border: 2px dashed rgba(255, 255, 255, 0.15);
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
}

.cta-container-new {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-container-new h2 {
    font-size: 46px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-container-new p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons-new {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--secondary);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .cta-container-new h2 {
        font-size: 32px;
    }
    .cta-container-new p {
        font-size: 16px;
    }
    .cta-buttons-new {
        flex-direction: column;
        gap: 15px;
    }
    .cta-buttons-new a {
        width: 100%;
        text-align: center;
    }
}


/* Orange Split Layout CTA */
.cta-orange-layout {
    background-color: var(--primary) !important;
    padding: 80px 15px !important;
    text-align: left !important;
}

.cta-container-split {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-image-side img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    object-fit: cover;
    max-height: 400px;
}

.cta-content-side h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content-side p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .cta-container-split {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .cta-content-side h2 {
        font-size: 36px;
    }
    .cta-buttons-new {
        justify-content: center !important;
    }
}


/* New Footer Layout */
.site-footer-new {
    background-color: var(--secondary); /* Dark Blue #145990 or similar */
    color: var(--white);
    padding: 100px 15px 0;
    position: relative;
    overflow: hidden;
}

/* Faint Watermark */
.footer-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 500px;
    color: rgba(255, 255, 255, 0.02);
    z-index: 0;
    pointer-events: none;
}

.footer-container-new {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
    gap: 40px;
    position: relative;
    z-index: 1;
    padding-bottom: 80px;
}

/* Column 1: About */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.footer-logo .logo-icon {
    font-size: 32px;
    color: var(--primary);
}

.footer-logo .logo-text {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
}

.footer-logo .logo-text::after {
    content: 'ka'; /* To style "edu" and "ka" differently if needed, but we'll stick to full text */
    color: var(--primary);
    position: absolute;
    /* I'll just color the text orange in html or here. Wait, "eduka" has "edu" in white and "ka" in orange. Let's fix this in CSS. */
}
.footer-logo .logo-text {
    color: var(--white);
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

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

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--white);
}

.contact-icon {
    width: 35px;
    height: 35px;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px; /* Rounded square */
    font-size: 14px;
}

/* Titles */
.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}
.footer-title::before {
    content: '';
    position: absolute;
    left: 45px;
    bottom: -10px;
    width: 20px;
    height: 2px;
    background-color: rgba(255,255,255,0.2);
}

/* Links Columns */
.footer-links-new {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links-new a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links-new a i {
    color: var(--primary);
    font-size: 12px;
}

.footer-links-new a:hover {
    color: var(--primary);
}

/* Newsletter Column */
.footer-newsletter p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    background-color: var(--white);
    color: var(--text-dark);
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.btn-subscribe {
    width: 100%;
    padding: 15px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-subscribe:hover {
    background-color: #d1750e; /* Darker orange */
}

/* Bottom Bar */
.footer-bottom-new {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #0b3c66; /* Slightly darker than main footer background */
    padding: 25px 15px;
    position: relative;
    z-index: 1;
}

.footer-bottom-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.highlight-text {
    color: var(--primary);
    font-weight: 700;
}

.footer-social-new {
    display: flex;
    gap: 15px;
    margin-right: 60px; /* Space for the scroll-top button */
}

.footer-social-new a {
    width: 35px;
    height: 35px;
    background-color: var(--white);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

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

/* Scroll To Top Button */
.scroll-top-btn {
    position: absolute;
    right: 30px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
    z-index: 10;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    color: var(--white);
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-container-new {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-container-new {
        grid-template-columns: 1fr;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-social-new {
        margin-right: 0;
    }
    .scroll-top-btn {
        right: 15px;
        bottom: 100px; /* move up above bottom bar */
    }
}


/* Footer Fixes for Full Width Bottom Bar and Logo */
.site-footer-new {
    padding: 100px 0 0 !important; 
}

.footer-container-new {
    padding-left: 15px;
    padding-right: 15px;
}

.footer-bottom-container {
    padding-left: 15px;
    padding-right: 15px;
}

/* ====================================================
   Contact Page Styles
==================================================== */

/* Contact Hero */
.contact-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: -90px; /* Offset for header if needed, but header is white. So no margin top. Let's remove margin-top */
}

/* Actually, the header is standard, let's keep it normal */
.contact-hero {
    margin-top: 0; 
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.contact-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

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

.contact-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb a {
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb i {
    font-size: 12px;
    color: var(--primary);
}

.breadcrumb span {
    color: var(--primary);
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 15px;
    background-color: #f4f7f6;
    position: relative;
}

.contact-info-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-info-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    border-bottom: 5px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-bottom: 5px solid var(--secondary); /* Teal color from image */
}

.ci-icon-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.ci-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--secondary);
    transition: 0.3s;
}

.contact-info-card:hover .ci-icon {
    background-color: var(--secondary);
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
}

/* Contact Form Section */
.contact-form-section {
    padding: 0 15px 100px 15px;
    background-color: #f4f7f6;
}

.contact-form-container {
    max-width: 1280px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    display: flex;
    overflow: hidden;
}

.cf-image {
    width: 40%;
    position: relative;
}

.cf-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cf-form-wrap {
    width: 60%;
    padding: 60px;
}

.cf-form-wrap h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.cf-desc {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.form-group.half {
    width: 50%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-dark);
    outline: none;
    transition: 0.3s;
    background-color: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    background-color: var(--white);
}

.cf-submit-btn {
    align-self: flex-start;
    padding: 16px 35px;
    font-size: 15px;
    border: none;
    border-radius: 30px;
    margin-top: 10px;
}

/* Map Section */
.contact-map-section {
    width: 100%;
    height: 450px;
    display: block;
    margin-bottom: -5px; /* Fix for inline block gap */
}

/* Responsive */
@media (max-width: 992px) {
    .contact-info-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-form-container {
        flex-direction: column;
    }
    .cf-image {
        width: 100%;
        height: 300px;
    }
    .cf-form-wrap {
        width: 100%;
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .contact-info-container {
        grid-template-columns: 1fr;
    }
    .form-row {
        flex-direction: column;
    }
    .form-group.half {
        width: 100%;
    }
}

/* ====================================================
   About Page Specific Styles
==================================================== */
.about-detail-section {
    padding: 100px 15px;
    background-color: var(--white);
}

.about-detail-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-detail-content {
    flex: 1;
}

.about-image-group {
    flex: 1;
    min-height: 500px;
}

.about-detail-features {
    margin-bottom: 30px;
}

.ad-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.ad-f-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(248, 154, 28, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.ad-f-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.ad-f-text p {
    color: var(--text-light);
    font-size: 15px;
    margin: 0;
}

.about-detail-stats-box {
    background-color: #f4f7f6;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-detail-stats-box p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.ad-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    display: flex;
    align-items: flex-start;
}

.ad-plus {
    font-size: 24px;
    color: var(--primary);
}

/* Teachers Section */
.section-teachers {
    padding: 100px 15px;
    background-color: #f8f9fa;
}

.teachers-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.teacher-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    padding-bottom: 30px;
}

.teacher-img {
    height: 280px;
    width: 100%;
    position: relative;
    padding: 20px 20px 0 20px;
    background-color: #f4f7f6;
    border-radius: 20px 20px 0 0;
    margin-bottom: 20px;
}

.teacher-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.teacher-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.teacher-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

.teacher-share-btn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 35px;
    height: 35px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.3s;
}

.teacher-share-btn:hover {
    background-color: var(--primary);
}

/* Partners Section */
.section-partners {
    padding: 60px 15px;
    background-color: var(--white);
    border-top: 1px solid #eaeaea;
}

.partners-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 30px;
}

.partner-logo {
    font-size: 50px;
    color: var(--secondary);
    opacity: 0.5;
    transition: 0.3s;
}

.partner-logo:hover {
    opacity: 1;
    color: var(--primary);
}

@media (max-width: 992px) {
    .about-detail-container {
        flex-direction: column;
    }
    .teachers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .teachers-grid {
        grid-template-columns: 1fr;
    }
    .partners-container {
        justify-content: center;
    }
}

/* ====================================================
   Admissions Page Specific Styles
==================================================== */

/* Hero Section Updates */
.admission-hero .slider-content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    height: 100%;
    padding: 0 15px;
}
.admission-hero-content {
    max-width: 60%;
    margin: 0;
    text-align: left;
}
.admission-floating-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 35%;
}
.af-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 5px solid var(--primary);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    transition: transform 0.3s;
}
.af-card:hover {
    transform: translateX(-10px);
    background: rgba(255, 255, 255, 0.15);
}
.af-card i {
    font-size: 24px;
    color: var(--primary);
}
.af-text {
    font-size: 18px;
    font-weight: 600;
}

/* Timeline Section */
.section-timeline {
    padding: 100px 15px;
    background-color: var(--white);
}
.timeline-container {
    max-width: 1280px;
    margin: 0 auto;
}
.timeline-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px;
    position: relative;
}
.timeline-wrap::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-color: #eaeaea;
    z-index: 1;
}
.timeline-item {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 15px;
}
.timeline-dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: 0.3s;
}
.timeline-item:hover .timeline-dot {
    background-color: var(--primary);
    color: var(--white);
}
.timeline-content h3 {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 700;
}
.timeline-content h4 {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 700;
}

/* Eligibility Section */
.section-eligibility {
    padding: 100px 15px;
    background-color: var(--white);
}
.eligibility-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}
.eli-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.eli-image img {
    width: 100%;
    height: auto;
    display: block;
}
.eli-content {
    flex: 1;
}
.eli-table-card {
    background-color: #f4f7f6;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.eli-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dashed #d1d1d1;
}
.eli-row:last-child {
    border-bottom: none;
}
.eli-grade {
    font-weight: 700;
    color: var(--secondary);
    font-size: 18px;
}
.eli-age {
    font-weight: 600;
    color: var(--primary);
    font-size: 18px;
}
.eli-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

/* Required Documents Section */
.section-documents {
    padding: 100px 15px;
    background-color: #f8f9fa;
}
.documents-container {
    max-width: 1280px;
    margin: 0 auto;
}
.documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.doc-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-bottom: 3px solid transparent;
}
.doc-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--primary);
}
.doc-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}
.doc-card h4 {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 700;
    margin: 0;
}

/* Inquiry Form additions */
.inquiry-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}
.inquiry-benefits li {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.inquiry-benefits li i {
    color: var(--primary);
}
.ic-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.ic-item i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(20, 89, 144, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.ic-item span {
    display: block;
    font-size: 13px;
    color: var(--text-light);
}
.ic-item strong {
    font-size: 15px;
    color: var(--text-dark);
}

/* FAQ Section */
.section-faq {
    padding: 100px 15px;
    background-color: #f8f9fa;
}
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}
.faq-title {
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}
.faq-title::-webkit-details-marker {
    display: none;
}
.faq-item[open] .faq-title {
    color: var(--primary);
    border-bottom: 1px solid #eaeaea;
}
.faq-title i {
    color: var(--secondary);
    transition: transform 0.3s;
}
.faq-item[open] .faq-title i {
    transform: rotate(180deg);
    color: var(--primary);
}
.faq-content {
    padding: 25px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}
.faq-content p {
    margin: 0;
}

/* Responsive updates for Admissions page */
@media (max-width: 992px) {
    .admission-hero .slider-content-container {
        flex-direction: column;
        justify-content: center;
        gap: 40px;
    }
    .admission-hero-content {
        max-width: 100%;
        text-align: center;
    }
    .admission-hero-content .slider-buttons {
        justify-content: center;
    }
    .admission-floating-cards {
        width: 100%;
        max-width: 500px;
    }
    .timeline-wrap {
        flex-direction: column;
        gap: 40px;
    }
    .timeline-wrap::before {
        top: 0;
        bottom: 0;
        left: 39px;
        width: 2px;
        height: auto;
    }
    .timeline-item {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
        padding: 0;
        width: 100%;
    }
    .timeline-dot {
        margin: 0;
        flex-shrink: 0;
    }
    .eligibility-container {
        flex-direction: column;
    }
    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .documents-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================================================
   Academics Page Specific Styles
==================================================== */

/* Methodology Section */
.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.method-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 3px solid transparent;
}
.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-bottom: 3px solid var(--primary);
}
.method-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}
.method-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.method-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 15px;
}

/* Beyond Academics Grid */
.dev-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.dev-card {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.dev-card:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}
.dev-card i {
    font-size: 30px;
    color: var(--secondary);
    transition: 0.3s;
}
.dev-card:hover i {
    color: var(--white);
}
.dev-card h4 {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
    transition: 0.3s;
}
.dev-card:hover h4 {
    color: var(--white);
}

/* Parallax Stats Section */
.section-stats {
    position: relative;
    padding: 100px 15px;
    background-image: url('images/gallery_1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}
.stats-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(14, 34, 49, 0.85); /* secondary color overlay */
    z-index: 1;
}
.stats-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.stat-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-number {
    font-size: 60px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.stat-plus {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-left: 2px;
}
.stat-title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive updates for Academics */
@media (max-width: 992px) {
    .method-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dev-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-why-choose-new .wcu-features {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .method-grid {
        grid-template-columns: 1fr;
    }
    .dev-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================================================
   Downloads Page Specific Styles
==================================================== */

/* Downloads Grid */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.dl-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.dl-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.dl-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(243, 156, 18, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.3s;
}
.dl-card:hover .dl-icon-box {
    background: var(--primary);
}
.dl-icon-box i {
    font-size: 30px;
    color: var(--primary);
    transition: 0.3s;
}
.dl-card:hover .dl-icon-box i {
    color: var(--white);
}
.dl-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #eef2f5;
    color: var(--text-light);
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}
.dl-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
}
.dl-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}
.btn-dl {
    margin-top: auto;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Need Help Section Styles */
.help-form .form-control:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

/* Responsive updates for Downloads */
@media (max-width: 992px) {
    .help-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

/* ====================================================
   Mobile Responsive Updates
==================================================== */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    margin-left: 15px;
}

.main-header {
    position: relative;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: inline-block;
    }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 0;
    }
    .main-nav.active {
        display: block;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }
    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid #eee;
        display: block;
    }
    .main-nav ul li:last-child {
        border-bottom: none;
    }
    .main-nav ul li a {
        display: block;
        padding: 15px 20px;
        width: 100%;
    }
    .main-nav ul li a::after {
        display: none;
    }
    
    .top-bar-left {
        display: none;
    }
    .top-bar-right {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .top-bar-right .contact-info {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .header-right {
        display: flex;
        align-items: center;
    }
    
    /* Global Padding Reduction */
    section[style*="padding: 100px"] {
        padding: 60px 15px !important;
    }
    
    /* Typography Scaling */
    .slider-title {
        font-size: 40px !important;
    }
    .section-heading {
        font-size: 32px !important;
    }
    .contact-hero-content h1, h1 {
        font-size: 36px !important;
    }
}

@media (max-width: 576px) {
    .slider-title {
        font-size: 32px !important;
    }
    .section-heading {
        font-size: 28px !important;
    }
    .contact-hero-content h1, h1 {
        font-size: 30px !important;
    }
    .slider-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .slider-buttons a {
        width: 100%;
        text-align: center;
        margin-right: 0 !important;
    }
    .top-bar-right .contact-info .contact-item:not(:first-child) {
        display: none; /* Only show first contact item on very small screens */
    }
    .header-right .btn-apply {
        padding: 8px 15px;
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .header-right .btn-apply {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .slider-section {
        height: auto !important;
        padding: 140px 0 140px 0 !important;
    }
    .slider-content {
        text-align: center;
        margin: 0 auto;
    }
    .slider-subtitle {
        font-size: 12px !important;
        letter-spacing: 1px !important;
        text-align: center;
        justify-content: center;
        display: inline-flex;
    }
    .slider-title {
        font-size: 32px !important;
        margin-bottom: 20px !important;
    }
    .slider-desc {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 30px !important;
    }
    .slider-controls {
        display: none !important;
    }
}
