body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%; /* Prevents text resizing on orientation change */

}

body {
    background-color: #1c1c1e; /* Dark background */
    font-family: 'Dosis',sans-serif;
    color: #fff; /* Light text */
    margin: 0;
    -webkit-font-smoothing: antialiased; /* Improves text rendering on iOS */

}

.sticky-menu {
    background-color: #000; /* Black background for the menu */
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensures the menu stays on top */
}



.sticky-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; /* Center menu items */
}



.sticky-menu ul li {
    margin: 0 10px; /* Spacing between menu items */
}

.sticky-menu ul li a {
    display: block;
    color: white;
    text-align: center;
    padding: 20px;
    text-decoration: none;
}

.sticky-menu ul.active {
    display: flex; /* Show the menu when active */
}

/* Full Width and Height Sections */
.section {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column; /* Organizes content vertically */
    justify-content: center; /* Aligns content to the bottom */
    align-items: center; /* Vertical center */
    text-align: center;
    box-sizing: border-box; /* Includes padding and border in the element's total width and height */
    padding-top: 60px; /* Adjust for sticky menu */
    padding: 0 20px 60px 20px; /* Adds padding (top, right, bottom, left) */
    position: relative;
  
}

button {
    background-color: #007aff;
    border: none;
    color: white;
    padding: 15px 32px;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.container {
    position: relative;
    z-index: 2; /* Above the background images */
    /* Additional styling for the content */
}

h1 {
    font-size: 2em;
    font-weight: bold;
    font-family: 'Dosis',sans-serif;
    margin-bottom: 10px;
    background-color: rgba(0, 0, 0, 0.6); /* Black with 50% opacity */
    padding: 10px;
    border-radius: 25px; /* Optional, for rounded corners */
    color: white;
}

h2 {
    font-size: 1,5em;
    font-weight: bold;
    font-family: 'Dosis',sans-serif;
    margin-bottom: 10px;
    background-color: rgba(0, 0, 0, 0.6); /* Black with 50% opacity */
    padding: 10px;
    border-radius: 25px; /* Optional, for rounded corners */
    color: white;
}

p {
    font-size: 1em;
    line-height: 1.6;
    max-width: 400px;
    font-family: 'Dosis',sans-serif;
    margin: auto; /* Centers the paragraph */
    background-color: rgba(0, 0, 0, 0.6); /* Black with 50% opacity */
    padding: 10px;
    border-radius: 25px; /* Optional, for rounded corners */
    color: white;
}

.download-buttons {
    display: flex;
    justify-content: center; /* Center the buttons within the download-buttons div */
    gap: 20px; /* Creates space between the buttons */
    padding: 10px;

}

.download-buttons a {
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 15px;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 10px;

}

.download-buttons a:hover, .download-buttons a:focus {
    background-color: #0056b3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

/* Styles for other hyperlinks if needed */
a:not(.download-buttons a) {
    text-decoration: underline;
}

a:not(.download-buttons a):hover, a:not(.download-buttons a):focus {
    background-color: #007BFF;
    text-decoration: none;
}

/* Styling for individual paragraphs */
.text-paragraph {
    margin-bottom: 20px;
}
#video-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 4 columns, adjust as needed */
    min-width: 1200px;
    grid-gap: 16px; /* Space between videos */
    padding: 16px; /* Padding around the gallery */
    margin: auto; /* Center the gallery */
    max-width: 100%; /* Prevent exceeding the page width */
    box-sizing: border-box; /* Include padding and border in the width and height */
}

.video {
    position: relative;
    overflow: hidden; /* Ensures the content does not overflow */
    padding-top: 56.25%; /* 16:9 Aspect Ratio, adjust if needed */
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.special-heading {
    letter-spacing: 5px;
}

/* General Styles - Hidden on Desktop */
.floating-circle, .menu-items {
    display: none;
}



.p-buttons {
    display: flex;
    justify-content: center; /* Center the buttons within the download-buttons div */
    gap: 20px; /* Creates space between the buttons */
    padding: 10px;
}

.p-buttons a {
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 15px;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 10px;
}

.p-buttons a:hover, .p-buttons a:focus {
    background-color: #0056b3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
    padding: 10px;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    /* Floating Circle Style */
    .floating-circle {
        display: flex;
        position: fixed;
        top: 25px;
        left: 25px;
        width: 30px;
        height: 30px;
        background-color:  rgba(255, 20, 147, 1);
        border-radius: 100%;
        z-index: 1001;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        animation: radiate 2s infinite;
      

    }

    @keyframes radiate {
        0% {
            box-shadow: 0 0 0 0 rgba(255, 20, 147, 0.7), /* DeepPink color with opacity */
                       0 0 0 10px rgba(255, 20, 147, 0.5), 
                       0 0 0 20px rgba(255, 20, 147, 0.3);
        }
        100% {
            box-shadow: 0 0 0 10px rgba(255, 20, 147, 0.7),
                       0 0 0 20px rgba(255, 20, 147, 0.5), 
                       0 0 0 30px rgba(255, 20, 147, 0);
        }
    }
    

    /* Radial Menu Style */
    .menu-items {
        position: fixed; /* This ensures the menu items are also fixed */
        top: 0; /* Adjust top, right, bottom, left as needed */
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 0, 100, 0.9);
        display: none; /* Initially hidden */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
        z-index: 1002; /* Ensure it's above the floating circle */

    }

    /* Hide the menu items initially */
    .menu-items:not(.active) {
        display: none;
    }

    /* Show the menu items when active */
    .menu-items.active {
        display: flex;
    }

    /* Adjust button size for mobile */
    button {
        padding: 10px 20px; /* Smaller padding for a more compact look */
        font-size: 1em; /* Adjust font size for mobile */
        /* Keep other styles unchanged */

    }

    /* Adjust download buttons for mobile */
    .download-buttons a {
        padding: 8px 16px; /* Smaller padding for mobile */
        font-size: 1em; /* Smaller font size */
        /* Keep other styles unchanged */
    }


    #video-gallery {
        display: none;


  
    }
    .video iframe {
        display: none;

    }

    .sticky-menu {
        position: -webkit-sticky; /* Specific to iOS Safari */
        position: sticky;
        /* ... other styles ... */
    }

}
