﻿:root {
    --primary-color: #1a4d2e;
    --secondary-color: #2d5016;
    --light-green: #4f7942;
    --accent-gold: #d4af37;
    --light-gold: #f4e9c1;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f4e9c1 100%);
    --green-gradient: linear-gradient(135deg, #1a4d2e 0%, #4f7942 100%);
    --dark-gray: #1a1a1a;
    --medium-gray: #666666;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --shadow-light: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-medium: 0 15px 40px rgba(0,0,0,0.15);
    --shadow-heavy: 0 25px 60px rgba(0,0,0,0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* Header */
.theme3-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.theme3-navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.theme3-nav-link {
    font-weight: 500;
    color: var(--dark-gray) !important;
    transition: all 0.3s ease;
    position: relative;
}

    .theme3-nav-link:hover {
        color: var(--accent-gold) !important;
    }

    .theme3-nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent-gold);
        transition: width 0.3s ease;
    }

    .theme3-nav-link:hover::after {
        width: 100%;
    }

/* Hero Section */
.theme3-hero-section {
    padding-top: 6rem;
   
    background-size: cover;
    position: relative;
    z-index: 0; /* reset to default */
}

    .theme3-hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6); /* translucent dark layer */
        z-index: 1; /* sits above bg but below content */
    }

    /* Make sure content is above overlay */
    .theme3-hero-section > * {
        position: relative;
        z-index: 2;
    }



.theme3-hero-content {
    position: relative;
    z-index: 2;
}

.theme3-hero-badge {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
    display: inline-block;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(10px);
}

.theme3-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.theme3-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 500px;
}

.theme3-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.navbar li a{
	font-size:20px important;
}

.theme3-btn-primary-hero {
    background: var(--gold-gradient);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

    .theme3-btn-primary-hero:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-medium);
        color: var(--dark-gray);
    }

.theme3-btn-secondary-hero {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

    .theme3-btn-secondary-hero:hover {
        background: rgba(255,255,255,0.1);
        border-color: var(--white);
        color: var(--white);
    }

/* Login Card */
.theme3-login-card {
    background: rgba(255,255,255,1);
    border-radius: 25px;
    padding: 1.5rem;
    box-shadow: var(--shadow-heavy);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
}

    .theme3-login-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: var(--gold-gradient);
    }

.theme3-login-header {
    text-align: center;
    margin-bottom: 1rem;
}

.theme3-login-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.theme3-login-subtitle {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.theme3-form-group {
    position: relative;
    margin-bottom: 1rem;
}

.theme3-form-control-custom {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e8ecef;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

    .theme3-form-control-custom:focus {
        outline: none;
        border-color: var(--light-green);
        box-shadow: 0 0 0 4px rgba(79, 121, 66, 0.1);
    }

.theme3-form-label {
    position: absolute;
    top: 1.2rem;
    left: 1.5rem;
    color: var(--medium-gray);
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 1rem;
}

.theme3-form-control-custom:focus + .theme3-form-label,
.theme3-form-control-custom:not(:placeholder-shown) + .theme3-form-label {
    top: -0.5rem;
    left: 1rem;
    font-size: 0.8rem;
    color: var(--light-green);
    background: var(--white);
    padding: 0 0.5rem;
}

.theme3-form-control-custom:focus {
	background-color:#fff;
}

.theme3-btn-login {
    width: 100%;
    background: var(--green-gradient);
    border: none;
    padding: 1.2rem;
    border-radius: 15px;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

    .theme3-btn-login:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
    }

.theme3-login-footer {
    text-align: center; 
    padding-top: 1.5rem;
    border-top: 1px solid #e8ecef;
}

/* Stats Section */
.theme3-stats-section {
    padding: 6rem 0;
    background: var(--light-gray);
    position: relative;
}

.theme3-stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

    .theme3-stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gold-gradient);
    }

    .theme3-stat-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-medium);
    }

.theme3-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.theme3-stat-label {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.theme3-stat-description {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Why Choose Us Section */
.theme3-why-section {
    padding: 6rem 0;
    background: var(--white);
}



.theme3-section-badge {
    background: var(--light-gold);
    color: var(--secondary-color);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.theme3-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.theme3-section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.theme3-why-card {
    background: var(--white);
    border-radius: 25px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .theme3-why-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: var(--gold-gradient);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

.theme3-form-control-custom:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px var(--white) inset !important;
    -webkit-text-fill-color: inherit; /* keeps your text color */
    transition: background-color 5000s ease-in-out 0s; /* prevents flicker */
}

    .theme3-form-control-custom:-webkit-autofill:focus,
    .theme3-form-control-custom:-webkit-autofill:hover {
        -webkit-box-shadow: 0 0 0px 1000px var(--white) inset !important;
    }

.theme3-why-card:hover::before {
    transform: scaleY(1);
}

.theme3-why-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-heavy);
}

.theme3-why-icon {
    width: 158px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--dark-gray);
}

