﻿.login-header img.login-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}

.login-header h1 {
    color: #075E54;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.login-header p {
    color: #333;
    font-size: 1rem;
    margin-bottom: 20px;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.form-control {
    background: rgba(255, 255, 255, 0.5) !important;
    border: 1px solid rgba(7, 94, 84, 0.2) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
}
/* Reusable components */

/* Modern Menu Bar */
.modern-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(32, 44, 51, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
}

.menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

    .menu-logo img {
        height: 35px;
        width: auto;
    }

    .menu-logo span {
        color: white;
        font-size: 1.2rem;
        font-weight: 600;
    }

.menu-items {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .menu-items li a {
        color: white;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        padding: 8px 15px;
        border-radius: 5px;
    }

        .menu-items li a:hover {
            color: #E9F5F4;
            background: rgba(255, 255, 255, 0.1);
        }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

/* AI Assistant Link */
.ai-assistant-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    padding: 8px 16px !important;
    border-radius: 20px;
    color: white !important;
    transition: all 0.3s ease;
}

    .ai-assistant-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
        color: white !important;
    }

    .ai-assistant-link i {
        font-size: 1.2em;
    }

/* Login Toggle Button */
.login-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0078d4;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .login-toggle:hover {
        background: #006cbd;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }

    .login-toggle i {
        transition: transform 0.3s ease;
    }

    .login-toggle.active i {
        transform: rotate(180deg);
    }

.login-togglet {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: rgba(18, 140, 126, 0.95);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .login-togglet:hover {
        background: rgba(40, 167, 69, 0.9);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }

    .login-togglet i {
        transition: transform 0.3s ease;
    }

    .login-togglet.active i {
        transform: rotate(180deg);
    }

/* Buttons */
.btn {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-login {
    background-color: #075E54 !important;
    color: white !important;
    padding: 14px 30px !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    width: 100% !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2) !important;
    margin-top: 20px;
    display: block;
}

    .btn-login:hover {
        background-color: #128C7E !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 5px 15px rgba(7, 94, 84, 0.3) !important;
    }

.buttons-container {
    text-align: center !important;
    margin-top: 25px !important;
    display: block;
}

/* Form elements */
.form-group {
    margin-bottom: 20px !important;
    position: relative !important;
    text-align: right;
}

    .form-label,
    .form-group label {
        color: #075E54 !important;
        font-weight: 600 !important;
        margin-bottom: 8px !important;
        display: block !important;
        font-size: 1.1rem !important;
    }

.form-control {
    background: white !important;
    border: 2px solid rgba(7, 94, 84, 0.3) !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
    color: #000 !important;
    font-weight: 500 !important;
    box-shadow: none !important;
    outline: none !important;
    -webkit-text-fill-color: #000 !important;
}

    .form-control:focus {
        border-color: #075E54 !important;
        box-shadow: 0 0 0 3px rgba(7, 94, 84, 0.2) !important;
        background: white !important;
    }

    .form-control::placeholder {
        color: #666 !important;
        opacity: 0.8 !important;
        -webkit-text-fill-color: #666 !important;
    }

    .form-control:-webkit-autofill,
    .form-control:-webkit-autofill:hover,
    .form-control:-webkit-autofill:focus {
        -webkit-box-shadow: 0 0 0 30px white inset !important;
        -webkit-text-fill-color: #000 !important;
        border: 2px solid rgba(7, 94, 84, 0.3) !important;
    }

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #000 !important;
}

/* Error message */
#lblError {
    color: #dc3545 !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    text-shadow: none !important;
    background: rgba(220, 53, 69, 0.1) !important;
    padding: 8px 12px !important;
    border-radius: 4px !important;
    margin-bottom: 15px !important;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, background 0.3s ease;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

    .service-card.animate {
        opacity: 1;
        transform: translateY(0);
        transition: transform 0.6s ease, opacity 0.6s ease, background 0.3s ease;
    }

.service-image-container {
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-title {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-card.animate .service-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-card.animate .service-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .service-features li {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 10px;
        padding-right: 25px;
        position: relative;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

.service-card.animate .service-features li {
    opacity: 1;
    transform: translateX(0);
}

    .service-card.animate .service-features li:nth-child(1) {
        transition-delay: 0.6s;
    }

    .service-card.animate .service-features li:nth-child(2) {
        transition-delay: 0.7s;
    }

    .service-card.animate .service-features li:nth-child(3) {
        transition-delay: 0.8s;
    }

.service-features li::before {
    content: '✓';
    color: #25D366;
    position: absolute;
    right: 0;
    top: 0;
}

/* Package Cards */
.package-card {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.9), rgba(32, 201, 151, 0.9));
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    animation: slideIn 0.6s ease forwards;
    animation-delay: calc(var(--card-index) * 0.1s);
}

    .package-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

.package-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
}

.message-count {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 15px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .package-features li {
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
    }

        .package-features li:last-child {
            border-bottom: none;
        }

    .package-features i {
        margin-left: 10px;
        color: #ffffff;
    }

.package-price {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 15px;
    font-weight: bold;
}

/* How It Works - Stages */
.stage {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

    .stage.animate {
        opacity: 1;
        transform: translateY(0);
    }

.stage-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #128C7E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    box-shadow: 0 4px 15px rgba(18, 140, 126, 0.3);
}

    .stage-icon i {
        font-size: 30px;
        color: white;
    }

.stage-content {
    flex: 0 0 auto;
    width: calc(100% - 120px); /* Adjusted to account for icon and arrow width */
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    max-width: 800px; /* Add a maximum width */
}

.stage-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

    .stage-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.stage-arrow {
    margin: 0 30px;
    color: #128C7E;
    font-size: 24px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease;
    flex-shrink: 0;
    width: 30px; /* Fixed width */
}

/* Make sure all stages are identical in size */
.stages-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

    .stages-container .stage {
        width: 100%;
    }

.stage-content:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

    .stage-content:hover .stage-image img {
        transform: scale(1.05);
    }

.stage-content h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.stage-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1.1rem;
}

.stage-arrow {
    margin: 0 30px;
    color: #128C7E;
    font-size: 24px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease;
}

    .stage-arrow.animate {
        opacity: 1;
        transform: translateX(0);
    }

.stage:last-child .stage-arrow {
    display: none;
}
