        body {
            margin: 10px 10px;
            font-family: Arial, sans-serif;
        }

        /* Section styling */
        .section {
            padding: 20px;
        }

        .section h2 {
            text-align: center;
        }
.sort-bar {
    text-align: center;
    padding: 15px;
    background: linear-gradient(to right, #ff758c, #ff7eb3);
    color: white;
    font-weight: bold;
    border-radius: 10px;
}
.sort-bar:hover{
    background: linear-gradient(135deg, #f50c71, #ff64a0);
}

.sort-bar1{
    margin: 20px 0;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 5px;
}
.poem-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.poem-box {
    background: #fff;
    padding: 20px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    width: 410px;
    border-radius: 12px;
    border: 2px solid #ff7eb3;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

/* Hover effect */
.poem-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3);
    border-color: #ff4f7b;
}

/* Poem Content */
.poem-box .content {
    font-family: 'Noto Serif', serif;
    font-size: 16px;
    color: #333;
    text-align: center;
    line-height: 1.6;
    padding-bottom: 10px;
}

/* Quote style */
.poem-box .content::before,
.poem-box .content::after {
    content: '“';
    font-size: 28px;
    color: #ff4f7b;
    font-weight: bold;
}

/* Date & Hashtag */
.poem-box .content br + br {
    display: block;
    font-weight: bold;
    color: #ff4f7b;
    margin-top: 10px;
}

/* Decorative line */
.poem-box::before {
    content: "";
    position: absolute;
    width: 70%;
    height: 10px;
    background: linear-gradient(to right, #ff4f7b, transparent);
    top: 0;
    left: 20%;
    border-radius: 5px;
}

/* Image inside the poem box */
.poem-box img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

      
 :root {
    --accent-color: #007BFF;
    --text-color: #fff;
    --transition-speed: 0.3s;
}


/* Tooltip Styles */
.tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-speed);
    font-size: 14px;
    z-index: 10;
}

.tooltip.visible {
    opacity: 1;
}




        /* Show "View More" only if overflow occurs */
        .box.overflowing .view-more {
            display: block;
        }

        /* Media Queries for Tablets */
        @media screen and (max-width: 768px) {
            .slideshow-container {
                max-width: 90%;
            }
        }
        
        /* Media Queries for Mobile */
        @media screen and (max-width: 480px) {
            .slideshow-container {
                max-width: 100%;
                padding: 10px;
            }
        }

        /* Slideshow Container */
/*------------------ Fonts ------------------*/

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');


/*------------------ Variables ------------------*/

:root{
    --main-background: rgb(250, 203, 115);
    --main-text-color: rgb(0, 27, 27);
    --dark-cyan: rgb(0, 133, 133);
}


/*------------------ Global Stuff ------------------*/

*{
    margin: 0;
    padding: 0;
    color: var(--main-text-color);
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
    color: var(--main-text-color);
}

body {
    height: fit-content;
    min-height: 100vh;
    background: no-repeat linear-gradient(
        50deg,
        rgb(110, 40, 20) 0%,   /* Black at the very top */
        rgb(15, 15, 15) 35%,  /* Keep Black for a smooth start */
        rgb(190, 70, 35) 70%, /* Reddish-Brown */
        rgb(15, 15, 15) 85%  /* Dark Warm Brown */
    );
}



/*------------------ Custom Scrollbar ------------------*/

::-webkit-scrollbar{
    width: 7px;
}

::-webkit-scrollbar-track{
    background-color: var(--main-background);
}

::-webkit-scrollbar-thumb{
    background-color: var(--dark-cyan);
}

.home,
.home-popular,
.home-header,
.home-popular h3{
    width: fit-content;
}


h1{
    background-color: inherit;
}

.home{
    display: flex;
    flex-direction: row;
}

.home-popular{
    padding: 1vh 8vw 15vh 3vw;
    width: 63%;
}

.home-popular h3{
    text-transform: capitalize;
    margin: auto;
    margin-bottom: 25px;
    font-size: 30px;
}

