* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #0f4c75, #1b9aaa);
    /*display: flex;*/
    align-items: center;
    justify-content: center;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    background: #ffffff;
    border-bottom: 2px solid #e6e6e6;
}

/* Logo */
.logo-area {
    display: flex;
    align-items: center;
}

.logo-area img {
    height: 60px;
    margin-right: 12px;
}

.logo-text h1 {
    margin: 0;
    font-size: 22px;
    color: #0d5cab;
}

.logo-text p {
    margin: 0;
    font-size: 13px;
    color: #28a745;
}

/* Navigation */
.nav-menu a {
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    color: #333;
}

.nav-menu a:hover {
    color: #0d5cab;
}

.nav-menu a.login-btn {
    color: #fff;
}

.login-btn {
    background: #1b9aaa;
    padding: 8px 14px;
    border-radius: 5px;
}

/* Slider */
.slider {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    background: rgba(0, 0, 0, 0.55);
    height: 100%;
    color: #fff;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-content h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 16px;
    max-width: 600px;
}

.cta {
    margin-top: 20px;
    background: #1b9aaa;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    width: fit-content;
    border-radius: 5px;
}

/* Services */
.services {
    padding: 60px 40px;
    text-align: center;
}

.services h2 {
    margin-bottom: 30px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* About */
.about {
    background: #0f4c75;
    color: #fff;
    padding: 50px 40px;
    text-align: center;
}

/* Footer */
.footer {
    background: #09324d;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 13px;
}

/******************Login Page********************/
.login-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.login-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.brand {
    text-align: center;
    margin-bottom: 20px;
}

.brand h1 {
    color: #0f4c75;
    font-size: 26px;
    font-weight: 600;
}

.brand p {
    font-size: 13px;
    color: #666;
}

.login-card h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: #555;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.form-group input:focus {
    outline: none;
    border-color: #1b9aaa;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 15px;
}

.options a {
    text-decoration: none;
    color: #1b9aaa;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: #0f4c75;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
}

.login-btn:hover {
    background: #09324d;
}

.divider {
    text-align: center;
    margin: 15px 0;
    font-size: 12px;
    color: #aaa;
}

.otp-btn {
    width: 100%;
    padding: 12px;
    background: #1b9aaa;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
}

.otp-btn:hover {
    background: #15838b;
}

.register {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
}

.register a {
    color: #0f4c75;
    text-decoration: none;
    font-weight: 500;
}