
:root {
    --primary-color: #5d6afb;
    --secondary-color: #3a4bcc;
    --accent-color: #ff7e5f;
    --light-color: #f8faff;
    --dark-color: #0b3b45;
    --gradient-1: linear-gradient(135deg, #0b3b45 0%, #2192aa 100%);
    --gradient-3: linear-gradient(135deg, #00047c 0%, #0040af 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    background-color: #f9fafd;
}

/* Custom Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(93, 106, 251, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(93, 106, 251, 0.15);
}

.navbar-brand {
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    max-width: 180px;
    width: 100%;
}

.navbar-brand i {
    margin-right: 8px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    font-weight: 500;
    margin: 0 5px;
    border-radius: 50px;
    padding: 8px 18px !important;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    background: var(--gradient-1);
    color: white !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
    padding: 150px 0 100px;
    color: white;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.03" d="M0,224L48,218.7C96,213,192,203,288,186.7C384,171,480,149,576,160C672,171,768,213,864,208C960,203,1056,149,1152,138.7C1248,128,1344,160,1392,176L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons .btn {
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    margin-right: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-primary {
    background: var(--gradient-1);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(1, 26, 125, 0.3);
}

.btn-outline-light:hover {
    background: white;
    color: var(--dark-color) !important;
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
img{
    width: 100%;
}
.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: rotateY(180deg);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.section-subtitle {
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(93, 106, 251, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(93, 106, 251, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2.5rem;
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 10px 20px rgba(93, 106, 251, 0.2);
}

.feature-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-card p {
    color: #666;
    margin-bottom: 20px;
}

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

.feature-list li {
    margin-bottom: 10px;
    color: #555;
    display: flex;
    align-items: center;
}
.btn {
    min-height: 38px;
    line-height: 1.6;
}
.feature-list i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* How It Works */
.how-it-works-section {
    padding: 100px 0;
    background: var(--light-color);
    position: relative;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(93, 106, 251, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(93, 106, 251, 0.2);
}

.step-card h4 {
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dark-color);
}

.step-card p {
    color: #666;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--gradient-1);
    color: white;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Admin Section */
.admin-section {
    padding: 100px 0;
    background: white;
}

.admin-card {
    background: var(--gradient-1);
    border-radius: 20px;
    padding: 50px;
    color: white;
    box-shadow: 0 20px 40px rgba(93, 106, 251, 0.2);
}

.admin-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.admin-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.admin-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.admin-feature {
    display: flex;
    align-items: center;
}

.admin-feature i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: var(--light-color);
}
.btn-outline-primary {
    border-color: var(--dark-color);
    color: var(--dark-color);
}
.btn-outline-primary:hover,
.btn-outline-primary:focus{
    background: var(--gradient-1) !important;
    border-color: var(--dark-color);
    color: white;
}
.btn-admin {
    background: white;
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-admin:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
}
.text-orange{
    color: #ff7e5f;
}
.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 180px;
    width: 100%;
}

.footer-about {
    color: #aaa;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gradient-2);
    transform: translateY(-5px);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
    color: #aaa;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(93, 106, 251, 0.1);
    z-index: 0;
}

.floating-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.floating-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 5%;
    animation: float 10s ease-in-out infinite reverse;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .features-section, .how-it-works-section, .admin-section {
        padding: 80px 0;
    }
    
    .admin-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
}