/* General Styling */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('https://i.postimg.cc/RhTqCh20/sekere.jpg') no-repeat center center/cover;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.logo img {
    height: 50px;
}

.menu-icon {
    font-size: 30px;
    cursor: pointer;
}

/* Sidebar Menu */
#side-menu {
    width: 250px;
    position: fixed;
    top: 0;
    right: -250px;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    transition: right 0.3s ease;
    padding-top: 60px;
    text-align: center;
}

#side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#side-menu ul li {
    padding: 15px;
}

#side-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block;
}

#side-menu ul li:hover {
    background: rgba(255, 255, 255, 0.2);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: white;
}

/* Body */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 80px 20px;
    align-items: center;
}

.custom-section {
    position: relative;
    width: 100%;
    height: 500px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    padding-left: 3%; /* Positions the box on the left */
}

.container {
    width: 50%; /* Very small width */
    height: 80%; /* 60% of section height */
    background-color: white;
    border: 7px solid #2E5984; /* Navy blue border */
    padding: 10px;
    font-size: 12px;
    color: #333;
    border-radius: 5px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: flex-start;
    margin-bottom: 40%;
}

.aligned-text{
    text-align: left;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 6%;
    color: #2E5984;
}

.aligned-heder{
    text-align: left;
    width: 80%;
    margin: 0 auto;
    color: #2E5984;
}

.aligned-h2{   
    background: #2E5984;
    padding: 5px;
    text-align: center;
    transition: background 0.3s ease;
    color:#fff;
}

.aligned-h2:hover {
    background: #2E5984; /* Blue container on hover */
}

.aligned-h2:hover .aligned-h2 {
    color: white; /* Text turns white inside blue container */
}

/* Image Animation Section */
.image-container {
    position: relative;
    width: 70%;
    height: 30%;
    padding-left: 5%;
    margin-right: 30%;
    margin-bottom: 60%;
}

.drop-image {
    position: absolute;
    width: 100%;
    opacity: 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #4A148C; /* Deep purple */
  color: #fff;
  margin-top: 50px;
}

/* Responsive Design */
@media (min-width: 768px) {
    main {
        flex-direction: row;
        justify-content: space-around;
        padding: 50px 50px;
    }
}