/* Sliverline Kids Section Styles */
.sliverline-kids-section {
    position: relative;
    padding: 10px 0;
    background: linear-gradient(135deg,rgb(247, 247, 247) 0%,rgb(247, 247, 247) 100%);
   /* background: linear-gradient(135deg,rgb(160, 208, 255) 0%,rgb(129, 219, 255) 100%);*/
    overflow: hidden;
}

.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}



.masa-character-topright {
    position: absolute;
    width: 294px;
    height: 320px;
    background: url(../images/monkey.png) no-repeat center center;
    background-size: contain;
    right: 45%;
    top: -26px;
    z-index: 2;
} 


.floating-shapes span {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 6s infinite;
}

.floating-shapes span:nth-child(1) { width: 20px; height: 20px; left: 10%; animation-delay: 0s; }
.floating-shapes span:nth-child(2) { width: 30px; height: 30px; left: 30%; animation-delay: 2s; }
.floating-shapes span:nth-child(3) { width: 25px; height: 25px; left: 50%; animation-delay: 4s; }
.floating-shapes span:nth-child(4) { width: 15px; height: 15px; left: 70%; animation-delay: 6s; }

.section-title {
    font-size: 3.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
    font-family: 'Comic Sans MS', cursive;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.sliverline-kids-img {
    position: relative;
    padding: 20px;
    transition: transform 0.3s ease;
}

.sliverline-kids-img img {
    width: 400px;
    border-radius: 20px;
    left: 25%;
}

.playful-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}



