/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    background: linear-gradient(135deg,  #4b2859 0%,  #814898 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    padding: 0;
    position: relative;
    z-index: 10;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #61b93f, #4a9c2f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(97, 185, 63, 0.3);
    animation: pulse 2s infinite;
    overflow: hidden;
}

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

.logo-text h1 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.logo-text span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.register-btn {
    background: linear-gradient(135deg, #61b93f, #4a9c2f);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(97, 185, 63, 0.3);
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(97, 185, 63, 0.4);
}

/* Main Content */
.main-content {
    padding: 60px 0;
    position: relative;
    z-index: 5;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 70vh;
}

/* Left Content */
.left-content {
    animation: slideInLeft 1s ease-out;
}

.hero-content {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.main-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
    height: 7.7rem;
    overflow: hidden;
}

.sub-heading {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 300px;
}

.cta-btn {
    background: linear-gradient(135deg, #61b93f, #4a9c2f);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(97, 185, 63, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(97, 185, 63, 0.4);
}

.provider-btn {
    background: linear-gradient(135deg, #4b2859, #3a1f45);
    box-shadow: 0 8px 25px rgba(75, 40, 89, 0.3);
}

.provider-btn:hover {
    box-shadow: 0 15px 40px rgba(75, 40, 89, 0.4);
}

/* Right Content */
.right-content {
    animation: slideInRight 1s ease-out;
}

.image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.wellness-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

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

.image-placeholder {
    font-size: 80px;
    color: #64748b;
    animation: float 3s ease-in-out infinite;
}

.overlay-image {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #61b93f, #458e28);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(18, 18, 18, 0.3);
    animation: float 3s ease-in-out infinite reverse;
}

.buddha-placeholder {
    font-size: 50px;
    color: white;
}

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

.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #61b93f;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: float 4s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

/* Background Elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 20%;
    animation-delay: 4s;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .main-heading {
        font-size: 2.5rem;
        height: 5.5rem;
    }
    
    .main-image {
        width: 300px;
        height: 300px;
    }
    
    .wellness-image {
        width: 100%;
        height: 100%;
    }
    
    .overlay-image {
        width: 80px;
        height: 80px;
        bottom: -20px;
        right: 80px;
    }
    
    .buddha-placeholder {
        font-size: 30px;
    }
    
    /* .floating-elements {
        display: none;
    } */
    .element-2 {
        right: 5%;
        top: 40%;
    }
    .element-3 {
        bottom: 10%;
        left: 10%;
    }
    .cta-buttons {
        max-width: 100%;
    }
    .circle-3 {
        left: 65%;
        top: 70%;
    }
}

@media (max-width: 480px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    .logo {
        height: 80px;
    }
    .main-heading {
        font-size: 2rem;
        height: 4.4rem;
    }
    
    .main-image {
        width: 250px;
        height: 250px;
    }
    
    .wellness-image {
        width: 100%;
        height: 100%;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .main-image {
        width: 600px;
        height: 600px;
    }
    
    .overlay-image {
        width: 180px;
        height: 180px;
        bottom: -50px;
        right: -50px;
        background: linear-gradient(135deg,  rgb(97, 185, 63), #458e28);
        box-shadow: 0 10px 30px rgba(97, 185, 63, 0.7);
    }
    
    .buddha-placeholder {
        font-size: 60px;
    }
    
    .floating-element {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
}

/* Extra Small Device Styles */
@media (max-width: 374px) {
    .image-placeholder {
        font-size: 50px;
    }
    
    .buddha-placeholder {
        font-size: 25px;
    }
    
    .floating-element {
        font-size: 16px;
        width: 40px;
        height: 40px;
    }
    
    .main-heading {
        font-size: 1.8rem;
        height: 4rem;
    }
    
    .sub-heading {
        font-size: 1rem;
    }
    
    .cta-btn {
        font-size: 14px;
        padding: 15px 25px;
    }
    
    .register-btn {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .logo-text h1 {
        font-size: 24px;
    }
    
    .logo-text span {
        font-size: 12px;
    }
} 