:root {
    --primary-green: #2e7d32;
    --secondary-green: #4caf50;
    --accent-yellow: #ff9800;
    --light-green: #e8f5e9;
    --dark-green: #1b5e20;
    --brown: #5d4037;
    --light-brown: #8d6e63;
    --cream: #fff9f0;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #424242;
    --white: #ffffff;
    --shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    --border-radius: 10px;
    --border-radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream);
    color: var(--dark-gray);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
   
}

.container {
    width: 100%;
   
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    display: inline-block;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--light-brown);
    max-width: 700px;
    margin: 0 auto;
}

.title-decoration {
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-green), var(--accent-yellow));
    margin: 10px auto 30px;
    border-radius: 2px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 15px rgba(46, 125, 50, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(46, 125, 50, 0.4);
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.cta-button:hover:before {
    opacity: 1;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    padding: 5px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0;
    transition: var(--transition);
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 100px;
    width: auto;
    margin-right: 15px;
    border-radius: 5px;
}

.logo-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
}

.logo-text span {
    color: var(--accent-yellow);
}

.logo-tagline {
    font-size: 0.8rem;
    color: var(--light-brown);
    display: block;
    font-weight: 400;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    margin-left: 35px;
    font-weight: 500;
    font-size: 1.05rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s;
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-green);
}

.nav-links a.active:after {
    width: 100%;
}

.nav-cta {
    background-color: var(--primary-green);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 50px;
    margin-left: 35px;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.2);
}

.nav-cta:hover {
    background-color: var(--secondary-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(46, 125, 50, 0.3);
}

.nav-cta:after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-green);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(46, 125, 50, 0.2), rgba(255, 152, 0, 0.2));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.8rem;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.4rem;
    color: var(--light-gray);
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 80px;
}

.stat-item {
    text-align: center;
    padding: 0 20px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--light-gray);
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 500px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--light-brown);
}

.about-details {
    margin-top: 30px;
}

.detail-item {
    display: flex;
    margin-bottom: 15px;
}

.detail-icon {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
}

/* Products Section */
.products-section {
    background-color: var(--light-green);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.product-img {
    height: 220px;
    background-color: var(--light-gray);
    background-size: cover;
    background-position: center;
    transition: transform 0.6s;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-content {
    padding: 30px;
}

.product-category {
    display: inline-block;
    background-color: var(--accent-yellow);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.product-card p {
    color: var(--light-brown);
    margin-bottom: 20px;
}

/* Certificates Section */
.certificates-section {
    background-color: var(--white);
}

.certificates-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.certificate-card {
    background: var(--light-green);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    width: 300px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.certificate-icon {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.certificate-card h3 {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.certificate-card p {
    color: var(--light-brown);
}

/* Achievements Section */
.achievements-section {
    background-color: var(--light-gray);
}

.achievements-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.achievement-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.achievement-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
    display: block;
}

.achievement-item h3 {
    font-size: 1.3rem;
    color: var(--dark-green);
    margin-bottom: 10px;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 250px;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}



/* Contact Section */
.contact-section {
    background-color: var(--light-green);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    color: var(--accent-yellow);
    font-size: 1.5rem;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-green);
}

.contact-text p {
    color: var(--light-brown);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-green);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-green), #1b5e20);
    color: var(--light-gray);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-family: 'Roboto', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 20px;
    display: block;
}

.footer-tagline {
    color: var(--light-green);
    opacity: 0.8;
    margin-bottom: 25px;
}

.footer-column h4 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-yellow);
}

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

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

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--accent-yellow);
    opacity: 1;
    padding-left: 5px;
}

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

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--accent-yellow);
    transform: translateY(-5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--light-gray);
    opacity: 0.7;
}

.gst-info {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 20px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-green);
    transform: translateY(-5px);
}

/* Breadcrumb */
.breadcrumb {
    background-color: var(--light-green);
    padding: 20px 0;
    margin-bottom: 50px;
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 10px;
    color: var(--light-brown);
}

.breadcrumb .current {
    color: var(--dark-brown);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .hero h1, .page-header h1 {
        font-size: 3.2rem;
    }
    
    .section-title h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        margin: 15px 0;
    }
    
    .nav-cta {
        margin: 15px 0 0 0;
    }
    
    .hero, .page-header {
        padding: 120px 0 80px;
    }
    
    .hero h1, .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero p, .page-header p {
        font-size: 1.1rem;
    }
    
    section {
        padding: 70px 0;
    }
    
    .about-content, .contact-container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1, .page-header h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-item {
        padding: 0 10px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
}

/* Wide Banner Section Styles */
.wide-banner-section {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin: 0;
    background: var(--dark-green);
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.8) 0%, rgba(76, 175, 80, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.banner-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease-out;
}

.banner-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease-out 0.2s both;
}

.banner-cta {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--dark-green);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
    animation: slideInUp 1s ease-out 0.4s both;
}

.banner-cta:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 152, 0, 0.4);
}

/* Banner Navigation */
.banner-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
    pointer-events: none;
}

.banner-prev,
.banner-next {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.banner-prev:hover,
.banner-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

/* Banner Dots */
.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.banner-dot.active,
.banner-dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Banner Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Banner Styles */
@media (max-width: 768px) {
    .wide-banner-section {
        height: 300px;
    }
    
    .banner-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .banner-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .banner-cta {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .banner-nav {
        padding: 0 20px;
    }
    
    .banner-prev,
    .banner-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .wide-banner-section {
        height: 250px;
    }
    
    .banner-content h2 {
        font-size: 1.6rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .banner-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
/* Enhanced Navbar Fixes */
.nav-container {
    min-height: 80px;
}

/* Fix logo alignment */
.logo-container {
    flex-shrink: 0;
    max-width: 300px;
}

.logo-img {
    flex-shrink: 0;
}

.logo-text {
    line-height: 1.2;
    white-space: nowrap;
}

/* Ensure nav links don't wrap */
.nav-links {
    flex-wrap: nowrap;
}

/* Fix for long navigation text */
.nav-links a {
    white-space: nowrap;
    font-size: 1rem;
}

/* Better mobile menu positioning */
@media (max-width: 768px) {
    .nav-links {
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: var(--white);
        border-top: 1px solid var(--light-gray);
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-tagline {
        font-size: 0.7rem;
    }
    
    .logo-img {
        height: 60px;
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-tagline {
        font-size: 0.6rem;
    }
    
    .logo-img {
        height: 50px;
        margin-right: 8px;
    }
    
    .nav-container {
        min-height: 70px;
        padding: 10px 0;
    }
}

/* Fix z-index issues */
header {
    z-index: 10000;
}

.nav-links {
    z-index: 9999;
}

/* Smooth transitions */
.nav-links a {
    transition: all 0.3s ease;
}

/* Active state enhancement */
.nav-links a.active {
    font-weight: 600;
}

/* Hover effects enhancement */
.nav-links a:hover {
    transform: translateY(-1px);
}

.nav-cta:hover {
    transform: translateY(-2px);
}
