/* 
* Shikshan - Education Platform Stylesheet
* Author: Cascade
* Date: 2025-06-16
*/


/* Import testimonials stylesheet */

@import url('testimonials.css');

/* ========== Global Styles ========== */

:root {
    /* New Color Palette */
    --primary-color: #2C3E50;
    /* Deep Slate Blue - For headers/nav */
    --secondary-color: #2980B9;
    /* Soft Royal Blue - For buttons/CTA */
    --accent-color: #F39C12;
    /* Warm Yellow - For highlights/icons */
    --bg-color: #F8F9FA;
    /* Off-white - Main background */
    --section-bg: #FFFFFF;
    /* Pure White - For content sections */
    --text-primary: #2C3E50;
    /* Same as primary - for main text */
    --text-secondary: #7F8C8D;
    /* Muted Gray - for subtext/labels */
    --border-color: #E0E0E0;
    /* Light border lines */
    /* Utility Colors */
    --white: #FFFFFF;
    --light-gray: #F5F7FA;
    --dark: #2C3E50;
    --gray: #7F8C8D;
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), #34495E);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #3498DB);
    /* Transitions & Shadows */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(44, 62, 80, 0.1);
    --shadow-md: 0 4px 12px rgba(44, 62, 80, 0.15);
    --shadow-lg: 0 8px 25px rgba(44, 62, 80, 0.2);
    --shadow-accent: 0 4px 15px rgba(243, 156, 18, 0.3);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-color);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

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

.btn {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(108, 48, 191, 0.3);
}


/* ========== Header Styles ========== */

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
}

.logo-text {
    color: var(--primary-color);
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    transform: scaleX(0.7);
    transform-origin: left;
    transition: var(--transition);
}

.navbar-brand:hover .logo-text::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    width: calc(100% - 30px);
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--transition);
}

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

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

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}


/* ========== Hero Slider Styles ========== */

.hero-slider {
    margin-top: 80px;
}

.carousel-item {
    height: 80vh;
    min-height: 500px;
    background-color: var(--dark);
    position: relative;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 15px;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s;
}

.carousel-caption .btn {
    animation: fadeInUp 1.4s;
}

.carousel-indicators {
    z-index: 3;
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 3;
    width: 10%;
}


/* Animations */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


/* ========== Working Process Section ========== */

.working-process {
    background-color: #f8f6ff;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.working-process .section-subtitle {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.working-process .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d3557;
    margin-bottom: 15px;
}

.process-flow {
    position: relative;
    padding: 60px 0 30px;
}

.process-connection {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 1;
}

.connection-line {
    position: absolute;
    top: 0;
    left: 15%;
    width: 70%;
    height: 2px;
    background-color: #d9d5f2;
    z-index: -1;
}

.connection-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: -5px;
    z-index: 2;
}

.dot-1 {
    left: 15%;
}

.dot-2 {
    left: 38%;
}

.dot-3 {
    left: 62%;
}

.dot-4 {
    left: 85%;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 0 15px;
    height: 100%;
    transition: var(--transition);
    z-index: 3;
}

.process-step:hover {
    transform: translateY(-10px);
}

.process-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(108, 48, 191, 0.15);
    position: relative;
}

.step-number {
    position: absolute;
    width: 28px;
    height: 28px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    top: 0;
    right: 0;
    transform: translate(30%, -30%);
}

.process-step:hover .process-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.process-step h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.process-step p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}


/* Animations */

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}


/* ========== Hero Section ========== */