.sliverline-kids-text {
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.rainbow-text {
    background: linear-gradient(to right, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.fun-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #000;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    border: none;
    color: white;
}

.btn-secondary {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    border: none;
    color: white;
}

/* Animations */
@keyframes walk {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(calc(100vw + 100px)); }
}

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

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bounce-in {
    animation: bounceIn 1s ease;
}

.slide-in {
    animation: slideIn 1s ease;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes slideIn {
    0% { transform: translateX(-100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

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

.btn-bounce:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.why-love-us-section {
    position: relative;
    background: linear-gradient(120deg, #ffe0c3 0%, #a7ffeb 100%);
    padding: 70px 0 60px 0;
    overflow: hidden;
    border-radius: 40px;
    margin: 60px 0 0 0;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.10);
}
.cartoon-svg-left {
    position: absolute;
    top: -30px;
    left: -30px;
    z-index: 1;
    animation: floatSun 4s ease-in-out infinite;
}
.cartoon-svg-right {
    position: absolute;
    top: -40px;
    right: -40px;
    z-index: 1;
    animation: floatBook 5s ease-in-out infinite;
}
@keyframes floatSun {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(18px); }
}
@keyframes floatBook {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
.love-us-content {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.95);
    border-radius: 30px;
    padding: 40px 30px 30px 30px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
    animation: bounceIn 1.2s;
}
.love-us-content .section-title {
    font-size: 2.7rem;
    margin-bottom: 18px;
    text-shadow: 1px 2px 8px #fff7c2;
}
.love-us-content h3.rainbow-text {
    font-size: 1.7rem;
    margin-top: 30px;
    margin-bottom: 12px;
}
.love-us-list, .programs-list {
    list-style: none;
    padding: 0 0 0 10px;
    margin-bottom: 0;
}
.love-us-list li, .programs-list li {
    font-size: 1.15rem;
    margin-bottom: 10px;
    padding-left: 0.5em;
    color: #000;
    background: rgba(255,255,255,0.7);
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.04);
    display: flex;
    align-items: center;
    min-height: 38px;
    transition: background 0.3s;
}
.love-us-list li:hover, .programs-list li:hover {
    background: #fff9c4;
}
.love-us-list li::before {
    content: '🌟';
    margin-right: 10px;
    font-size: 1.2em;
    animation: twinkle 2s infinite;
}
@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.programs-list li::before {
    content: '🎈';
    margin-right: 10px;
    font-size: 1.2em;
    animation: bounceBalloon 2.5s infinite;
}
@keyframes bounceBalloon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}
.animated-bounce {
    animation: bounceIn 1.2s;
}
@keyframes bounceIn {
    0% { transform: scale(0.7); opacity: 0; }
    60% { transform: scale(1.05); opacity: 1; }
    80% { transform: scale(0.95); }
    100% { transform: scale(1); opacity: 1; }
}
@media (max-width: 991px) {
    .cartoon-svg-left, .cartoon-svg-right {
        display: none;
    }
    .love-us-content {
        padding: 25px 10px 20px 10px;
    }
    .why-love-us-section {
        padding: 40px 0 30px 0;
        border-radius: 20px;
    }
}

.user-image-placeholder {
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: popIn 1.2s;
}
.fun-frame {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 6px solid #FFD93B;
    box-shadow: 0 4px 24px rgba(255, 217, 59, 0.18);
    background: #fffbe7;
    object-fit: cover;
    margin-bottom: 8px;
    animation: frameBounce 2.5s infinite;
}
.frame-stars {
    display: flex;
    gap: 4px;
    font-size: 1.3em;
    color: #FFD93B;
    animation: twinkle 2s infinite;
}
.cloud-svg {
    position: absolute;
    left: 60px;
    top: 80px;
    opacity: 0.7;
    animation: cloudMove 8s linear infinite;
}
@keyframes cloudMove {
    0% { left: 60px; }
    50% { left: 120px; }
    100% { left: 60px; }
}
.balloon-svg {
    position: absolute;
    right: 30px;
    top: 160px;
    animation: balloonFloat 6s ease-in-out infinite;
}
@keyframes balloonFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}
@keyframes popIn {
    0% { transform: scale(0.5) translateX(-50%); opacity: 0; }
    100% { transform: scale(1) translateX(-50%); opacity: 1; }
}
@keyframes frameBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
@media (max-width: 991px) {
    .user-image-placeholder {
        position: static;
        transform: none;
        margin: 0 auto 20px auto;
        top: unset;
        left: unset;
    }
    .fun-frame {
        width: 90px;
        height: 90px;
    }
}

.fairy-tale-theme {
    background: linear-gradient(120deg, #e3f0ff 0%, #f8e1ff 100%);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.10);
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 80px;
}
.castle-svg {
    position: absolute;
    left: 40px;
    bottom: 0;
    z-index: 2;
    animation: castlePop 1.5s;
}
@keyframes castlePop {
    0% { transform: scale(0.7) translateY(60px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}
.rainbow-svg {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: rainbowShimmer 3s infinite linear;
}
@keyframes rainbowShimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3) drop-shadow(0 0 12px #fff176); }
}
.cloud-svg-fairy {
    position: absolute;
    z-index: 3;
    opacity: 0.85;
}
.cloud1 {
    left: 10%;
    top: 40px;
    animation: cloudDrift1 12s linear infinite;
}
.cloud2 {
    right: 8%;
    top: 90px;
    animation: cloudDrift2 14s linear infinite;
}
@keyframes cloudDrift1 {
    0% { left: 10%; }
    50% { left: 16%; }
    100% { left: 10%; }
}
@keyframes cloudDrift2 {
    0% { right: 8%; }
    50% { right: 14%; }
    100% { right: 8%; }
}
.unicorn-svg {
    position: absolute;
    right: 40px;
    bottom: 30px;
    z-index: 2;
    animation: unicornFloat 4s ease-in-out infinite;
}
@keyframes unicornFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}
.fairy-tale-theme .love-us-content {
    background: rgba(255,255,255,0.97);
    border-radius: 36px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
    padding: 50px 35px 35px 35px;
    position: relative;
    z-index: 10;
}
.fairy-tale-theme .section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 1px 2px 12px #fff7c2;
}
.fairy-tale-theme h3.rainbow-text {
    font-size: 1.7rem;
    margin-top: 30px;
    margin-bottom: 12px;
}
.fairy-tale-theme .love-us-list li, .fairy-tale-theme .programs-list li {
    background: rgba(255,255,255,0.8);
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.04);
    font-size: 1.15rem;
    margin-bottom: 10px;
    padding-left: 0.5em;
    min-height: 38px;
    display: flex;
    align-items: center;
    transition: background 0.3s;
}
.fairy-tale-theme .love-us-list li:hover, .fairy-tale-theme .programs-list li:hover {
    background: #f3e5f5;
}
.fairy-tale-theme .love-us-list li::before {
    content: '🦄';
    margin-right: 10px;
    font-size: 1.2em;
    animation: fairyTwinkle 2s infinite;
}
.fairy-tale-theme .programs-list li::before {
    content: '🏰';
    margin-right: 10px;
    font-size: 1.2em;
    animation: fairyBounce 2.5s infinite;
}
@keyframes fairyTwinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
@keyframes fairyBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}
@media (max-width: 991px) {
    .castle-svg, .rainbow-svg, .cloud-svg-fairy, .unicorn-svg {
        display: none;
    }
    .fairy-tale-theme .love-us-content {
        padding: 25px 10px 20px 10px;
    }
    .fairy-tale-theme {
        padding: 40px 0 30px 0;
        border-radius: 20px;
    }
}

