/* Maintenance Page Styles */
.maintenance-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.maintenance-hero .hero-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    animation: fadeIn 2s ease-in-out;
}

.maintenance-hero .hero-content img {
    margin-bottom: 20px;
    animation: float 3s infinite ease-in-out;
}

.maintenance-hero .hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.maintenance-hero .hero-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.maintenance-hero .hero-content .btn {
    background: #112794;
    color: #fff;
    padding: 0.5em 2em;
    text-transform: uppercase;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.maintenance-hero .hero-content .btn:hover {
    background: #112794;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .maintenance-hero .hero-content h1 {
        font-size: 2em;
    }
    .maintenance-hero .hero-content p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .maintenance-hero .hero-content h1 {
        font-size: 1.5em;
    }
    .maintenance-hero .hero-content p {
        font-size: 0.9em;
    }
    .maintenance-hero .hero-content .btn {
        padding: 0.5em 1em;
    }
}
/* General Styles */
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #2D2D2D;
    background-color: #F7F7F7;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
}

.navbar-links {
    display: flex;
    gap: 1.5em;
}

.navbar a, .dropbtn {
    text-decoration: none;
    color: #2D2D2D;
    font-weight: 700;
    position: relative;
    transition: color 0.3s;
}

.navbar a::after, .dropbtn::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #112794;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.navbar a:hover, .dropbtn:hover {
    color: #112794;
}

.navbar a:hover::after, .dropbtn:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.dropdown-content a {
    color: #2D2D2D;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.hero-content img {
    margin-bottom: 20px;
}

.btn {
    background: #112794;
    color: #fff;
    padding: 0.5em 2em;
    text-transform: uppercase;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #112794;
}


/* Clock Styles */
.clock {
    background: #f8f8f8;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #A37E2C;
    position: relative;
    box-shadow: 0 1vw 2vw -0.5vw rgba(0, 0, 0, 0.8);
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #A37E2C;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    z-index: 10;
}

.hour-hand {
    position: absolute;
    z-index: 5;
    width: 2px;
    height: 30px;
    background: #006039;
    top: 20px;
    left: 50%;
    margin-left: -1px;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    transform-origin: 50% 30px;
}

.minute-hand {
    position: absolute;
    z-index: 6;
    width: 2px;
    height: 40px;
    background: #006039;
    top: 10px;
    left: 50%;
    margin-left: -1px;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    transform-origin: 50% 40px;
}

.second-hand {
    position: absolute;
    z-index: 7;
    width: 1px;
    height: 45px;
    background: black;
    top: 5px;
    left: 50%;
    margin-left: -0.5px;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    transform-origin: 50% 45px;
}

.diallines {
    position: absolute;
    z-index: 2;
    width: 1px;
    height: 5px;
    background: #006039;
    left: 50%;
    margin-left: -0.5px;
    transform-origin: 50% 50px;
}

.diallines:nth-of-type(5n) {
    width: 2px;
    height: 10px;
    background: #006039;
}

/* Mobile Menu Button */
.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 10px;
}

.menu-dot {
    width: 8px;
    height: 8px;
    background-color: #2D2D2D;
    border-radius: 50%;
    margin: 2px;
    transition: transform 0.3s ease;
}

.mobile-menu.open .menu-dot:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu.open .menu-dot:nth-child(2) {
    opacity: 0;
}

.mobile-menu.open .menu-dot:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Navbar Links */
.mobile-navbar-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-navbar-links a {
    padding: 15px 20px;
    text-decoration: none;
    color: #2D2D2D;
    font-weight: 700;
    border-bottom: 1px solid #ddd;
    transition: background 0.3s ease;
}

.mobile-navbar-links a:hover {
    background: #f0f0f0;
}

.mobile-navbar-links .dropdown-content {
    display: none;
    flex-direction: column;
    position: relative;
    background: rgba(255, 255, 255, 0.95);
}

.mobile-navbar-links .dropdown:hover .dropdown-content {
    display: flex;
}

.mobile-navbar-links.open {
    display: flex;
    max-height: 500px; /* Adjust as needed */
}

/* Media Queries */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .btn {
        padding: 0.5em 1em;
    }

    .features-container {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .navbar img {
        width: 80px;
    }

    .hero-content img {
        width: 200px;
    }

    .hero-content h1 {
        font-size: 1.5em;
    }

    .hero-content p {
        font-size: 0.9em;
    }

    .btn {
        font-size: 0.9em;
    }

    .feature-item i {
        font-size: 1.5em;
    }

    .feature-item h3 {
        font-size: 1.2em;
    }

    .feature-item p {
        font-size: 0.9em;
    }
}
/* Footer */
footer {
    background: #2D2D2D;
    color: #fff;
    text-align: center;
    padding: 2em;
  }
  
  footer a {
    color: #112794;
    text-decoration: none;
  }
