body,html{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    font-family: sans-serif;
}
.Section_top {
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    overflow: hidden;
    position: relative;
    background-image: url(../Images/bg3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    animation: change 10s infinite ease-in-out;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers children */
    justify-content: center; /* Centers content vertically */
    width: 50%;
    height: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255,255,255, 0));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    color: white;
}
.info-container {
    display: flex;
    justify-content: space-between; /* Space between the two sections */
    gap: 20px; /* Adjusts space between the sections */
    margin-top: 20px; /* Adds space above the section */
}
.additional-info {
    flex: 1; /* Allows the information section to take up remaining space */
    padding: 20px;
    border: 1px solid #ccc; /* Optional, adds a border around the section */
    border-radius: 10px; /* Rounded corners */
    background-color: #f4f4f4; /* Light background for contrast */
}
.additional-info h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
}

.additional-info p {
    font-size: 1.2em;
    line-height: 1.5;
}
.scrollable {
    width: 100%;
    max-width: 800px;
    overflow-y: auto;
    max-height: 80vh;
    border: 2px solid #ddd;
    padding: 10px;
    background: white;
}
.scrollable img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}
.social_media {
    flex: 0.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.9);
    padding: 10px;
    color: white;
    overflow-y: auto;
    max-height: 100vh;
}

.social_media h3 {
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 18px;
}

.social_scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social_scroll img {
    width: 80px;
    height: 80px;
    margin: 10px 0;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.social_scroll img:hover {
    transform: scale(1.1);
}
.content h1{
    color: white;
    font-size: 60px;
}
.content a{
    background: greenyellow;
    padding: 10px 24px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 20px;
}
.content a:hover{
    background: green;
    color: white;
}


/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 180px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Dropdown Links */
.dropdown-content a {
    color: #333;
    padding: 12px 18px;
    text-decoration: none;
    display: block;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #007bff;
    color: white;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

@keyframes change{
    0%
    {
        background-image: url(2mm.jpg);
    }
    20%
    {
        background-image: url(3mm.jpg);
    }
    40%
    {
        background-image: url(4mm.jpg);
    }
    60%
    {
        background-image: url(5mm.jpg);
    }
}