.home-header{
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.slider{
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 900px;
  height: 300px;
  position: relative;
}

ul{
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

li{
  width: fit-content;
  height: fit-content;
}

li img{
  border: 1px solid var(--main-background);
  position: relative;
}

.description{
  position: relative;
  top: 350px;
}

.description h3{
  display: none;
}

.further-description{
  position: relative;
  top: 350px;
  left: 170px;
}

.further-description h2{
  text-transform: capitalize;
  display: none;
  font-size: 1.2rem;
  font-weight: 400;
  width: 55%;
  text-align: center;
  text-transform: none;
}

h2.active{
  display: block;
}

h3.active{
  display: block !important;
}

.item{
  flex: 1 0 20%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease-in-out;
}

.small1, .small2 {
  height: 200px;
  position: absolute;
  z-index: -1;
  top: 70px;
}

.big1, .big2 {
  height: 250px;
  position: absolute;
  z-index: 0;
  top: 40px;
}

.small1{
  left: -35px;
}

.big1{
  left: 90px;
}

.focus {
  position: absolute;
  z-index: 1;
  height: 300px;
  width: 250px;
  left: 240px;
  top: 10px;
}

.big2{
  left: 440px;
  width: 220px;
}

.small2{
  left: 650px;
}

.big3 {
    display: block;
    z-index: -1; 
    position: absolute;
    float: right;

    /* Soften the gradient for better visibility */
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.0060), rgba(0, 0, 0, 1) 80%),
                        linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 1) 80%),
                        linear-gradient(to top, rgba(0, 0, 0, 0.0125), rgba(0, 0, 0, 1) 80%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.360), rgba(0, 0, 0, 1) 80%),
                linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 1) 80%),
                linear-gradient(to top, rgba(0, 0, 0, 0.0525), rgba(0, 0, 0, 1) 80%);

    /* Combine all masks */
    -webkit-mask-composite: intersect;
    mask-composite: intersect;
}



    .biography{
        display: flex;
        width: 1300px;
    }
    .biography-container {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 20px;
        width: 1100px;
        margin: auto;
        position: relative;
    }

.biography-boxa {
    display: flex;
    align-items: center;
    text-align: center;
    margin: auto;
    color: white;
    padding: 20px;
    max-width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease-in-out;
}

.biography-box1 {
    display: flex;
    align-items: center;
    margin: auto;
    color: white;
    padding: 20px;
    width: 450px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease-in-out;
}

.biography-box2 {
    display: flex;
    backdrop-filter: blur(5px);  /* Frosted glass effect */
    align-items: center;
    margin: auto;
    background: mintcream;
    font-size: 20px;
    font-family: 'Merriweather', serif;
    line-height: 1.8;
    color: white;
    margin-top: 100px;
    padding: 20px;
    width: 1000px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease-in-out;
    z-index: -1;
}

.biography-boxa, .biography-box1 {
    background: linear-gradient(
        50deg,
        rgba(255, 165, 80, 0.9) 30%,  /* Soft Orange */
        rgba(235, 94, 40, 0.9) 55%,  /* Warm Deep Orange */
        rgba(190, 70, 35, 0.9) 80%   /* Reddish-Brown */
    );
    color: white;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

/* Hover Effect for Subtle Glow */
.biography-box1:hover, .biography-boxa:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

.bio-content h3 {
    margin: 0;
    font-size: 20px;
    color: white;
}

.bio-content p {
    font-size: 16px;
    margin-top: 5px;
    color: white;
    line-height: 1.8;
}

.video-container {
  width: 400px;
  margin: 50px auto;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.video-player {
  width: 100%;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  display: none; /* Hidden by default */
}

.video-container:hover .video-overlay {
  display: block; /* Show overlay when hovering over the video */
}

/* Image Styling */
.bio-content img {
    width: 250px;
    border-radius: 10px;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease-in-out;
}

/* Image Hover Effect */
.bio-content img:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .biography {
        flex-direction: column;
        align-items: center;
    }

    .biography-box1, .biography-boxa {
        width: 90%;
        max-width: 400px;
    }
}

.bio-heading {
    width: 100%;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    font-family: 'Merriweather', serif;
    background: linear-gradient(135deg, #ff4f7b, #ff7eb3);
    color: white;
    padding: 12px 15px;
    border-radius: 12px 12px 0 0;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
}

.bio-heading1, .bio-heading2 {
    width: 100%;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    font-family: 'Merriweather', serif;
    background: linear-gradient(135deg, #ff4f7b, #ff7eb3);
    color: white;
    padding: 12px 15px;
    border-radius: 12px 12px 0 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
}
.bio-heading1{
    top: 270px;
}

.bio-heading2{
    top: 1270px;
}

/* Subtle glow effect on hover */
.bio-heading1:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #f50c71, #ff64a0);
}
.bio-heading2:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #f50c71, #ff64a0);
}

.biography-box {
    flex: 1;
    min-width: 350px;
    width: 480px;
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
    margin-top: 30px;
    padding: 25px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    text-align: justify;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #ff4f7b; /* Decorative border */
}

/* Add a stylish fade effect */
.biography-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 192, 203, 0.1), transparent);
}