.jungle-safari-theme {
    background: linear-gradient(120deg, #e0f7fa 0%, #a5d6a7 100%);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.10);
    position: relative;
    overflow: hidden;
    padding-top: 70px;
    padding-bottom: 20px;
}
.jungle-vines-svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: vinesSwing 5s ease-in-out infinite;
}
@keyframes vinesSwing {
    0%, 100% { transform: translateX(-50%) rotate(-2deg); }
    50% { transform: translateX(-50%) rotate(3deg); }
}
.jungle-animals-svg {
    position: absolute;
    left: 40px;
    bottom: 0;
    z-index: 3;
    display: flex;
    gap: 18px;
    align-items: flex-end;
}
.lion-svg {
    animation: animalPeek 4s infinite;
}
.monkey-svg {
    margin-left: -20px;
    animation: animalPeek 5s 1s infinite;
}
.elephant-svg {
    margin-left: -10px;
    animation: animalPeek 6s 2s infinite;
}
@keyframes animalPeek {
    0%, 100% { transform: translateY(0); }
    10% { transform: translateY(10px); }
    20% { transform: translateY(-8px); }
    30% { transform: translateY(0); }
}
.jungle-butterfly-svg {
    position: absolute;
    right: 60px;
    top: 80px;
    z-index: 4;
    animation: butterflyFlutter 7s infinite;
}
@keyframes butterflyFlutter {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    20% { transform: translateY(-20px) rotate(10deg); }
    40% { transform: translateY(-10px) rotate(-5deg); }
    60% { transform: translateY(-25px) rotate(8deg); }
    80% { transform: translateY(-5px) rotate(-8deg); }
}
.jungle-safari-theme .love-us-content {
    background: rgba(255,255,255,0.97);
    border-radius: 36px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
    padding: 50px 35px 35px 35px;
    position: relative;
    z-index: 10;
}
.jungle-safari-theme .section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 1px 2px 12px #b2dfdb;
}
.jungle-safari-theme h3.rainbow-text {
    font-size: 1.7rem;
    margin-top: 30px;
    margin-bottom: 12px;
}
.jungle-safari-theme .love-us-list li, .jungle-safari-theme .programs-list li {
    background: rgba(255,255,255,0.8);
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.04);
    font-size: 1.15rem;
    margin-bottom: 10px;
    padding-left: 0.5em;
    min-height: 38px;
    display: flex;
    align-items: center;
    transition: background 0.3s;
}
.jungle-safari-theme .love-us-list li:hover, .jungle-safari-theme .programs-list li:hover {
    background: #c8e6c9;
}
.jungle-safari-theme .love-us-list li::before {
    content: '👶';
    margin-right: 10px;
    font-size: 1.2em;
    animation: jungleTwinkle 2s infinite;
}
.jungle-safari-theme .programs-list li::before {
    content: '🐒';
    margin-right: 10px;
    font-size: 1.2em;
    animation: jungleBounce 2.5s infinite;
}
@keyframes jungleTwinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
@keyframes jungleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}
@media (max-width: 991px) {
    .jungle-vines-svg, .jungle-animals-svg, .jungle-butterfly-svg {
        display: none;
    }
    .jungle-safari-theme .love-us-content {
        padding: 25px 10px 20px 10px;
    }
    .jungle-safari-theme {
        padding: 40px 0 30px 0;
        border-radius: 20px;
    }
}