.entrance-hero-section {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.society-name {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 800px;
}

.society-name-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.society-name-sub {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin: 1rem 0;
    line-height: 1.4;
}

.society-name-location {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    background-color: rgba(41, 128, 185, 0.1);
    margin-top: 1rem;
}

.entrance-hero-image {
    position: relative;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    padding: 10px;
}

.entrance-hero-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.entrance-hero-image img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.entrance-hero-image:hover img {
    transform: scale(1.03);
}


/* ========== About Section ========== */

.about-section {
    position: relative;
    background-color: var(--white);
    padding: 80px 0;
    overflow: hidden;
}

.about-section .section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d3557;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-image-container {
    position: relative;
    padding: 20px;
    height: 100%;
}

.about-image-main {
    position: relative;
    z-index: 3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image-accent {
    position: absolute;
    width: 60%;
    bottom: 0;
    right: 0;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about-shape-1 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(108, 48, 191, 0.1);
    top: -50px;
    left: -50px;
    z-index: 1;
}

.about-shape-2 {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(217, 106, 126, 0.1);
    bottom: 20px;
    left: 30%;
    z-index: 1;
}

.about-features {
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    transition: var(--transition);
    padding: 15px;
    border-radius: 8px;
}

.about-feature:hover {
    background-color: rgba(217, 213, 242, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.about-feature:hover .feature-icon {
    background-color: var(--accent-color);
    transform: rotate(10deg);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0;
}

.about-cta {
    margin-top: 30px;
}

.about-cta .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    transition: var(--transition);
}

.about-cta .btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.about-cta .btn-outline-secondary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    padding: 10px 25px;
    transition: var(--transition);
}

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


/* ========== Course Section ========== */

.courses-section {
    padding: 100px 0;
    background-color: #fcfbff;
    position: relative;
    overflow: hidden;
}

.courses-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(108, 48, 191, 0.05);
    z-index: 1;
}

.courses-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: rgba(217, 106, 126, 0.05);
    z-index: 1;
}

.section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d3557;
    margin-bottom: 15px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
}

.course-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(158, 127, 212, 0.2);
    border-width: 2.5px;
}

.course-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px;
    position: relative;
}

