/* --- v3 SPECTACULAR PREMIUM DESIGN --- */

.about-premium-v3 {
    background-color: #fff;
    overflow: hidden;
}

/* Background Accents */
.v3-shape-left {
    position: absolute;
    top: 5%;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(66, 165, 245, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.v3-shape-right {
    position: absolute;
    bottom: 5%;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(242, 83, 52, 0.1) 0%, transparent 70%);
    z-index: 0;
}

/* Collage Wrapper */
.v3-collage-wrapper {
    position: relative;
    padding-right: 50px;
    z-index: 1;
}

.v3-collage--main {
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 50px 100px rgba(0,0,0,0.15);
    border: 15px solid #fff;
}

.v3-collage--main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.v3-collage--secondary {
    position: absolute;
    bottom: -60px;
    right: -30px;
    width: 320px;
    height: 320px;
    border-radius: 40px;
    overflow: hidden;
    z-index: 3;
    border: 12px solid #fff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.v3-collage--secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stat Card */
.v3-stat-card {
    position: absolute;
    top: 100px;
    left: -40px;
    background: #fff;
    padding: 25px 35px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 5;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.v3-stat-icon {
    width: 60px;
    height: 60px;
    background: var(--preschool-orange);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
}

.v3-stat-content h4 {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    color: var(--preschool-dark);
}

.v3-stat-content p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #888;
}

/* Glass Card Content */
.v3-glass-card {
    position: relative;
    z-index: 2;
    margin-left: -50px;
}

.v3-card-inner {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}

.v3-tag {
    color: var(--preschool-pink);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    display: block;
    margin-bottom: 20px;
}

.v3-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 56px;
    line-height: 1.1;
    color: var(--preschool-dark);
    margin-bottom: 30px;
}

.v3-title-accent {
    color: var(--preschool-orange);
}

.v3-lead {
    font-size: 22px;
    line-height: 1.6;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.v3-content-text p {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

/* Checklist v3 */
.v3-checklist-wrapper {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.v3-check-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.v3-check-icon {
    width: 32px;
    height: 32px;
    background: var(--preschool-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(102, 187, 106, 0.2);
}

.v3-check-item span {
    font-weight: 700;
    color: var(--preschool-dark);
    font-size: 17px;
}

/* Action Row */
.v3-action-row {
    margin-top: 50px;
}

.v3-btn {
    padding: 22px 45px;
    font-size: 18px;
    border-radius: 100px;
}

/* Hover Effects */
.v3-collage-item {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s ease;
}

.v3-collage--main:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.v3-collage--main img {
    transition: transform 0.8s ease;
}

.v3-collage--main:hover img {
    transform: scale(1.05);
}

.v3-collage--secondary:hover {
    transform: translate(-20px, -20px) scale(1.05);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
    z-index: 11;
}

/* Holistic Section Image Hover */
.holistic-growth__image-wrapper {
    overflow: hidden;
    border-radius: 40px;
}

.holistic-growth__image-wrapper .main-img {
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.holistic-growth__image-wrapper:hover .main-img {
    transform: scale(1.08) rotate(1deg);
}

.floating-badge {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.holistic-growth__image-wrapper:hover .floating-badge {
    transform: translate(-10px, -10px) scale(1.1);
}

/* Shine Effect on All Premium Images */
.v3-collage-item::after, 
.holistic-growth__image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.75s ease;
    z-index: 5;
}

.v3-collage-item:hover::after,
.holistic-growth__image-wrapper:hover::after {
    left: 125%;
}

/* Responsive Styles */
@media (max-width: 1399px) {
    .v3-title { font-size: 48px; }
    .v3-glass-card { margin-left: 0; margin-top: 50px; }
    .v3-card-inner { padding: 40px; }
}

@media (max-width: 1199px) {
    .v3-collage--main img { height: 500px; }
    .v3-collage--secondary { width: 250px; height: 250px; bottom: -40px; right: 0; }
}

@media (max-width: 767px) {
    .v3-title { font-size: 36px; }
    .v3-lead { font-size: 19px; }
    .v3-stat-card { top: -40px; left: 0; }
    .v3-collage--secondary { width: 180px; height: 180px; }
}

/* Keep essential colors/defaults */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
    --preschool-pink: #e91e63;
    --preschool-orange: #f25334;
    --preschool-blue: #42a5f5;
    --preschool-green: #66bb6a;
    --preschool-cream: #fffaf0;
    --preschool-yellow: #ffecb3;
    --preschool-dark: #1f2235;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--preschool-cream);
}

.fredoka { font-family: 'Fredoka', sans-serif; }


.about-section {
	padding: 90px 0;
	background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
}

.about-section__image {
	position: relative;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
	background: #fff;
	height: 100%;
}

.about-section__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 30px;
	transition: all 0.4s ease;
	min-height: 620px;
}

.about-section__image:hover img {
	transform: scale(1.04);
}

.about-section__content {
	padding-left: 20px;
}

.about-section__tag {
	display: inline-block;
	padding: 8px 18px;
	background: #fef3e2;
	color: #f7941d;
	font-size: 14px;
	font-weight: 700;
	border-radius: 30px;
	margin-bottom: 18px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.about-section__title {
	font-size: 44px;
	line-height: 1.2;
	font-weight: 700;
	color: #1f1f1f;
	margin-bottom: 20px;
	font-family: 'Fredoka', sans-serif;
}

.about-section__text {
	font-size: 17px;
	line-height: 1.9;
	color: #5f5f5f;
	margin-bottom: 18px;
	font-family: 'DM Sans', sans-serif;
}

.about-section__text--last {
	margin-bottom: 0;
}

.about-section__highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.about-highlight-box {
	background: #ffffff;
	border: 1px solid #f1e3cc;
	padding: 12px 18px;
	border-radius: 14px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
	font-size: 15px;
	font-weight: 600;
	color: #2b2b2b;
}

/* --- VISION & MISSION EXACT MATCH DESIGN --- */
.bg-light-section-v2 {
    background-color: #f4f7f9;
}

.vision-mission-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.vision-mission-card {
    background: #ffffff;
    padding: 50px 55px; /* Larger horizontal padding per image */
    border-radius: 20px;
    min-height: 340px; /* Reduced to match the screenshot aspect ratio better */
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.vision-mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.vm-card-icon {
    font-size: 38px;
    color: #f2723a; /* Exact soft orange icon color from image */
    margin-bottom: 15px; /* Spacing in image is quite tight here */
}

.vm-card-title {
    font-size: 36px; /* Reduced from 44 to match the image's proportions to text better */
    font-weight: 700;
    margin-bottom: 25px;
    color: #000; /* Image maroon color */
    font-family: 'Fredoka', 'DM Sans', sans-serif;
}

.vm-card-text {
    font-size: 16px; /* Matched the image text scale */
    line-height: 1.8;
    color: #7a7a7a; /* Grey color from image */
    font-weight: 400;
    font-family: 'DM Sans', 'Poppins', sans-serif;
    margin: 0;
}

/* --- WHY CHOOSE US --- */
.bg-light-section {
    background-color: #f9fbfd;
}

.benefit-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.benefit-card:hover {
    border-color: #f25334;
    box-shadow: 0 15px 30px rgba(242, 83, 52, 0.1);
    transform: translateY(-5px);
}

.benefit-card:hover .benefit-card__icon {
    transform: scale(1.15) rotate(5deg);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-card__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 25px;
    color: #fff;
    transition: all 0.3s ease;
}

.icon-bg-1 { background-color: #f25334; }
.icon-bg-2 { background-color: #75c137; }
.icon-bg-3 { background-color: #2390ff; }
.icon-bg-4 { background-color: #ffaa23; }
.icon-bg-5 { background-color: #e91e63; }
.icon-bg-6 { background-color: #26a6a1; }

.benefit-card__title {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2235;
}

.benefit-card__text {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* --- HOLISTIC GROWTH --- */
.holistic-growth {
    background: #fff;
}

.holistic-growth__text {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.holistic-growth__image-wrapper {
    position: relative;
}

.holistic-growth__image-wrapper .main-img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.floating-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    z-index: 2;
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-content i {
    color: #e91e63;
    font-size: 20px;
}

.badge-content span {
    font-weight: 700;
    color: #1f2235;
    font-size: 16px;
}

@media (max-width: 991px) {
    .vision-card { padding: 40px 30px; }
    .floating-badge { right: 20px; }
}

/* Responsive */
@media (max-width: 991px) {
	.about-section {
		padding: 70px 0;
	}

	.about-section__content {
		padding-left: 0;
		margin-top: 10px;
	}

	.about-section__title {
		font-size: 34px;
	}

	.about-section__image img {
		min-height: auto;
	}
}

@media (max-width: 575px) {
	.about-section__title {
		font-size: 28px;
	}

	.about-section__text {
		font-size: 15px;
		line-height: 1.8;
	}

	.about-highlight-box {
		width: 100%;
		text-align: center;
	}

	.about-section__bottom {
		padding: 24px 20px;
	}
}