@font-face {
    font-family: 'Juana';
    src: url('../fonts/Juana/Demo_Fonts/Fontspring-DEMO-juana-blackit.otf') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: "Raleway", sans-serif;
  
}

hr {
   
    height: 1px; /* Adjust thickness */
    background-color: rgba(255, 255, 255, 0.3); /* Adjust color to match design */
    border: none; /* Remove default border */
    
}


.blogaccordion {
    background-color: #111;
    padding: 50px 10%;
    display: flex;
    justify-content: center;
    background-color: #111;
    color: white;
}

.content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* LEFT CONTENT */
.left-content {
    flex: 1;
    max-width: 60%;
}

.accordionheading {
    font-size: 60px;
    font-family: "Raleway", sans-serif;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

.juana {
    font-family: 'Juana', sans-serif;
    font-style: italic;
}

.accordion-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.accordiontext {
    font-size: 24px;
    flex: 1;
    font-weight: 400;
}

.arrowcontainer img {
    width: 30px;
    height: auto;
}

/* RIGHT CONTENT */
.right-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 40%;
    max-width: 400px;
}

/* IMAGE CONTAINER */
.image-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ensure all images are hidden initially except the first */
.hover-image {
    width: 100%;
    height: auto;
    position: absolute;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}



/* First image should be visible by default */
.hover-image:first-child {
    opacity: 1;
}

/* EXPLORE NOW BUTTON */
.explore-button {
    position: absolute;
    bottom: -45px;
    left: 15px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.explore-button:hover {
    background-color: white;
    color: black;
}

.thankyou{
    font-size: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .left-content {
        max-width: 100%;
    }

    .right-content {
        display: none;
    }

    .image-container img {
        width: 80%;
    }

    .explore-button {
        width: 80px;
        height: 80px;
        font-size: 12px;
    }

     .hover-image {
        display: none;
     }
}

@media (max-width: 768px) {
    .accordionheading {
        font-size: 45px;
    }


    .thankyou{
        font-size: 30px;
    }

    .accordiontext {
        font-size: 20px;
    }

    .arrowcontainer img {
        width: 20px;
    }

   
}

@media (max-width: 480px) {
    .blogaccordion {
        padding: 30px 5%;
    }

    .accordionheading {
        font-size: 35px;
    }
    .thankyou{
        font-size: 25px;
    }

    .accordiontext {
        font-size: 18px;
    }

    .arrowcontainer img {
        width: 15px;
    }

    .image-container img {
        width: 100%;
    }

    .explore-button {
        width: 60px;
        height: 60px;
        font-size: 10px;
    }

   
}