.course-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.course-description {
    font-size: 0.95rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.course-card-body {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #f8f6ff;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}


/* Course Section Styles */

.courses-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(108, 48, 191, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.courses-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background-color: rgba(217, 106, 126, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.courses-section .section-header {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.courses-section .section-subtitle {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.courses-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6C30BF;
    margin-bottom: 15px;
}

.courses-section .section-description {
    max-width: 700px;
    margin: 0 auto;
    color: #6232A6;
}


/* Course Filter Styles */

.course-filter {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    margin: 0 5px 10px;
    background-color: white;
    color: #6C30BF;
    border: 1px solid rgba(108, 48, 191, 0.2);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
    box-shadow: none;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #6C30BF;
    color: white;
    transform: translateY(-2px);
    box-shadow: none;
    border-color: #6C30BF;
}


/* Course Card Styles */

.course-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    border: none;
}

.course-card.light-bg {
    background-color: var(--light-bg);
    border: 2px solid var(--primary-color);
}

.course-card.soft-highlight-bg {
    background-color: var(--soft-highlight);
    border: 2px solid var(--accent-color);
}

.course-card {
    background-color: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    border: 2px solid var(--light-bg);
    margin-bottom: 15px;
}

.course-card-header {
    background-color: transparent;
    border-bottom: none;
}

.course-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(108, 48, 191, 0.1);
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #D96A7E;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
    box-shadow: none;
}

.course-card-header {
    background: transparent;
    color: #6C30BF;
    padding: 25px 20px;
    border-radius: 12px 12px 0 0;
    border-bottom: none;
}

.course-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #6C30BF;
}

.course-description {
    font-size: 13px;
    color: #6232A6;
    margin-bottom: 0;
}

.course-card.light-bg .course-description,
.course-card.soft-highlight-bg .course-description {
    color: #6232A6;
}

.course-card.light-bg .course-title,
.course-card.soft-highlight-bg .course-title {
    color: var(--primary-color);
}

.course-card-body {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    color: #333333;
    font-size: 12px;
    background-color: transparent;
    padding: 3px 6px;
    border-radius: 5px;
    border: none;
}

.meta-item i {
    margin-right: 6px;
    color: #333333;
}

.course-footer {
    margin-top: auto;
}

.btn-enquire {
    display: inline-block;
    background-color: #6232A6;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    width: 100%;
    box-shadow: none;
}

.btn-enquire:hover {
    background-color: #c85a6d;
    transform: translateY(-2px);
    box-shadow: none;
    color: white;
    text-decoration: none;
}


/* Animation */

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

.fadeInUp {
    animation: fadeInUp 0.5s ease forwards;
}

.feature-item i {
    color: #6C30BF;
    margin-right: 8px;
    margin-top: 2px;
    font-size: 0.8rem;
}

.feature-item span {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.4;
}

.program-action {
    margin-top: auto;
}

.btn-view-detail {
    display: block;
    width: 100%;
    background-color: #6C30BF;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
}

.btn-view-detail:hover {
    background-color: #6232A6;
    color: #fff;
}


/* Responsive Styles for Courses Section */

@media (max-width: 991px) {
    .courses-section {
        padding: 70px 0;
    }
    .courses-section .section-header h2 {
        font-size: 2.2rem;
    }
    .course-card-header {
        padding: 20px 15px;
    }
    .course-title {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .courses-section {
        padding: 50px 0;
    }
    .courses-section .section-header h2 {
        font-size: 2rem;
    }
    .course-filter {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
    }
    .filter-btn {
        flex: 0 0 auto;
        padding: 6px 15px;
        font-size: 14px;
        white-space: nowrap;
    }
    .course-meta {
        flex-direction: column;
        gap: 8px;
    }
    .course-card-header {
        padding: 15px;
    }
    /* Ensure light theme colors are consistent on mobile */
    .course-card.light-bg {
        background-color: var(--light-bg);
    }
    .course-card.soft-highlight-bg {
        background-color: var(--soft-highlight);
    }
}

@media (max-width: 576px) {
    .courses-section {
        padding: 40px 0;
    }
    .courses-section .section-header h2 {
        font-size: 1.8rem;
    }
    .course-card-header {
        padding: 15px;
    }
    .course-card-body {
        padding: 15px;
    }
    .course-title {
        font-size: 16px;
    }
    .btn-enquire {
        padding: 8px 15px;
        font-size: 14px;
    }
}


/* Footer Responsive for Small Devices */

@media (max-width: 576px) {
    .footer-top {
        padding: 40px 0 20px;
    }
    .footer-widget h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    .footer-widget h3::after {
        width: 40px;
    }
    .footer-widget p {
        font-size: 0.85rem;
    }
    .social-links {
        gap: 8px;
    }
    .social-link {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
    .footer-links li {
        margin-bottom: 8px;
    }
    .footer-links a {
        font-size: 0.85rem;
    }
    .newsletter-form .form-control {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    .newsletter-form .btn {
        padding: 0 15px;
    }
    .footer-bottom {
        padding: 15px 0;
    }
    .copyright {
        font-size: 0.8rem;
        text-align: center;
        margin-bottom: 10px;
    }
    .footer-bottom-links {
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }
    .footer-bottom-links a {
        font-size: 0.75rem;
    }
    /* Contact Section Responsive */
    .contact-section {
        padding: 50px 0;
    }
    .contact-section .section-header h2 {
        font-size: 1.8rem;
    }
    .contact-section .section-description {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    .contact-info {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    .contact-form-container {
        padding: 25px 20px;
    }
    .send-message-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
        width: 100%;
    }
    /* Footer Responsive */
    .footer-top {
        padding: 60px 0 30px;
    }
    .footer-widget h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    .footer-widget p {
        font-size: 0.9rem;
    }
    .footer-links a {
        font-size: 0.9rem;
    }
    .footer-bottom-links {
        gap: 15px;
    }
    .footer-bottom-links a {
        font-size: 0.8rem;
    }
}


/* Light Theme Utility Classes */

.light-bg {
    background-color: var(--light-bg);
}

.soft-highlight-bg {
    background-color: var(--soft-highlight);
}


/* Board Label Styles */

.board-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 20px;
    z-index: 3;
}


/* Adjust position when course badge is present */

.course-badge+.board-label {
    top: 50px;
}

.board-label.cbse {
    background-color: var(--primary-color);
}

.board-label.icse {
    background-color: var(--accent-color);
}

.board-label.state {
    background-color: var(--secondary-color);
}


/* ========== Footer Section ========== */

.footer {
    background-color: #f8f6ff;
    color: var(--dark);
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 80px 0 50px;
    border-bottom: 1px solid rgba(158, 127, 212, 0.1);
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-widget p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #032B44 0%, #4682B4 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
    box-shadow: 0 6px 15px rgba(161, 177, 130, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4682B4 0%, #032B44 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link i {
    position: relative;
    z-index: 1;
}

.social-link:hover {
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(161, 177, 130, 0.4);
}

.social-link:hover::before {
    opacity: 1;
}

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


/* ... */


/* Info Cards */

.info-card {
    background: var(--section-bg);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    padding: 30px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, var(--section-bg), #F7DC6F);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-secondary);
    transition: var(--transition);
    opacity: 1;
}

.info-card:hover::before {
    width: 6px;
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
    background: var(--section-bg);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4682B4 0%, #032B44 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(161, 216, 177, 0.3);
    transition: all 0.3s ease;
}

.info-icon:hover {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(161, 216, 177, 0.4);
}

.info-content h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.info-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4682B4 0%, #032B44 100%);
    border-radius: 2px;
}

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

.info-list li {
    padding: 8px 0;
    color: #4a5568;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
}

.info-list li::before {
    content: '•';
    color: #4682B4;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

.info-list li strong {
    color: #2d3748;
    font-weight: 600;
}


/* Table Styling */

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #4a5568;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 12px 15px;
    vertical-align: middle;
    border-top: 1px solid #e2e8f0;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #e2e8f0;
    background-color: #f8fafc;
    color: #2d3748;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
}

.table-hover tbody tr:hover {
    background-color: rgba(158, 127, 212, 0.05);
}


/* Responsive Adjustments */

@media (max-width: 991.98px) {
    .about-society-section {
        padding: 60px 0;
    }
    .about-society-section .section-title {
        font-size: 2rem;
    }
    .info-card {
        padding: 25px 20px;
    }
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .info-content h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .about-society-section {
        padding: 50px 0;
    }
    .about-society-section .section-title {
        font-size: 1.8rem;
    }
    .info-card {
        margin-bottom: 20px;
    }
    .table-responsive {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 575.98px) {
    .about-society-section .section-title {
        font-size: 1.6rem;
    }
    .about-society-section .section-subtitle {
        font-size: 1rem;
    }
    .info-card {
        padding: 20px 15px;
    }
    .info-content h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    .info-list li {
        font-size: 0.9rem;
    }
}


/* Ensure proper RTL support for Marathi content */

[lang="mr"] {
    direction: ltr;
    text-align: left;
}


/* Ensure proper spacing and alignment for list items */

.info-list li {
    margin-bottom: 5px;
}


/* Style for the table in the flat owners section */

.about-society-section .table {
    margin-top: 15px;
}

.about-society-section .table td {
    padding: 12px;
    font-size: 0.95rem;
}


/* Add some spacing between sections */

.about-content>.row>div {
    margin-bottom: 30px;
}


/* Style for the history section */

.about-society-section .info-card p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #4a5568;
}


/* Add a subtle animation to cards on hover */

@keyframes float {
    0% {
        transform: translateY(0px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    100% {
        transform: translateY(0px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(216, 161, 177, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(216, 161, 177, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(216, 161, 177, 0);
    }
}

.info-card:hover {
    animation: float 3s ease-in-out infinite;
}

.info-icon:hover {
    animation: pulse 1.5s infinite;
}


/* ========== Media Coverage Section ========== */

.media-coverage-section {
    background: var(--bg-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.media-coverage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4682B4 0%, #032B44 100%);
    background-size: 200% 200%;
    animation: gradientBG 6s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.media-coverage-section .section-header {
    margin-bottom: 50px;
}

.media-coverage-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4682B4;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.media-coverage-section .section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4682B4 0%, #032B44 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.media-coverage-card {
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    padding: 15px;
    position: relative;
    border: 1px solid rgba(216, 161, 161, 0.2);
}

.media-coverage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--light-maroon), var(--light-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.media-coverage-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    filter: grayscale(20%);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.media-coverage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.media-coverage-card:hover img {
    transform: scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    filter: grayscale(0%);
}


/* Responsive Adjustments */

@media (max-width: 991.98px) {
    .media-coverage-section {
        padding: 60px 0;
    }
    .media-coverage-section .section-title {
        font-size: 2.2rem;
    }
    .media-coverage-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .media-coverage-section {
        padding: 50px 0;
    }
    .media-coverage-section .section-title {
        font-size: 2rem;
    }
    .media-coverage-card {
        padding: 10px;
    }
}

@media (max-width: 575.98px) {
    .media-coverage-section {
        padding: 40px 0;
    }
    .media-coverage-section .section-title {
        font-size: 1.8rem;
    }
    .media-coverage-card {
        padding: 8px;
        border-radius: 8px;
    }
    .media-coverage-card img {
        border-radius: 6px;
    }
}