body {
    margin: 0;
    /* font-family: 'Display', sans-serif; */
    font-family: Verdana, Geneva, Tahoma, sans-serif !important;
    color: white;
    background-color: #000000;
    scroll-behavior: smooth;
    /* Smooth scrolling */
}

.index-hero {
    position: relative;
    overflow: hidden;
    /* To hide overflow of the images */
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: fadeIn 1.5s ease-in;
    /* Animation */
}

.index-hero .index-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/img/Health and Wellness.png') no-repeat center center fixed;
    background-size: cover;
    filter: blur(3px);
    /* Blur effect */
    z-index: 0;
    /* Send the background behind content */
}

.index-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    z-index: 1;
    /* Ensure it sits above the background but below content */
}
@media screen and (max-width:720px) {
    .index-hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        /* Dark overlay */
        z-index: 1;
        /* Ensure it sits above the background but below content */
    }
    
}

.index-hero-content {
    position: relative;
    /* Position the content on top of the blurred image */
    z-index: 2;
    /* Bring the content above the background */
    padding: 20px;
    /* Add padding */
    transform: scale(0.8);
    bottom: 50px;
    /* Start scaled down */
    animation: slideIn 1s forwards;
    /* Animate to full size */
}

.index-logo {
    width: 200px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
    /* Logo bounce */
}

.index-hero h1 {
    color: #fff;
    /* Change to white for better visibility */
    font-size: 40px;
    /* Increased size */
    margin: 10px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    /* Text shadow */
    animation: slideIn 1s;
    /* Animation */
}

.index-hero p {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: slideIn 1.2s;
}

.cta {
    padding: 15px 30px;
    background: #db5919;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    /* Transition for button */
    border-radius: 5px;
    /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Add shadow */
}

.cta:hover {
    /* Darken the button color on hover */
    transform: scale(1.05);
    /* Button grow effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    /* Intensify shadow on hover */
}

.index-story,
.features {

    padding: 50px 20px;
    text-align: center;
    animation: fadeInUp 1s;
    /* Animation */
}

.index-story {
    display: flex;
    flex-direction: column;
    
    align-content: center;
    justify-items: center;
}

.index-story p {
    width: 100%;
}

@media screen and (max-width:600px) {
    .story p {
        width: 100%;
    }

}

.index-hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.index-hero-content {
    animation: fadeInScale 1s ease-in-out forwards;
    /* Use new animation */
}

[data-aos^=fade][data-aos^=fade] {
    opacity: 1;
    transition-property: opacity, transform;
}

/* Keyframes for animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

@keyframes slideIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes flipIn {
    from {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }

    to {
        opacity: 1;
        transform: perspective(400px) rotateY(0);
    }
}

.index-footer {
    background-color: #0c0c0c;
    padding: 20px 0;
    text-align: center;
    font-size: 0.875rem;
    width: 100%;
}

.index-footer .container-fluid {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.index-footer a {
    color: #fff;
    /* White text for links */
    text-decoration: none;
    /* Remove underline from links */
}

.index-footer a:hover {
    text-decoration: underline;
    /* Optional: Add underline on hover */
}

.index-footer .d-flex {
    display: flex;
    justify-content: space-between;
}

.index-footer .text-muted {
    font-size: 0.875rem;
}