.back-to-school-section {
    background: #f8fafc;
    padding: 60px 0 40px 0;
    position: relative;
    overflow: hidden;
}
.background-object {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 700px;
    height: 700px;
    background: url('../images/bg-object.png') no-repeat center/contain;
    opacity: 0.18;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    filter: blur(2px);
}
.right-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px;
    position: relative;
}
.circle-bg {
    background: linear-gradient(135deg, #1de9b6 0%, #00bcd4 100%);
    border-radius: 50%;
    width: 420px;
    height: 420px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 64px 0 rgba(44, 62, 80, 0.18), 0 2px 8px 0 rgba(44, 62, 80, 0.10);
    margin: 0 auto;
    z-index: 2;
    animation: popIn 1.2s;
    overflow: visible;
    transition: box-shadow 0.3s, transform 0.3s;
}
.circle-bg:hover {
    box-shadow: 0 24px 80px 0 rgba(44, 62, 80, 0.22), 0 4px 16px 0 rgba(44, 62, 80, 0.13);
    transform: scale(1.03);
}
.circle-main-img {
    width: 420px;
    height: 420px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
    margin-bottom: 18px;
    background: #fff;
    border: 6px solid #fff;
    animation: imgFloat 3s ease-in-out infinite;
    display: block;
}
@keyframes imgFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}
.school-props {
    position: absolute;
    left: 0; right: 0; bottom: 18px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 3;
    gap: 10px;
}
.prop-books, .prop-blocks, .prop-numbers, .prop-openbooks {
    filter: drop-shadow(0 2px 8px rgba(44,62,80,0.10));
    border-radius: 12px;
    background-color: #fff;
    padding: 4px;
    transition: transform 0.2s;
}
.prop-books:hover, .prop-blocks:hover, .prop-numbers:hover, .prop-openbooks:hover {
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 4px 16px rgba(44,62,80,0.13);
}
.prop-books {
    width: 60px; height: 44px;
    background: url('../images/books.png') no-repeat center/contain;
    animation: popIn 1.5s 0.2s;
}
.prop-blocks {
    width: 50px; height: 50px;
    background: url('../images/blocks.png') no-repeat center/contain;
    animation: popIn 1.5s 0.4s;
}
.prop-numbers {
    width: 50px; height: 40px;
    background: url('../images/numbers.png') no-repeat center/contain;
    animation: popIn 1.5s 0.6s;
}
.prop-openbooks {
    width: 60px; height: 32px;
    background: url('../images/openbooks.png') no-repeat center/contain;
    animation: popIn 1.5s 0.8s;
}
.left-content {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    z-index: 2;
}
.choose-us-label {
    font-size: 1.3rem;
    color: #f06292;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}
.choose-arrow {
    vertical-align: middle;
    margin-left: 8px;
    animation: arrowWiggle 2s infinite;
}
@keyframes arrowWiggle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.features-headline {
    font-size: 2rem;
    color: #222;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0;
    font-family: 'Poppins', 'Comic Sans MS', cursive, sans-serif;
}
.features-desc {
    color: #000;
    font-size: 1.13rem;
    margin-bottom: 22px;
    font-family: 'Poppins', 'Comic Sans MS', cursive, sans-serif;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 28px 32px;
    margin-top: 18px;
}
.feature-item {
    max-width: 420px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255,255,255,0.85);
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.10);
    padding: 22px 18px 18px 18px;
    transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
    min-height: 110px;
    animation: popIn 1.2s;
    position: relative;
    overflow: hidden;
    border: 1.5px solid #e0f2f1;
}
.feature-item:hover {
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
    transform: translateY(-6px) scale(1.04);
    background: rgba(255,255,255,0.98);
    border-color: #1de9b6;
}
.feature-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.04);
    animation: iconBounce 2.5s infinite;
    background-color: #e0f7fa;
    border: 2px solid #b2ebf2;
    margin-top: 2px;
}

