﻿:root {
    --secondary-color: #FF6B35;
    --theme5-secondary: #F7931E;
    --theme5-accent: #FFB84D;
    --primary-color: #2C3E50;
    --theme5-light: #FFF8F0;
    --theme5-gray: #6C757D;
    --theme5-gradient: linear-gradient(135deg, #FF6B35, #F7931E);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--theme5-light);
}

/* Navigation */
.theme5-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

    .theme5-navbar .navbar-brand {
        background: var(--theme5-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 1.8rem;
        font-weight: 700;
    }

    .theme5-navbar .nav-link {
        color: var(--primary-color) !important;
        font-weight: 500;
        margin: 0 10px;
        transition: all 0.3s ease;
        position: relative;
    }

        .theme5-navbar .nav-link:hover {
            color: var(--secondary-color) !important;
        }

        .theme5-navbar .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--theme5-gradient);
            transition: width 0.3s ease;
        }

        .theme5-navbar .nav-link:hover::after {
            width: 100%;
        }
/* Hero Section - Centered Login */
.theme5-hero {
 min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}


    .theme5-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    }

.theme5-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.theme5-hero h1 {
    color: white;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.theme5-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Centered Login Card */
.theme5-login-section {
    margin-top: 3rem;
}

.theme5-login-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 450px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

    .theme5-login-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--theme5-gradient);
    }

    .theme5-login-card h3 {
        color: var(--primary-color);
        font-weight: 600;
        margin-bottom: 2rem;
        text-align: center;
        font-size: 1.5rem;
    }

.theme5-form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.9);
}

    .theme5-form-control:focus {
        border-color: var(--secondary-color);
        box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
        outline: none;
        background: white;
    }

.theme5-btn-primary {
    background: var(--theme5-gradient);
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-weight: 600;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

    .theme5-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    }

/* Features Section with Top Accent Lines */
.theme5-features {
    padding: 100px 0;
    background: white;
    position: relative;
}

.theme5-section-title {
    text-align: center;
    margin-bottom: 80px;
}

    .theme5-section-title h2 {
        color: var(--primary-color);
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }

        .theme5-section-title h2::after {
            content: '';
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--theme5-gradient);
            border-radius: 2px;
        }

    .theme5-section-title p {
        color: var(--theme5-gray);
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }



.theme5-icon-box i {
    font-size: 3.5rem;
    background: var(--theme5-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.3s ease;
}

.theme5-icon-box:hover i {
    transform: scale(1.1);
}

.theme5-icon-box h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.theme5-icon-box p {
    color: var(--theme5-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Why Choose Us - Left Accent Design */
.theme5-why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.theme5-choose-card {
    background: white;
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

    .theme5-choose-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background: var(--theme5-gradient);
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.4s ease;
    }

    .theme5-choose-card:hover::before {
        transform: scaleY(1);
    }

    .theme5-choose-card::after {
        content: '';
        position: absolute;
        top: 20px;
        left: 20px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
        border-radius: 12px;
        z-index: 1;
        transition: all 0.3s ease;
    }

    .theme5-choose-card:hover::after {
        transform: scale(1.1);
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.15));
    }

    .theme5-choose-card:hover {
        transform: translateX(8px);
        box-shadow: 0 25px 50px rgba(255, 107, 53, 0.15);
    }

    .theme5-choose-card h4 {
        color: var(--primary-color);
        font-weight: 600;
        margin-bottom: 1.2rem;
        display: flex;
        align-items: center;
        font-size: 1.3rem;
        position: relative;
        z-index: 2;
    }

        .theme5-choose-card h4 i {
            color: var(--secondary-color);
            margin-right: 15px;
            font-size: 1.6rem;
            background: white;
            padding: 15px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
            position: relative;
            z-index: 3;
        }

    .theme5-choose-card p {
        color: var(--theme5-gray);
        line-height: 1.7;
        font-size: 1rem;
        position: relative;
        z-index: 2;
    }

/* Footer */
.theme5-footer {
    background: var(--primary-color);
    color: white;
    padding: 80px 0 40px;
    position: relative;
}

    .theme5-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--theme5-gradient);
    }

    .theme5-footer h5 {
        color: var(--theme5-accent);
        font-weight: 600;
        margin-bottom: 2rem;
        position: relative;
        padding-bottom: 10px;
    }

        .theme5-footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--theme5-accent);
        }

    .theme5-footer ul {
        list-style: none;
        padding: 0;
    }

        .theme5-footer ul li {
            margin-bottom: 0.8rem;
            transition: all 0.3s ease;
        }

            .theme5-footer ul li:hover {
                transform: translateX(5px);
            }

            .theme5-footer ul li a {
                color: #bbb;
                text-decoration: none;
                transition: color 0.3s ease;
            }

                .theme5-footer ul li a:hover {
                    color: var(--theme5-accent);
                }

.theme5-footer-bottom {
    border-top: 1px solid #444;
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
    color: #bbb;
}

.theme5-social-icons a {
    color: #bbb;
    font-size: 1.6rem;
    margin: 0 12px;
    transition: all 0.3s ease;
    display: inline-block;
}

    .theme5-social-icons a:hover {
        color: var(--theme5-accent);
        transform: translateY(-3px) scale(1.1);
    }

/* Action Buttons */
.theme5-action-buttons {
    margin-top: 2rem;
}

.theme5-btn-outline {
    border: 2px solid rgba(255,255,255,0.8);
    color: white;
    background: transparent;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
}

    .theme5-btn-outline:hover {
        background: white;
        color: var(--secondary-color);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255,255,255,0.3);
    }

@media (max-width: 768px) {
    .theme5-hero h1 {
        font-size: 2.5rem;
    }

    .theme5-login-card {
        margin: 2rem 1rem 0;
        padding: 2rem 1.5rem;
    }

    .theme5-section-title h2 {
        font-size: 2.2rem;
    }

    .theme5-choose-card:hover {
        transform: translateY(-5px);
    }
}
