:root {
    --primary: #d9440d;
    --secondary: #ff9500;
    --success: #1cc88a;
    --info: #36b9cc;
    --warning: #f6c23e;
    --danger: #e74a3b;
    --light: #f8f9fc;
    --dark: #04252c;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

.nav-links a:hover {
    color: orange;
}

.social-links a {
    color: var(--light);
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(78, 115, 223, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 115, 223, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Header */
.header {
    background: url("{{ asset('vendor/adminlte/dist/img/village_girls.png') }}") center/cover;
    min-height: 100vh;
    color: white;
    position: relative;
}

.hero-content h1 {
    text-shadow: 0 1px 2px rgb(163 4 4 / 20%);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-content p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    max-width: 100%;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.nav-link {
    color: #045d79;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 1.1rem;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.nav-link.btn {
    padding: 8px 24px;
    border: 2px solid white;
    border-radius: 30px;
    margin-left: 10px;
    background: transparent;
}

.nav-link.btn:hover {
    background: white;
    color: var(--primary);
}

.navbar.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0 40px;
}

.navbar.scrolled .nav-link {
    color: var(--dark);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary);
}

.navbar.scrolled .nav-link.btn {
    border-color: var(--primary);
    color: var(--primary);
}

.navbar.scrolled .nav-link.btn:hover {
    background: var(--primary);
    color: white;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.logo:hover {
    color: rgba(255, 255, 255, 0.9);
}

.logo img {
    height: 90px;
    margin-right: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.logo-subtitle {
    font-size: 0.8rem;
    color: white;
    opacity: 0.8;
}

.navbar.scrolled .logo,
.navbar.scrolled .logo-title,
.navbar.scrolled .logo-subtitle {
    color: var(--primary);
    text-shadow: none;
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 2000;
    padding: 8px;
    transition: all 0.3s ease;
}

.menu-toggle .fa-bars,
.menu-toggle .fa-times {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 85%;
        max-width: 320px;
        background: var(--primary);
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 25px 25px;
        gap: 20px;
        transition: all 0.3s ease;
        box-shadow: -2px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 1900;
        visibility: visible;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        color: white !important;
        font-size: 1.1rem;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link:hover {
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .nav-link.btn {
        border: 2px solid white;
        background: transparent;
        color: white !important;
        margin: 15px 0 0;
        text-align: center;
        border-radius: 30px;
    }

    .nav-link.btn:hover {
        background: white;
        color: var(--primary) !important;
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1800;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .navbar.scrolled .menu-toggle {
        color: var(--primary);
    }

    .navbar.scrolled .menu-toggle .fa-bars,
    .navbar.scrolled .menu-toggle .fa-times {
        filter: none;
    }
}

@media screen and (min-width: 769px) {
    .nav-links {
        display: flex;
        align-items: center;
        gap: 30px;
    }
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 0 5%;
    min-height: 100vh;
}

.hero-content {
    max-width: 600px;
    padding-top: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.4;
    margin-bottom: 20px;
    background: linear-gradient(#f1811a, #e3450b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #04252c;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Stats Section */
.stats {
    padding: 40px 5%;
    background: var(--light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 160px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-title p {
    color: var(--dark);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    padding: 40px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-description {
    color: var(--dark);
    opacity: 0.8;
}

/* CTA Section */
.cta {
    padding: 40px 5%;
    background: #f8dbaa;
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
    color: var(--dark)
}

.cta .btn-outline {
    border-color: var(--secondary);
    color: var(--primary);
    ;
}

.cta .btn-outline:hover {
    background: white;
    color: var(--primary);
}

/* Footer */
.footer {
    padding: 60px 5% 30px;
    background: var(--dark);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: white;
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Specific Styles */
@media (max-width: 768px) {
    .header{
        background: url(../vendor/adminlte/dist/img/village_girls.jpg);
        min-height: 35vh;
        color: white;
        position: relative;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 0px 100px;
    }
    .stats {
        padding: 10px 60px;
    }
    .con,.features-grid {
        margin: 0 60px;
    }
    .hero{
        min-height: 35vh;
    }
    .hero-content {
        padding-top: 50px;
    }
    .header .hero-content h1 {
        font-size: 1rem;
    }
    .logo img{
        height: 50px;
    }
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.5rem;
    }

    .hero-buttons a {
        font-size: 0.6rem;
        padding: 0.4rem .6rem;
    }
    .hero-buttons {
        flex-direction: row;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }

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

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

    .navbar {
        flex-direction: row;
        align-items: flex-start;
    }

    .navbar .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .navbar .menu-toggle {
        display: block;
        cursor: pointer;
    }
}