/* Gradient Header Styling */
.header {
    background: linear-gradient(90deg, #15395b 0%, #f2f2f2 100%);
    border-bottom: 2px solid #00aaff;
    padding: 10px 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
}

/* Ensure the logo stays to the left */
.header-container {
    display: flex;
    align-items: flex-start;
    width: 100%;
    flex-direction: row;
}

/* Keep the logo fixed to the left */
.logo-container {
    flex-shrink: 0;
    margin-right: 20px;
}

/* Group the navigation and time to the right */
.nav-time-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-grow: 1;
    gap: 10px;
    margin-bottom: 20px;
}

/* Time container styling */
.time-container {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 30px 0px;
    color: #0000;
    font-size: 14px;
    text-align: center;
    margin-bottom: 60px;  /* Increase this for more spacing */
    font-weight: bold;
}

/* Time Item Styling */
.time-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

/* Time Zone Name Styling */
.time-item .timezone-label {
    color: #15395b;
    font-weight: bold;
}

/* Digital Time Styling */
.time-item .digital-time {
    color: #000000;
    font-weight: bold;
}

.time-item div {
    font-weight: bold;
    color: #ff0000;
}

/* Navbar styling */
.navbar {
    display: flex;
    gap: 30px;
    margin-bottom: 0px;
    justify-content: center;
    width: 100%;
}

.nav-link > a {
    color: #000000;
    text-decoration: none;
    font-size: 30px;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.nav-link > a:hover {
    color: #ff0000;
    transform: scale(1.05);
}

/* Dropdown Menu Styling */
.nav-link:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    margin-top: 10px;
    z-index: 1000;
}

.dropdown-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 0;
    display: block;
}

.dropdown-menu a:hover {
    color: #ff0000;
}

/* Main Body Styling */
.main-container {
    display: flex;
    padding: 40px;
    align-items: flex-start;
    justify-content: space-between;
}

.main-content {
    flex-grow: 1;
    color: #000000;
    font-weight: bold;
    font-size: 36px;
    margin-bottom: 20px;
    max-width: 1600px;
}

.main-subtext {
    color: #000000;
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
    max-width: 800px;
}

/* Image Styling */
.main-image {
    width: 600px;
    margin-left: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

/* Logo Styling */
.logo {
    width: 200px;
    height: auto;
    border-radius: 10px;
    margin-right: 20px;
}

/* Logo Text Styling */
.logo-text {
    font-family: Arial, sans-serif;
    font-size: 16pt;
    font-weight: bold;
    color: #808080;
    line-height: 1.5;
}

/* Gradient Footer Styling */
.footer {
    background: linear-gradient(90deg, #15395b 0%, #f2f2f2 100%);
    border-top: 2px solid #00aaff;
    padding: 20px 40px;
    color: #000000;
    text-align: center;
    font-weight: bold;
}