.feature-icon.arts::before {
    content: '\f1b3';  /* Font Awesome paint-brush icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 24px;
    color: #0984e3;
}

.feature-icon.lab::before {
    content: '\f0c3';  /* Font Awesome flask icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 24px;
    color: #0984e3;
}

.feature-icon.events::before {
    content: '\f073';  /* Font Awesome calendar icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 24px;
    color: #0984e3;
}

.feature-icon.special::before {
    content: '\f0eb';  /* Font Awesome lightbulb icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 24px;
    color: #0984e3;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}
.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
    font-family: 'Poppins', 'Comic Sans MS', cursive, sans-serif;
}
.feature-item p {
    font-size: 1.05rem;
    color: #000;
    margin-bottom: 0;
    font-family: 'Poppins', 'Comic Sans MS', cursive, sans-serif;
}
@media (max-width: 991px) {
    .circle-bg { width: 320px; height: 320px; }
    .right-visual { min-height: 340px; }
    .features-grid { grid-template-columns: 1fr; }
    .left-content { padding: 18px 0; }
    .features-headline { font-size: 1.3rem; }
    .feature-item { max-width: 100%; }
}
@media (max-width: 767px) {
    .circle-bg { width: 220px; height: 220px; }
    .right-visual { min-height: 200px; }
    .features-headline { font-size: 1.1rem; }
    .left-content { padding: 8px 15px; }
}

.back-to-school-section, .choose-us-label, .features-headline, .features-desc, .feature-item h4, .feature-item p {
    font-family: inherit !important;
} 

.masa-character-program {
    position: absolute;
    width: 360px;
    height: 330px;
    background: url(../images/monkey.png) no-repeat center center;
    background-size: contain;
    right: 85%;
    top: -120px;
    z-index: 2;
}

.masa-character-program-right{
    position: absolute;
    width: 360px;
    height: 330px;
    background: url(../images/monkey.png) no-repeat center center;
    background-size: contain;
    left: 85%;
    top: -120px;
    z-index: 2;
    transform: scaleX(-1);
}

/* Adventure Awaits Section Styles */
.adventure-awaits-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #fff6e5 0%, #e3f2fd 100%);
    overflow: hidden;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-star, .floating-cloud {
    position: absolute;
    font-size: 2rem;
    animation: float 6s infinite ease-in-out;
}

.star1 { top: 10%; left: 10%; animation-delay: 0s; }
.star2 { top: 20%; right: 15%; animation-delay: 2s; }
.star3 { bottom: 15%; left: 20%; animation-delay: 4s; }
.cloud1 { top: 30%; left: 5%; animation-delay: 1s; }
.cloud2 { bottom: 25%; right: 10%; animation-delay: 3s; }

.adventure-content {
    position: relative;
    z-index: 2;
}

.adventure-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.title-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.adventure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.grid-item {
    perspective: 1000px;
}

.activity-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.activity-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}

.activity-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.activity-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: -50px auto 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
    position: relative;
    z-index: 2;
}

.activity-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.activity-content p {
    font-size: 1rem;
    color: #000;
    margin: 0;
    line-height: 1.5;
}

