body {
    background: linear-gradient(to bottom, #dce8fa, #ffffff);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    position: relative;
}

.container {
    margin: 50px auto;
    padding: 3rem 4rem;
    background: white;
    border-radius: 20px;
    box-shadow: 4px 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.havan-hero {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%) rotate(-8deg);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.3;
    z-index: 0;
    filter: brightness(1.15) saturate(1.3) blur(0.5px);
    box-shadow: 0 0 60px rgba(0, 123, 255, 0.2);
    animation: float 8s ease-in-out infinite;
}

.havan-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0) rotate(-8deg);
    }

    50% {
        transform: translateX(-50%) translateY(-15px) rotate(-5deg);
    }
}

.havan-heading {
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    color: #007bff;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
    border-left: 5px solid #007bff;
    padding-left: 10px;
    z-index: 1;
    position: relative;
}

.havan-list {
    margin-left: 1.5rem;
    margin-bottom: 2.5rem;
    color: #555;
    line-height: 1.8;
    z-index: 1;
    position: relative;
}

.havan-list li::before {
    content: "🌿";
    margin-right: 0.5rem;
}

.intro {
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    z-index: 1;
    position: relative;
}


/*  Back-Button */

.back-btn {
    padding: 15px 40px;
    background: transparent;
    color: #0089ff; 
    border: 2px solid #0061CB;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    margin-left: 24px;
}

.back-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #0089ff;
    transition: 0.4s ease-in-out;
    z-index: 2; 
}

.back-btn::after {
    content: '←';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0); 
    color: white;
    font-size: 24px;
    z-index: 3; 
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
}

.back-btn:hover {
    color: transparent; 
}

.back-btn:hover::before {
    height: 100%;
}

.back-btn:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
    transition-delay: 0.2s;
}

.back-btn:active {
    transform: scale(0.98);
}


.side-mantra {
    position: absolute;
    top: 45%;
    right: 60px;
    font-size: 62px;
    font-weight: 700;
    color: rgba(0, 90, 187, 0.575);
}

@media (max-width: 992px) {
    .side-mantra {
        display: none;
    }

    .havan-list {
        margin-left: 0;
    }
    
    .container {
        padding: 3rem;
        margin: auto;
    }
}