/* Kid-friendly About page styling */
.about-kids-section {
    background: linear-gradient(135deg, #f9f9ff 0%, #eef7ff 100%);
    padding: 0px 0 60px;
    position: relative;
    overflow: hidden;
}

.about-header-kids {
    background: linear-gradient(135deg, #2c1f55 0%, #C7CEEA 100%);
    padding: 40px 0 40px;
    position: relative;
    overflow: hidden;
}

.about-header-kids .container {
    position: relative;
    z-index: 2;
}

.about-header-kids h1 {
    color: #ffaa01;
    font-size: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}


.about-header-kids .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.about-header-kids .breadcrumb-item {
    color: #fff;
    font-size: 16px;
}

.about-header-kids .breadcrumb-item a {
    color: #fff;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.about-header-kids .breadcrumb-item a:hover {
    opacity: 1;
    text-decoration: none;
}

.about-header-kids .breadcrumb-item.active {
    color:#e49a06;
}

.about-header-kids .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
    opacity: 0.8;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.cloud-1 {
    width: 200px;
    height: 100px;
    top: -30px;
    left: 10%;
    animation: cloud-move 20s linear infinite;
}

.cloud-2 {
    width: 300px;
    height: 150px;
    bottom: -50px;
    right: 15%;
    animation: cloud-move 25s linear infinite reverse;
}

.cloud-3 {
    width: 150px;
    height: 75px;
    top: 40%;
    left: 30%;
    animation: cloud-move 18s linear infinite;
}

@keyframes cloud-move {
    0% {
        transform: translateX(-100px);
    }
    100% {
        transform: translateX(calc(100vw + 100px));
    }
}

.section-title-kids {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-kids h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 15px;
    font-size: 36px;
    color: #2b1e55;
}

.section-title-kids h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, #FF9AA2, #FFDAC1, #E2F0CB, #B5EAD7, #C7CEEA);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    background: #ffaa01;
}

.section-title-kids p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-card {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    background: #fff;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-card-header {
    height: 10px;
    width: 100%;
}

.about-card-1 .about-card-header {
    background: #FF9AA2; /* Soft red */
}

.about-card-2 .about-card-header {
    background: #FFDAC1; /* Soft orange */
}

.about-card-3 .about-card-header {
    background: #E2F0CB; /* Soft green */
}

.about-card-4 .about-card-header {
    background: #B5EAD7; /* Mint */
}

.about-card-content {
    padding: 25px;
}

.about-card-title {
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.about-card-title h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.about-card-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 20px;
    width: 5px;
}

.about-card-1 .about-card-title::before {
    background: #FF9AA2;
}

.about-card-2 .about-card-title::before {
    background: #FFDAC1;
}

.about-card-3 .about-card-title::before {
    background: #E2F0CB;
}

.about-card-4 .about-card-title::before {
    background: #B5EAD7;
}

.about-card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.about-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -30px;
    right: 20px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-card-1 .about-icon {
    background: #FF9AA2;
}

.about-card-2 .about-icon {
    background: #FFDAC1;
}

.about-card-3 .about-icon {
    background: #E2F0CB;
}

.about-card-4 .about-icon {
    background: #B5EAD7;
}

.about-icon i {
    font-size: 24px;
    color: #fff;
}

.who-we-are-section {
    position: relative;
    padding: 60px 0;
}

.who-we-are-content {
    position: relative;
    z-index: 2;
}

.who-we-are-title {
    margin-bottom: 25px;
}

.who-we-are-title h2 {
    font-size: 36px;
    color: #2b1e56;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.who-we-are-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background: #ffaa01;
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.who-we-are-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.who-we-are-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.who-we-are-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.who-we-are-image:hover img {
    transform: scale(1.05);
}

.vision-mission-section {
    position: relative;
    padding: 60px 0;
    background: #f9f9ff;
}

.vision-mission-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vision-mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.vision-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
}

.vision-card::before {
    background: #C7CEEA;
}

.mission-card::before {
    background: #FFDAC1;
}

.values-card::before {
    background: #E2F0CB;
}

.vision-mission-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.vision-mission-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.values-section {
    position: relative;
    padding: 60px 0;
}

.values-title {
    margin-bottom: 40px;
}

.values-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.values-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: #E2F0CB;
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.values-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.values-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.05;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #FF9AA2;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    top: 20%;
    right: 10%;
    width: 150px;
    height: 150px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: #FFDAC1;
    animation: float 10s ease-in-out infinite;
}

.shape-3 {
    bottom: 15%;
    left: 15%;
    width: 80px;
    height: 80px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: #E2F0CB;
    animation: float 7s ease-in-out infinite;
}

.shape-4 {
    bottom: 10%;
    right: 5%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #B5EAD7;
    animation: float 9s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.animate-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-element.show {
    opacity: 1;
    transform: translateY(0);
}

.btn-kids {
    display: inline-block;
    padding: 12px 30px;
    background: #ffaa01;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 154, 162, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-kids:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 154, 162, 0.4);
    color: #fff;
    text-decoration: none;
}

.btn-kids::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #9275db, #2c1f55);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-kids:hover::before {
    left: 0;
}

/* Responsive styles */
@media (max-width: 991px) {
    .about-header-kids h1 {
        font-size: 36px;
    }
    
    .who-we-are-image {
        margin-top: 30px;
    }
    
    .vision-mission-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .about-header-kids h1 {
        font-size: 30px;
    }
    
    .who-we-are-title h2,
    .values-title h2,
    .section-title-kids h2 {
        font-size: 28px;
    }
    
    .about-card {
        margin-bottom: 40px;
    }
}
