/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header and Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0066cc;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.nav-btn.primary-btn {
    background-color: #0066cc;
    color: white;
    border: none;
}

.nav-btn.secondary-btn {
    background-color: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.nav-btn.primary-btn:hover {
    background-color: #0055aa;
}

.nav-btn.secondary-btn:hover {
    background-color: rgba(0, 102, 204, 0.05);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0066cc;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a.active {
    color: #0066cc;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        padding: 2rem;
        flex-direction: column;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 0.8rem 1rem;
        width: 100%;
        text-align: center;
        border-radius: 8px;
        background-color: rgba(0, 102, 204, 0.05);
    }

    .nav-btn {
        width: 100%;
        margin: 0.5rem 0;
        padding: 1rem;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #333;
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Add a backdrop when menu is open */
    .nav-links.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

/* Hero Section */
.hero {
    padding: 8rem 1rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.primary-btn, .secondary-btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-btn {
    background-color: #0066cc;
    color: white;
    border: none;
}

.secondary-btn {
    background-color: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.primary-btn:hover, .secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Feature Sections */
.feature {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.feature.reverse {
    direction: rtl;
}

.feature.reverse .feature-content {
    direction: ltr;
}

.feature h2 {
    font-size: 2rem;
    color: #0066cc;
    margin-bottom: 1rem;
}

.feature p {
    font-size: 1.1rem;
    color: #666;
}

.feature-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    aspect-ratio: 16/9;
    background-color: #f0f0f0;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    max-height: 500px;
}

.feature-img:hover {
    transform: scale(1.02);
}

.feature-image svg {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 0px rgba(0,0,0,0.1);
}

/* Testimonials Section */
#testimonials {
    text-align: center;
    padding: 4rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
}

#testimonials .feature-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
    width: 100%;
}

#testimonials h2 {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
    width: 100%;
}

.testimonial {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.testimonial-author {
    color: #0066cc;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding-top: 1rem;
}

.testimonial-author::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #0066cc;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 2rem;
    }
}

/* Final CTA Section */
.final-cta {
    padding: 4rem 1rem;
    background-color: #f8f9fa;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.final-cta .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem auto;
}

.final-cta .primary-btn,
.final-cta .secondary-btn {
    min-width: 200px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.trust-elements {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 600px;
}

.rating, .users {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #ffc107;
    font-size: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.contact-content h2 {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 1rem;
    position: relative;
    display: inline-blockh;
}

.contact-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #00aaff);
    border-radius: 3px;
}

.contact-content > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-item {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position:  absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #00aaff);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.contact-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #0066cc, #00aaff);
}

.contact-item p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 3rem 1rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .hero-content {
        text-align: left;
    }

    .cta-buttons {
        justify-content: flex-start;
    }

    .feature {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .contact-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero, .feature, .final-cta {
    animation: fadeIn 1s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .final-cta .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .final-cta .primary-btn,
    .final-cta .secondary-btn {
        width: 100%;
    }

    .trust-elements {
        flex-direction: column;
        gap: 2rem;
    }

    .contact {
        padding: 4rem 1rem;
    }

    .contact-content h2 {
        font-size: 2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-item {
        padding: 2rem;
    }
}

/* Page Header Styles */
.page-header {
    padding: 8rem 1rem 4rem;
    text-align: center;
    background-color: #f8f9fa;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Detail Page Styles */
.feature-detail {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.feature-detail .feature-content {
    padding: 2rem;
}

.feature-detail h2 {
    font-size: 2rem;
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.feature-detail ul {
    list-style-type: none;
    padding: 0;
}

.feature-detail ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-detail ul li::before {
    content: "✓";
    color: #0066cc;
    position: absolute;
    left: 0;
}

/* Testimonials Page Styles */
.testimonials-page {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    text-align: center;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author h3 {
    color: #0066cc;
    margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact-page {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #00aaff);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.contact-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #0066cc, #00aaff);
}

.contact-item p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: #0066cc;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
    position: relative;
}

.contact-form h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #00aaff);
    border-radius: 3px;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    background-color: white;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button[type="submit"] {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Responsive styles for contact page */
@media (min-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr 1fr;
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 2rem 1rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .contact-item {
        padding: 1.5rem;
    }
}

/* Demo Page Styles */
.demo-page {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.demo-content {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.demo-content h2 {
    color: #0066cc;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.demo-benefits {
    margin: 2rem 0;
}

.demo-benefits h3 {
    color: #333;
    margin-bottom: 1rem;
}

.demo-benefits ul {
    list-style-type: none;
    padding: 0;
}

.demo-benefits ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.demo-benefits ul li::before {
    content: "✓";
    color: #0066cc;
    position: absolute;
    left: 0;
}

.alternative-options {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.alternative-options h3 {
    color: #333;
    margin-bottom: 1rem;
}

.alternative-options .cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.demo-form-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.demo-form h2 {
    color: #0066cc;
    margin-bottom: 2rem;
    text-align: center;
}

.demo-form .form-group {
    margin-bottom: 1.5rem;
}

.demo-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.demo-form .form-group input,
.demo-form .form-group select,
.demo-form .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.demo-form .form-group input:focus,
.demo-form .form-group select:focus,
.demo-form .form-group textarea:focus {
    border-color: #0066cc;
    outline: none;
}

.demo-form .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.demo-form button[type="submit"] {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Responsive Styles for Demo Page */
@media (min-width: 768px) {
    .demo-container {
        grid-template-columns: 1fr 1fr;
    }

    .alternative-options .cta-buttons {
        flex-direction: row;
    }
}

/* Sign Up Form Styles */
.signup-container {
    max-width: 600px;
    margin: 4rem auto;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.signup-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0066cc, #00aaff);
}

.signup-container h2 {
    text-align: center;
    color: #0066cc;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-group input:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    background-color: white;
}

.form-group input::placeholder {
    color: #999;
}

.signup-btn {
    background: linear-gradient(135deg, #0066cc, #00aaff);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.login-link {
    text-align: center;
    margin-top: 2rem;
    color: #666;
}

.login-link a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-link a:hover {
    color: #00aaff;
    text-decoration: none;
}

/* Responsive styles for signup form */
@media (max-width: 768px) {
    .signup-container {
        margin: 2rem;
        padding: 2rem;
    }

    .signup-container h2 {
        font-size: 1.8rem;
    }

    .form-group input {
        padding: 0.8rem;
    }

    .signup-btn {
        padding: 1rem;
    }
}

/* Login Page Styles */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(115vh - 200px);
    background: #f8f9fa;
    padding: 2rem;
}

.login-content {
    max-width: 500px;
    width: 100%;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.login-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0066cc, #00aaff);
}

.login-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.login-logo {
    width: 40px;
    height: 40px;
}

.login-content h2 {
    font-size: 2.2rem;
    color: #0066cc;
    margin: 0;
}

.login-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.login-form {
    width: 100%;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.login-form .form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.login-form .form-group input:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    background-color: white;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
}

.forgot-password {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #00aaff;
}

.login-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #0066cc, #00aaff);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.login-footer {
    margin-top: 2rem;
    text-align: center;
    color: #666;
}

.login-footer a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-footer a:hover {
    color: #00aaff;
}

/* Responsive styles for login page */
@media (max-width: 768px) {
    .login-container {
        padding: 1rem;
    }

    .login-content {
        padding: 2rem;
    }

    .login-content h2 {
        font-size: 2rem;
    }

    .login-logo {
        width: 100px;
        height: 100px;
    }
} 

/* WhatsApp Floating Button Styles */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Ensure it stays above other elements */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1) translateY(0);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-float::after {
    content: "Chat with us";
    position: absolute;
    right: 70px;
    width: max-content;
    padding: 8px 15px;
    background: #333;
    color: white;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover::after {
    opacity: 1;
}

/* Animation */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    
    .whatsapp-float::after {
        right: 60px;
        font-size: 12px;
        padding: 6px 10px;
    }
}