.adventure-message {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.message-text {
    font-size: 1.3rem;
    color: #000;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.adventure-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.adventure-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.cta-icon {
    font-size: 1.4rem;
    animation: rocket 2s infinite;
}

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

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes rocket {
    0% { transform: translateX(0); }
    50% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

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

@media (max-width: 768px) {
    .adventure-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .adventure-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .activity-image {
        height: 180px;
    }
    
    .message-text {
        font-size: 1.1rem;
    }
    
    .adventure-cta {
        font-size: 1.1rem;
        padding: 12px 25px;
    }
}

/* Amazing Team Section Styles */
.amazing-team {
    position: relative;
    padding: 0px 0;
    background: linear-gradient(135deg, #fff0f5 0%, #e6f3ff 100%);
    overflow: hidden;
}

.team-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-hearts span,
.floating-stars span {
    position: absolute;
    font-size: 1.8rem;
    animation: float 6s infinite ease-in-out;
}

.floating-hearts span:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.floating-hearts span:nth-child(2) { top: 25%; right: 15%; animation-delay: 2s; }
.floating-hearts span:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 4s; }
.floating-hearts span:nth-child(4) { bottom: 30%; right: 10%; animation-delay: 6s; }

.floating-stars span:nth-child(1) { top: 40%; left: 5%; animation-delay: 1s; }
.floating-stars span:nth-child(2) { top: 60%; right: 8%; animation-delay: 3s; }
.floating-stars span:nth-child(3) { bottom: 40%; left: 15%; animation-delay: 5s; }

.team-image-wrapper {
    position: relative;
    padding: 20px;
}

.team-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.team-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

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

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

.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: pulse 3s infinite;
}

.circle-1 {
    width: 100px;
    height: 100px;
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    bottom: -15px;
    right: -15px;
    animation-delay: 1s;
}

.circle-3 {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

.team-content {
    padding: 30px;
}

.team-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.title-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.team-intro {
    font-size: 1.2rem;
    color: #000;
    line-height: 1.8;
    margin-bottom: 30px;
}

.team-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.feature-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-content p {
    font-size: 1.1rem;
    color: #000000;
    margin: 0;
    line-height: 1.6;
}

.team-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-text {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.team-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.team-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.cta-icon {
    font-size: 1.4rem;
    animation: target 2s infinite;
}

@keyframes target {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@media (max-width: 991px) {
    .team-title {
        font-size: 2rem;
        justify-content: center;
    }
    
    .team-content {
        padding: 20px 0;
    }
    
    .team-image {
        transform: none;
        margin-bottom: 30px;
    }
    
    .team-image:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .amazing-team {
        padding: 60px 0;
    }
    
    .team-title {
        font-size: 1.8rem;
    }
    
    .team-intro {
        font-size: 1.1rem;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
    }
    
    .feature-content p {
        font-size: 1rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .team-cta-button {
        font-size: 1.1rem;
        padding: 12px 25px;
    }
}

/* Contact Form Section Styles */
.contact-form-section {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, #fff6e5 0%, #e3f2fd 100%);
    overflow: hidden;
}

.contact-image-wrapper {
    position: relative;
    padding: 20px;
    animation: fadeInLeft 1.2s;
}

.contact-image {
    width: 100%;
    border-radius: 30px;
  
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.contact-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.10);
    position: relative;
    z-index: 2;
    animation: fadeInRight 1.2s;
}

.contact-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-intro {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.5;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 600;
}

.contact-form .form-control {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fff;
}

.contact-form .form-control:focus {
    border-color: #4ecdc4;
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
    outline: none;
}

.contact-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%232c3e50' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.btn-icon {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

/* Floating Elements for Contact Form */
.contact-form-section::before {
    content: '🎨';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 2.5rem;
    animation: float 6s infinite;
    opacity: 0.2;
}

.contact-form-section::after {
    content: '📚';
    position: absolute;
    bottom: 10%;
    right: 5%;
    font-size: 2.5rem;
    animation: float 6s infinite reverse;
    opacity: 0.2;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 991px) {
    .contact-image-wrapper {
        margin-bottom: 30px;
    }
    
    .contact-image {
        transform: none;
    }
    
    .contact-image:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-intro {
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

