/* Local Overrides for YogAdheera */

/* Ensure the header is clean since we removed the navbar ul */
.navbar-brand {
    padding: 20px 0;
}

.brand-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #f37021;
    letter-spacing: -0.5px;
}

/* Match the orange theme of Yogabandham */
.btn-gradient-magenta-orange {
    background: #e91e63 !important;
    border: none;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-gradient-magenta-orange:hover {
    background: #c2185b !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.home-hr::after {
    background-color: #f37021 !important;
}

.text-fast-blue {
    color: #f37021 !important;
}

/* Spacing and layout tweaks */
section {
    padding: 80px 0;
}

.bg-very-light-desert-storm {
    background-color: #faf9f6;
}

.feature-box.another-benifit {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.upcoming-block {
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.footer-dark {
    background-color: #232323 !important;
}

/* Floating Actions */
.sticky-faq {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
}

.section-link.whatsapp {
    background-color: #25d366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Premium Light Orange Background */
.bg-light-orange {
    background-color: #fff6f0 !important;
}

/* Redesigned "What your child will learn" Section */
:root {
    --theme-orange: #f37021;
    --theme-magenta: #e91e63;
    --theme-yellow: #f5af19;
    --theme-blue: #2f80ed;
    --text-dark: #232323;
    --text-muted: #626262;
    --card-shadow-hover: 0 15px 35px rgba(243, 112, 33, 0.12);
}

.curriculum-badge {
    background: linear-gradient(135deg, rgba(243, 112, 33, 0.1), rgba(233, 30, 99, 0.1));
    color: var(--theme-magenta);
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    display: inline-block;
    border: 1px solid rgba(233, 30, 99, 0.15);
}

.learning-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media(min-width: 768px) {
    .learning-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.learning-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 22px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.learning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--theme-orange), var(--theme-magenta));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.learning-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(243, 112, 33, 0.15);
}

.learning-card:hover::before {
    opacity: 1;
}

.learning-card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 18px;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.6);
}

/* Dynamic colors for card icon wrappers based on item attributes */
.bg-soft-orange { background-color: #fff3eb; border: 1px solid rgba(243, 112, 33, 0.1); }
.bg-soft-magenta { background-color: #fff0f5; border: 1px solid rgba(233, 30, 99, 0.1); }
.bg-soft-yellow { background-color: #fffcf0; border: 1px solid rgba(245, 175, 25, 0.1); }
.bg-soft-blue { background-color: #ebf5ff; border: 1px solid rgba(47, 128, 237, 0.1); }

.learning-card:hover .learning-card-icon-wrapper {
    transform: scale(1.1) rotate(3deg);
}

.learning-card-content {
    flex-grow: 1;
}

.learning-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.learning-card:hover .learning-card-title {
    color: var(--theme-orange);
}

/* Image Column Creative presentation */
.image-creative-container {
    position: relative;
    padding: 30px;
    display: inline-block;
    width: 100%;
}

.image-bg-blob-1 {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(243, 112, 33, 0.12) 0%, rgba(243, 112, 33, 0) 70%);
    z-index: 1;
    border-radius: 50%;
    filter: blur(10px);
}

.image-bg-blob-2 {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.1) 0%, rgba(233, 30, 99, 0) 70%);
    z-index: 1;
    border-radius: 50%;
    filter: blur(15px);
}

.image-creative-frame {
    position: relative;
    z-index: 2;
    border-radius: 40px 15px 40px 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border: 6px solid #ffffff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-creative-frame:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 60px rgba(243, 112, 33, 0.18);
}

.image-creative-frame img {
    transition: transform 0.6s ease;
}

.image-creative-frame:hover img {
    transform: scale(1.04);
}

/* Floating Highlight Badge */
.highlight-floating-badge {
    position: absolute;
    left: 5px;
    bottom: 45px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    padding: 14px 22px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    max-width: 220px;
    animation: floatAnimation 4s ease-in-out infinite;
}

.badge-emoji {
    font-size: 26px;
    margin-right: 14px;
    line-height: 1;
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-info h6 {
    font-size: 14px !important;
    font-weight: 800 !important;
    color: var(--text-dark);
    margin: 0 0 2px 0 !important;
    line-height: 1.2 !important;
}

.badge-info p {
    font-size: 11px !important;
    color: var(--text-muted);
    margin: 0 !important;
    font-weight: 600;
    line-height: 1 !important;
}

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

@media(max-width: 991px) {
    .image-creative-container {
        margin-top: 40px;
        max-width: 500px;
    }
    .highlight-floating-badge {
        bottom: 25px;
        left: -15px;
    }
}
