body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
}

h1 {
    text-align: center;
    font-size: 50px;
    color: rgb(188, 125, 224);
    animation: fadeIn 1s ease-out;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px;
    z-index: 1000;
    /*background-color: black;*/
}

.navbar {
    position: relative;
}

.navbar-toggler:focus, .navbar-toggler:hover {
    outline: none;
    box-shadow: none;
}

.navbar-toggler {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1100;
    border: none;
    outline: none;
    padding: 0;
    cursor: pointer;
    background-color: transparent;
}

.navbar-toggler-icon {
    background-color: #2a9ae5;
    width: 30px;
    height: 2px;
    display: block;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    background-color: #2a9ae5;
    width: 30px;
    height: 2px;
    position: absolute;
    left: 0;
    transition: none;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

/* Updated styles */
.navbar-collapse {
    display: none;
    position: absolute;
    top: 10px;
    left: 0;
    width: 140px;
    padding: 10px;
    border-radius: 5px;
    /*background-color: black;*/
}

/* Show the menu on hover and keep it visible when hovering over the menu itself */
.navbar-toggler:hover + .navbar-collapse,
.navbar-toggler:focus + .navbar-collapse,
.navbar-collapse:hover {
    display: block;
}

.navbar .navbar-nav {
    flex-direction: column;
}

.navbar .navbar-nav .nav-item {
    margin: 0px 0;
    color: #2a9ae5;
}

.navbar-dark .navbar-nav .nav-link {
    color: #2a9ae5;
}

.nav-link:hover {
    color: rgba(157, 0, 255, 0.5);
}
ul {
    list-style-type: none; /* Removes the dots */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
}

li {
    margin: 0; /* Adds some spacing between the items */
    padding: 10px 0;
}

a {
    text-decoration: none; /* Removes the underline */
}

.image-section {
    display: flex;
    justify-content: center;
    width: 100%;
}

.image-section img {
    margin-top: 1px;
    width: 100%;
    height: 600px;
    border-radius: 5px;
    animation: slideUp 1s ease-out;
}

.content-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 20px;
    padding-right: 70px;
}

.image-section1 {
    margin-left: 10px;
    justify-content: center;
    width: 50%;
    height: 100%;
    display: flex;
    box-shadow: #333;
    margin-left: 100px;
}

.main-image {
    width: 100%;
    height: 300px;
    animation: fadeIn 1.5s ease-out;
}

.text-section {
    flex: 1;
    margin-right: 120px;
    animation: slideUp 1s ease-out;
}

h2 {
    margin-top: 0;
    margin-left: 100px;
    animation: fadeIn 1.5s ease-out;
}
.high{
    display: flex;
}
p {
    text-align: justify;
    width: 90%;
    margin-left: 100px;
    animation: slideUp 1.5s ease-out;
}
#i{
    text-align: justify;
    width: 90%;
    margin-left: 120px;
    animation: slideUp 1.5s ease-out;

}

/* Footer Section */
.final-content-footer {
    background-color: #d4c9c9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 0px;
    text-align: center;
}

.final-content-footer h2 {
    margin: 0;
    font-size: 2.5rem;
    color: darkblue;
    margin-bottom: 5px;
    font-weight: bold;
}



.social-icons {
    margin-bottom: 10px;
}

.footer-link {
    font-size: 2rem;
    margin: 0 5px;
    text-decoration: none;
    transition: transform 0.3s;
}

.footer-link:hover {
    transform: scale(1.1);
}

/* Specific colors for each icon */
.footer-link i.fa-facebook-f {
    color: #3b5998;
}

.footer-link i.fa-twitter {
    color: #00acee;
}

.footer-link i.fa-instagram {
    color: #C13584;
}

.footer-link i.fa-youtube {
    color: #FF0000;
}
.wwe{
    width: 799px;
}
.www{
    height: 250px;
    margin-left: 120px;
    width: 450px;
    border-radius: 10px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(1000px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideRightToLeft {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.text-right-to-left {
    animation: slideRightToLeft 100s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 40px;
    }

    .image-section img {
        height: 300px;
    }

    .content-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
        
    }

    .image-section1,
    .text-section {
        margin: 0;
        width: 100%;
    }

    h2 {
        margin-left: 20px;
        font-size: 1.5rem;
    }

    p {
        margin-left: 20px;
        width: 90%;
    }

    .final-content-footer h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .high{
        display: flex;
        flex-direction: column-reverse;
        
    
    }
    .main-image{
        height: 10%;
        display: none;
    }
    .wwe{
        width: 400px;
        margin-left: 10px;
    }
    .www{
        margin-left: 1px;
        width:370px;
        height: 10%;
    }
    h1 {
        font-size: 35px;
    }

    .image-section img {
        height: 400px;
    }

    .image-section1,
    .text-section {
        width: 100%;
    }

    h2 {
        margin-left: 10px;
        font-size: 1.4rem;
    }

    p {
        margin-left: 10px;
        width: 90%;
        font-size: 0.9rem;
    }
    #i{
        text-align: justify;
        width: 90%;
        margin-left: 0px;
        
    
    }
    

    .final-content-footer {
        padding: 20px;
    }

    .final-content-footer h2 {
        font-size: 1.3rem;
    }

    .footer-link {
        font-size: 1rem;
    }
    .navbar-collapse{
        padding: 1px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 30px;
    }

    .image-section img {
        height: 300px;
    }

    .image-section1 {
        margin-left: 0;
        width: 100%;
    }

    .text-section {
        margin-right: 0;
        width: 100%;
    }

    h2 {
        margin-left: 5px;
        font-size: 1.2rem;
    }

    p {
        margin-left: 0px;
        width: 85%;
        font-size: 0.8rem;
    }

    .final-content-footer h2 {
        font-size: 1.2rem;
    }

    .footer-link {
        font-size: 0.9rem;
    }
    li{
        padding: 8px;
    }
}
