: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("../vendor/adminlte/dist/img/village_girls.jpg") 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(255, 255, 255, 0.8);
}

.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 var(--primary);
    border-radius: 30px;
    margin-left: 10px;
    color: var(--primary);
}

.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:var(--primary);
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 2000;
    padding: 20px 4px;
    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: 0px;
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.4;
    margin-bottom: 10px;
    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: 10px;
    color: #04252c;
}

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

/* Stats Section */
.stats {
    padding: 10px 160px;
    background: var(--light);
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    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: 40px 5%;
}

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

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

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 20px;
}

.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: 0 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: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: 20px;
    padding-top: 10px;
    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);
}

.flower {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

.flower1 {
    left: 5%;
    animation-delay: 0s;
}

.flower2 {
    right: 10%;
    animation-delay: 2s;
}

.flower3 {
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.intro {
    max-width: 100%;
    margin: 0 auto;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 1s forwards;
    animation-delay: 0.5s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--secondary);
    animation: growWidth 2s forwards;
}

@keyframes growWidth {
    from {
        width: 0;
    }

    to {
        width: 50%;
    }
}

.mt-10 {
    margin-top: 40px;
}

/* Cards Section */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 1s forwards;
}

.card:nth-child(1) {
    animation-delay: 0.7s;
}

.card:nth-child(2) {
    animation-delay: 0.9s;
}

.card:nth-child(3) {
    animation-delay: 1.1s;
}

.card:nth-child(4) {
    animation-delay: 1.3s;
}

.card:nth-child(5) {
    animation-delay: 1.5s;
}

.card-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

/* Enhanced Process Section with Cogs and Arrows */
.process-container {
    margin-top: 3rem;
    position: relative;
    padding: 2rem 0;
}

.process-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

.process-flow {
    display: flex;
    flex-direction: row;
    gap: 20px;
    position: relative;
    margin: 0 auto;
}

.process-step {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 1s forwards;
}

.process-step:nth-child(1) {
    animation-delay: 1.7s;
}

.process-step:nth-child(2) {
    animation-delay: 1.9s;
}

.process-step:nth-child(3) {
    animation-delay: 2.1s;
}

.process-step:nth-child(4) {
    animation-delay: 2.3s;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin-right: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cog {
    position: absolute;
    width: 60px;
    height: 60px;
}

.cog-primary {
    animation: rotateCog 15s linear infinite;
}

.cog-secondary {
    width: 40px;
    height: 40px;
    animation: rotateReverse 10s linear infinite;
}

@keyframes rotateCog {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateReverse {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.step-content {
    flex: 1;
}

.step-number {
    background: var(--secondary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-size: 1.2rem;
}

/* Connecting Arrows */
.arrow-container {
    position: absolute;
    left: 40px;
    top: 0;
    height: 100%;
    width: 1px;
    z-index: 1;
}

.arrow-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--secondary);
    animation: growHeight 3s forwards;
    animation-delay: 2.5s;
}

@keyframes growHeight {
    from {
        height: 0;
    }

    to {
        height: 100%;
    }
}

.arrow-point {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--secondary);
    border-radius: 50%;
    left: -8px;
    transform: scale(0);
}

.arrow-point-1 {
    top: 25%;
    animation: growPoint 0.5s forwards;
    animation-delay: 3s;
}

.arrow-point-2 {
    top: 50%;
    animation: growPoint 0.5s forwards;
    animation-delay: 3.2s;
}

.arrow-point-3 {
    top: 75%;
    animation: growPoint 0.5s forwards;
    animation-delay: 3.4s;
}

@keyframes growPoint {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 10px 10px 0 0;
    padding: 2.5rem;
    text-align: center;
    color: white;
    transform: scale(0.9);
    opacity: 0;
    animation: scaleUp 1s forwards;
    animation-delay: 2.5s;
}

@keyframes scaleUp {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cta h2 {
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    background: var(--light);
    color: var(--dark);
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    color: var(--dark);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

    .subtitle {
        font-size: 1rem;
    }

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

    .process-step {
        flex-direction: column;
    }

    .step-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .arrow-container {
        display: none;
    }
}

.con {
    margin: 0 85px;
}

.header .hero-content h1 {
    font-size:3.2rem;
}

.hero-buttons a {
    font-size: 0.9rem;
    padding: 0.8rem 1.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

/* 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: 62px;
    }
    .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;
    }
    .process-flow{
        flex-direction: column;
        align-items: center;
    }
}