.theme3-why-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.theme3-why-description {
    color: var(--medium-gray);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Features Grid */
.theme3-features-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-gold) 0%, rgba(244, 233, 193, 0.3) 100%);
}

.theme3-features-wrapper {
    display: flex;
    justify-content: center; /* center horizontally */
    align-items: stretch;
    gap: 1.5rem; /* spacing between boxes */
    flex-wrap: wrap; /* responsive wrapping */
}

.theme3-feature-item {
    flex: 1 1 18%; /* 5 items ~20% each, but keep responsive */
    min-width: 180px; /* ensures readability on small screens */
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
}

.theme3-feature-icon {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.theme3-feature-item:hover .theme3-feature-icon {
    background: var(--green-gradient);
    color: var(--white);
    transform: scale(1.1);
}

.theme3-feature-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.theme3-feature-description {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

/* Vision Mission Section */
.theme3-vision-mission-section {
    padding: 6rem 0;
    background: var(--white);
}

.theme3-vm-container {
    max-width: 1400px;
    margin: 0 auto;
}

.theme3-vm-card {
    background: var(--white);
    border-radius: 30px;
    padding: 4rem 3rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

    .theme3-vm-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gold-gradient);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .theme3-vm-card:hover::before {
        opacity: 0.05;
    }

    .theme3-vm-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-heavy);
    }

.theme3-vm-icon {
    width: 120px;
    height: 120px;
    background: var(--gold-gradient);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    font-size: 3rem;
    color: var(--dark-gray);
    position: relative;
    z-index: 2;
}

.theme3-vm-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.theme3-vm-description {
    font-size: 1.2rem;
    color: var(--medium-gray);
    line-height: 1.8;
    text-align: center;
    position: relative;
    z-index: 2;
}

.theme3-values-grid {
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.theme3-value-item {
    text-align: center;
    padding: 1.5rem;
}

.theme3-value-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.theme3-value-desc {
    color: var(--medium-gray);
    font-size: 0.9rem;
}
/* Footer Styles */
.theme3-footer {
    background: var(--primary-color);
    color: var(--white);
    margin-top: auto;
}

.theme3-footer-main {
    padding: 4rem 0 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.theme3-footer-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--white);
    text-decoration: none;
}

    .theme3-footer-logo:hover {
        color: var(--accent-gold);
    }

.theme3-footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.theme3-footer-social {
    display: flex;
    gap: 0.75rem;
}

.theme3-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

    .theme3-social-link:hover {
        background: var(--accent-gold);
        color: var(--dark-gray);
        transform: translateY(-2px);
    }

.theme3-footer-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
    position: relative;
    padding-bottom: 0.5rem;
}

    .theme3-footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 2px;
        background: var(--accent-gold);
    }

.theme3-footer-links {
    list-style: none;
    padding: 0;
}

    .theme3-footer-links li {
        margin-bottom: 0.5rem;
    }

.theme3-footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
}

    .theme3-footer-link:hover {
        color: var(--accent-gold);
        padding-left: 8px;
    }

.theme3-contact-item {
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.theme3-contact-icon {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-top: 2px;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.theme3-footer-bottom {
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.theme3-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.theme3-footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .theme3-footer-legal a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
        margin-right: 1.5rem;
    }

        .theme3-footer-legal a:hover {
            color: var(--accent-gold);
        }

/* Newsletter */
.theme3-newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 0.9rem;
}

    .theme3-newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .theme3-newsletter-input:focus {
        background: rgba(255, 255, 255, 0.15);
        border-color: var(--accent-gold);
        box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
        color: var(--white);
    }

.theme3-newsletter-btn {
    background: var(--accent-gold);
    border: none;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

    .theme3-newsletter-btn:hover {
        background: var(--light-gold);
        color: var(--dark-gray);
        transform: translateY(-1px);
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .theme3-footer-main {
        padding: 3rem 0 2rem;
    }

    .theme3-footer-brand {
        margin-bottom: 2rem;
    }

    .theme3-footer-legal a {
        margin-right: 1rem;
        margin-bottom: 0.5rem;
        display: inline-block;
    }
}

@media (max-width: 576px) {
    .theme3-footer-main {
        padding: 2.5rem 0 1.5rem;
    }

    .theme3-demo-content {
        padding: 2rem 0;
    }

    .theme3-demo-title {
        font-size: 2rem;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .theme3-hero-title {
        font-size: 2rem;
    }

    .theme3-hero-subtitle {
        font-size: 1.2rem;
    }

    .theme3-login-card {
        padding: 1rem;
    }

    .theme3-section-title {
        font-size: 2.5rem;
    }

    .theme3-cta-buttons {
        flex-direction: column;
    }

    .theme3-btn-primary-hero,
    .theme3-btn-secondary-hero {
        width: 100%;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.theme3-animate-on-scroll {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}


@media (max-width: 992px) {
.theme3-hero-section{
	padding-top:120px !important
}
}
