* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #4a1fb8 0%, #2d0f7a 50%, #6b2fb8 100%);
    padding: 40px 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container > * {
    max-width: 750px;
    width: 100%;
}

/* Decorative Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(147, 112, 219, 0.7), rgba(186, 85, 211, 0.7));
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.6), rgba(255, 182, 193, 0.6));
    top: 80px;
    right: -120px;
    animation-delay: 7s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.6), rgba(75, 0, 130, 0.6));
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 14s;
}

.blob-4 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.5), rgba(255, 105, 180, 0.5));
    bottom: 100px;
    left: -80px;
    animation-delay: 3s;
}

/* Top Section - Logo and Academy Banner */
.top-section {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    animation: fadeInDown 0.8s ease-out;
}

.academy-banner {
    flex: 1;
    background: white;
    padding: 20px 35px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 5px 20px rgba(255, 255, 255, 0.1) inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 300px;
}

.academy-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 8px 25px rgba(255, 255, 255, 0.15) inset;
}

.academy-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.academy-tagline {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

/* Header Section - 11+ Preparation Banner */
.header-section {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

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

.logo-circle {
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 5px 15px rgba(255, 255, 255, 0.1) inset;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    padding: 15px;
}

.logo-circle:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 5px 15px rgba(255, 255, 255, 0.2) inset;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-banner {
    width: 100%;
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 50%, #ffc0cb 100%);
    padding: 20px 35px 20px 25px;
    border-radius: 15px 80px 80px 15px;
    border: 4px solid rgba(74, 31, 184, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 5px 20px rgba(255, 20, 147, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%);
}

.header-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.header-banner::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 30px solid #ffc0cb;
    z-index: 2;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.header-banner:hover {
    transform: translateX(3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 8px 25px rgba(255, 20, 147, 0.4);
}

.header-banner h1 {
    color: white;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.3;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* Main Content Section */
.main-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.left-content {
    flex: 1;
    min-width: 280px;
}

.main-heading {
    color: white;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 30px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.heading-line {
    display: inline-block;
    animation: slideInLeft 0.6s ease-out both;
}

.heading-line:nth-child(1) { animation-delay: 0.3s; }
.heading-line:nth-child(2) { animation-delay: 0.4s; }
.heading-line:nth-child(3) { animation-delay: 0.5s; }
.heading-line:nth-child(4) { animation-delay: 0.6s; }

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

.features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.icon {
    font-size: 32px;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.feature-item:hover .icon {
    transform: scale(1.2) rotate(10deg);
}

.feature-text {
    color: white;
    font-size: 28px;
    font-weight: 900;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-text {
    transform: translateX(5px);
}

/* Call to Action Starburst */
.call-to-action {
    position: relative;
    flex-shrink: 0;
}

.starburst {
    position: relative;
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
    clip-path: polygon(
        50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.6), 0 0 60px rgba(255, 20, 147, 0.4);
    transition: transform 0.3s ease;
}

.starburst:hover {
    transform: scale(1.05);
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(255, 20, 147, 0.6), 0 0 60px rgba(255, 20, 147, 0.4);
    }
    50% {
        box-shadow: 0 20px 50px rgba(255, 20, 147, 0.8), 0 0 80px rgba(255, 20, 147, 0.6);
    }
}

.cta-content {
    text-align: center;
    padding: 40px;
    z-index: 10;
}

.cta-text {
    color: white;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 10px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
}

.phone-number {
    color: white;
    font-size: 20px;
    font-weight: 900;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.phone-number:hover {
    transform: scale(1.05);
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.5);
}

/* Footer Section */
.footer-section {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    margin-top: 30px;
}

.bodhx-text {
    color: #ff1493;
    transition: transform 0.3s ease;
    display: inline-block;
}

.academy-text {
    color: #8b4fb8;
    transition: transform 0.3s ease;
    display: inline-block;
}

.academy-banner:hover .bodhx-text {
    transform: translateX(-5px);
}

.academy-banner:hover .academy-text {
    transform: translateX(5px);
}

.building-text {
    color: #ff1493;
}

.knowledge-text {
    color: #8b4fb8;
    font-weight: 800;
}

.contact-info {
    text-align: center;
}

.contact-info p {
    color: white;
    font-size: 18px;
    margin: 15px 0;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
}

.phone-link,
.address {
    font-weight: 600;
}

.contact-info .link {
    color: white;
    font-weight: 900;
    text-decoration: none;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.contact-info .link:hover {
    color: #ffc0cb;
    border-bottom-color: #ffc0cb;
    transform: translateY(-2px);
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .header-banner h1 {
        font-size: 46px;
    }
    
    .main-heading {
        font-size: 52px;
    }
    
    .feature-text {
        font-size: 40px;
    }
    
    .starburst {
        width: 360px;
        height: 360px;
    }
}

@media (max-width: 1024px) {
    .logo-circle {
        width: 170px;
        height: 170px;
    }
    
    .logo-b, .logo-x {
        font-size: 70px;
    }
    
    .logo-name {
        font-size: 26px;
    }
    
    .header-banner {
        padding: 30px 45px;
        min-width: 380px;
    }
    
    .header-banner h1 {
        font-size: 40px;
    }
    
    .main-heading {
        font-size: 46px;
    }
    
    .feature-text {
        font-size: 36px;
    }
    
    .icon {
        font-size: 42px;
    }
    
    .starburst {
        width: 320px;
        height: 320px;
    }
    
    .cta-text {
        font-size: 32px;
    }
    
    .phone-number {
        font-size: 28px;
    }
    
    .footer-title {
        font-size: 48px;
    }
    
    .footer-tagline {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .top-section {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .logo-circle {
        width: 100px;
        height: 100px;
        padding: 10px;
    }
    
    .academy-banner {
        padding: 12px 20px;
        min-width: auto;
    }
    
    .academy-title {
        font-size: 20px;
        margin-bottom: 5px;
    }
    
    .academy-tagline {
        font-size: 12px;
    }
    
    .header-section {
        margin-bottom: 30px;
    }
    
    .header-banner {
        border-radius: 50px;
        padding: 15px 25px;
    }
    
    .header-banner h1 {
        font-size: 20px;
    }
    
    .main-content {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .left-content {
        min-width: auto;
        width: 100%;
    }
    
    .main-heading {
        font-size: 24px;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .features {
        align-items: stretch;
        gap: 12px;
    }
    
    .feature-item {
        justify-content: center;
        padding: 10px 15px;
    }
    
    .feature-text {
        font-size: 18px;
    }
    
    .icon {
        font-size: 24px;
    }
    
    .starburst {
        width: 240px;
        height: 240px;
    }
    
    .cta-content {
        padding: 25px;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .phone-number {
        font-size: 15px;
    }
    
    .contact-info p {
        font-size: 14px;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 25px 12px;
    }
    
    .top-section {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .logo-circle {
        width: 80px;
        height: 80px;
        padding: 8px;
    }
    
    .academy-banner {
        padding: 10px 15px;
    }
    
    .academy-title {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .academy-tagline {
        font-size: 10px;
    }
    
    .header-section {
        margin-bottom: 25px;
    }
    
    .header-banner {
        padding: 12px 20px;
    }
    
    .header-banner h1 {
        font-size: 16px;
    }
    
    .main-content {
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .main-heading {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .features {
        gap: 10px;
    }
    
    .feature-item {
        padding: 8px 12px;
        gap: 10px;
    }
    
    .icon {
        font-size: 20px;
    }
    
    .feature-text {
        font-size: 15px;
    }
    
    .starburst {
        width: 220px;
        height: 220px;
    }
    
    .cta-content {
        padding: 20px;
    }
    
    .cta-text {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .phone-number {
        font-size: 13px;
    }
    
    .contact-info p {
        font-size: 11px;
        margin: 8px 0;
    }
    
    .blob {
        filter: blur(60px);
    }
    
    .blob-1, .blob-2, .blob-3, .blob-4 {
        width: 200px;
        height: 200px;
    }
}

/* Smooth scrolling and performance optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .blob {
        display: none;
    }
    
    .container {
        background: white;
        color: black;
    }
}
