﻿/* ========================================================
   SNEHA DEEPAM - ABOUT SCHOOL WIDGET STYLES
   ======================================================== */

.snehadeepam-about-school-widget {
    position: relative;
    width: 100%;
    overflow: visible;
}

.school-about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Left Column: Visual Collage */
.school-about-left {
    flex: 1 1 48%;
    min-width: 320px;
    max-width: 540px;
    margin: 0 auto;
    position: relative;
}

.school-about-image-box {
    position: relative;
    padding-top: 60px;
    padding-left: 20px;
    padding-bottom: 40px;
}

/* Background Dots Pattern */
.school-about-dots-pattern {
    position: absolute;
    top: -20px;
    left: -40px;
    width: 380px;
    max-width: 90%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.85;
}

.school-about-dots-pattern img {
    width: 100%;
    height: auto;
    display: block;
}

/* Watermark Text */
.school-about-watermark {
    position: absolute;
    top: 5px;
    right: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    color: #d6d9e6;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

/* Main School Image */
.school-about-main-img-wrap {
    position: relative;
    z-index: 2;
    text-align: right;
    margin-left: auto;
    max-width: 440px;
}

.school-about-main-img-wrap img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Circular Badge */
.school-about-badge {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 190px;
    height: 190px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.school-badge-outer-disc {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #f0f1f7;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.school-badge-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.school-badge-svg text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.2px;
    fill: #0c1b40;
    text-transform: uppercase;
}

.school-badge-spin {
    animation: schoolBadgeRotate 22s linear infinite;
    transform-origin: center center;
}

.school-about-badge:hover .school-badge-spin {
    animation-play-state: paused;
}

@keyframes schoolBadgeRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Inner Pink/Magenta Circle */
.school-badge-inner-center {
    position: relative;
    z-index: 3;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: #D13380;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(209, 51, 128, 0.35);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.school-about-badge:hover .school-badge-inner-center {
    transform: scale(1.05);
}

.school-badge-inner-center img {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
    display: block;
}

.school-badge-inner-center i,
.school-badge-inner-center svg {
    color: #ffffff;
    fill: #ffffff;
    font-size: 36px;
    width: 36px;
    height: 36px;
}

/* Right Column: Content */
.school-about-right {
    flex: 1 1 48%;
    min-width: 320px;
}

.school-about-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #D13380;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.school-about-heading {
    font-family: 'Inter', sans-serif !important;
    font-size: 38px !important;
    font-weight: 700 !important;
    color: #23233a !important;
    line-height: 1.25 !important;
    margin-bottom: 20px !important;
}

.school-about-description {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a58;
    text-align: justify;
    margin-bottom: 30px;
}

.school-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 34px;
    background-color: #D13380;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(209, 51, 128, 0.25);
}

.school-about-btn:hover {
    background-color: #0c1b40;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(12, 27, 64, 0.3);
}

.school-about-btn .btn-arrow-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.school-about-btn:hover .btn-arrow-icon {
    transform: translate(3px, -3px);
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .school-about-container {
        flex-direction: column;
        gap: 30px;
    }
    .school-about-left,
    .school-about-right {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .school-about-heading {
        font-size: 30px !important;
    }
}

@media (max-width: 575px) {
    .school-about-image-box {
        padding-top: 40px;
        padding-left: 0;
        padding-bottom: 20px;
    }
    .school-about-watermark {
        font-size: 34px;
        top: 0;
        right: 10px;
    }
    .school-about-badge {
        width: 150px;
        height: 150px;
        bottom: -20px;
    }
    .school-badge-inner-center {
        width: 86px;
        height: 86px;
    }
    .school-badge-inner-center img {
        max-width: 36px;
        max-height: 36px;
    }
    .school-badge-svg text {
        font-size: 11px;
        letter-spacing: 2px;
    }
    .school-about-heading {
        font-size: 26px !important;
    }
}