/* Hover effect for interaction */
.biography-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

/* Text Styling */
.biography-box p {
    font-size: 21px;
    color: #444;
    line-height: 1.6;
    font-family: 'Merriweather', serif;
}

/* Highlight important text */
.biography-box strong {
    color: #ff4f7b;
    font-weight: bold;
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .biography-container {
        flex-direction: column;
        align-items: center;
    }
    .biography-box {
        width: 90%;
        padding: 20px;
    }
}

/* Container Styling */
.onee {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 30px 0;
    flex-wrap: wrap;
    background-color: white;
}

/* Image Styling Hide*/
.onee img 
    border-radius: 12px; 
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.3); 
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background: white;
}

/* Hover Effect for Images */
.onee img:hover {
    transform: scale(1.08); 
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.5); 
}

/* Responsive Design */
@media (max-width: 768px) {
    .onee {
        flex-direction: column;
        gap: 10px;
    }

    .onee img {
        width: 90%;
    }
}


    .sort-bar {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: linear-gradient(135deg, #ff7eb3, #ff758c);
        padding: 10px 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .sort-bar label {
        font-size: 16px;
        font-weight: bold;
        color: white;
    }

    .sort-bar select {
        padding: 8px 12px;
        font-size: 14px;
        border: none;
        background: white;
        cursor: pointer;
        transition: 0.3s;
        outline: none;
    }

    .sort-bar select:hover {
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    }

    .sort-bar select:focus {
        border: 2px solid #ff3d68;
    }

    .video-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 40px;
    align-items: center;
    background-color: #243242;
}

.video-box {
    position: relative;
    width: 30%; /* This ensures 3 videos fit in one row */
    background: linear-gradient(50deg, rgba(11, 77, 219, 0.9), rgba(44, 195, 245, 0.9), rgba(5, 13, 245, 0.9));
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.video-title {
    position: absolute;
    top: 10px;
    left: 45%;
    width: 300px;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-box:hover .video-title {
    opacity: 1;
    background: linear-gradient(135deg, #f50c71, #ff64a0);
}

.video-player {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.button-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.button-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 40px;
    background: linear-gradient(45deg, #f7c83b, #f03e3e, #dfeb0c);
    border-radius: 8px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.button-box-s {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 30px;
    background: linear-gradient(45deg, #032f40, #07a1d9, #b8fc0d);
    border-radius: 8px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}
.button-box:hover, .button-box-s:hover {
    transform: translateY(-3px);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4);
    background: #f23545;
}

.image-button {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.button-text {
    padding: 10px;
}

.button-box a{
    text-decoration: none;

.button-text {
    font-size: 20px;
    font-weight: bold;
    color: white;
    transition: color 0.3s;
}

.image-button:hover .button-text {
    color: #ff7e5f;
}


.footer {
    text-align: center;
    padding: 20px;
    width: 100%;
    position: relative; /* Ensures it's inside the flow */
    bottom: 0;
    box-shadow: 0 -3px 10px rgba(255, 255, 255, 0.2);
    margin-top: auto;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-container {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    width: 100px;
    margin-bottom: 10px;
    filter: drop-shadow(2px 2px 5px rgba(255, 255, 255, 0.7));
}


.footer-social a img {
    width: 30px;
    margin: 0 10px;
    transition: transform 0.3s ease-in-out;
    filter: brightness(1.2);
}

.footer-social a img:hover {
    transform: scale(1.2);
}

.footer-copy {
    font-size: 14px;
    opacity: 0.9;
    color: white;
}

