body {
    background: linear-gradient(to bottom, #4a6d7c, #2c3e50);
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main {
    flex: 1;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgb(44,62,80);
    border-bottom: 1px solid rgb(74,109,124);
}

.header-left {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 15px;
}

.header-title {
    font-size: 1.5rem;
    color: white;
    margin: 0;
}

/* Service Cards */
.services-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.service-card {
    width: 200px;
    height: 250px;
    perspective: 1000px;
    padding: 20px;
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.service-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.card-front {
    background-color: #1F2937;
    color: white;
    padding: 20px;
}

.card-front img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}

.card-back {
    background-color: rgb(255, 128, 0);
    color: #111827;
    transform: rotateY(180deg);
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
}

footer {
    margin-top: 50px;
    text-align: end;
    background-color: rgb(44,62,80);
    color: white;
    position: relative;
    z-index: 1;
}
.footer-logos {
    display: flex;
    justify-content: start;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.footer-logos img {
    width: 180px;
    height: auto;
}

/* Login Page Styles */
.login-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    width: 500px;
    margin: 220px auto;
    text-align: center;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    color:white;
    background-color: rgba(44,62,80);
}
.input-group .eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: white !important;
}

button {
    background-color: rgb(255, 128, 0);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}
.reset {
    background-color: rgb(255, 128, 0);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

button:hover {
    background-color: rgb(200, 100, 0);
}