/* Variables */
:root {
    --primary: #59a511;
    --secondary: #ff9800;
    --accent: #2ecc71;
    --dark: #222832;
    --light: #f8f9fa;
    --gradient: linear-gradient(135deg, var(--primary), var(--accent));
}

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

/* Navigation z-index values */
.navbar {
    z-index: 100;
}

.menu-btn {
    z-index: 101;
}

main {
    position: relative;
    z-index: 1;
}
body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
}

/* Core Components */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: var(--gradient);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}
.logo {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
}
/* Modern Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 300px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 2rem;
}

.navbar.active {
    right: 0;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--dark);
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: linear-gradient(to right, transparent 50%, var(--light) 50%);
    background-size: 200% 100%;
    background-position: 0% 0%;
}

.nav-links a:hover {
    background-position: 100% 0%;
    color: var(--primary);
    transform: translateX(10px);
}

.menu-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 77, 46, 0.2);
}

.menu-btn i {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.menu-btn:hover {
    transform: scale(1.1);
}
.nav-logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    padding: 10px;
}

.nav-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        margin-top: 120px; /* Creates space below logo */
    }
}/* Buttons */
.cta-button, .submit-btn {
    background: var(--gradient);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover, .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.secondary-button {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.secondary-button:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(to right, #1a1a1a, #2d2d2d);
    color: #ffffff;
    padding: 60px 0 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

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

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

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary);
}

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

.social-links a {
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.powered-by a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}

.powered-by a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
.footer-about {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.footer-about h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 0 3%;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .cta-button, .submit-btn, .secondary-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}
.floating-logo {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: white;
    border-radius: 15px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.floating-logo img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.floating-logo img:hover {
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    .floating-logo {
        top: 15px;
        left: 15px;
        padding: 6px;
    }
    
    .floating-logo img {
        width: 50px;
        height: 50px;
    }
}
