
:root {
    --primary: #2c9e6a;
    --secondary: #1a6b47;
    --accent: #f7c948;
    --light: #f8f9fa;
    --dark: #212529;
    --text-light: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: white;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    height: 60px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a:hover:after {
    width: 100%;
}

.hero {
    background: linear-gradient(135deg, rgba(44, 158, 106, 0.9), rgba(26, 107, 71, 0.9)), url('/api/placeholder/1200/800') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
    padding-top: 80px;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/api/placeholder/100/100') center/cover repeat;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-image {
    position: absolute;
    right: -5%;
    bottom: -10%;
    width: 45%;
    max-width: 600px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: var(--accent);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--dark);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 14px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background-color: white;
    color: var(--primary);
}

.btn-white {
    background-color: white;
    color: var(--primary);
    margin-left: 15px;
}

.btn-white:hover {
    background-color: var(--accent);
    color: var(--dark);
}

section {
    padding: 100px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    position: relative;
    color: var(--dark);
}

section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    margin: 15px auto 30px;
    border-radius: 2px;
}

section p.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 60px;
}

.features {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.features:before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(44, 158, 106, 0.05);
    z-index: 0;
}

.features:after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(247, 201, 72, 0.05);
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background-color: var(--primary);
    transition: height 0.3s;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-card:hover:before {
    height: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(44, 158, 106, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.product-header{
    margin-top: 15px;
}

.products {
    position: relative;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.product-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-card a {
    text-decoration: none;
    color: inherit; /* Ensures the text takes the parent’s color */
    display: block; /* Makes the entire card area clickable */
}

.product-card a:hover {
    text-decoration: none;
}


.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-details {
    padding: 25px 20px;
}

.product-details h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.product-details p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: block;
}

.rating {
    color: #ffc107;
    margin-bottom: 20px;
}

.btn-sm {
    padding: 10px 25px;
    font-size: 12px;
}

.process {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-steps:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 3px;
    background-color: var(--primary);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    width: 200px;
}

.process-step-number {
    width: 80px;
    height: 80px;
    background-color: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonials {
    position: relative;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 20px;
    position: relative;
}

.testimonial-card:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(44, 158, 106, 0.1);
    line-height: 1;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.testimonial-name p {
    color: var(--primary);
    font-size: 0.9rem;
}

.faq {
    background-color: var(--light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question:after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
}

.faq-answer {
    padding: 0 30px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('/api/placeholder/100/100') center/cover repeat;
    opacity: 0.05;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.cta h2:after {
    background-color: var(--accent);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: white;
    position: relative;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
}

.footer-col p, .footer-col address {
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-col ul li a:before {
    content: '›';
    margin-right: 8px;
    color: var(--primary);
    font-size: 1.2rem;
}

 .social-links {
            display: flex;
            gap: 15px;
            align-items: center;
            justify-content: center;
            margin: 20px 0;
        }
        
        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #f8f9fa;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .social-icon.facebook:hover {
            background-color: #3b5998;
        }
        
        .social-icon.instagram:hover {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }
        
        .social-icon.twitter:hover {
            background-color: #1da1f2;
        }
        
        .social-icon.linkedin:hover {
            background-color: #0077b5;
        }
        
        .social-icon.youtube:hover {
            background-color: #ff0000;
        }
        
        .social-icon:hover svg {
            fill: white;
        }
        
        .social-icon svg {
            width: 20px;
            height: 20px;
            fill: #333;
            transition: fill 0.3s ease;
        }

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 0.9rem;
}

.newsletter-form button {
    padding: 0 20px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: var(--accent);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-image {
        width: 40%;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-steps:before {
        display: none;
    }
    
    .process-step {
        margin-bottom: 50px;
    }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--dark);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 20px 0;
        z-index: 1000;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .hero {
        text-align: center;
        padding-bottom: 60px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-image {
        position: relative;
        width: 80%;
        margin: 40px auto 0;
        right: auto;
        bottom: auto;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slide {
    display: flex;
    align-items: center;
    width: 100%;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.slider-prev, .slider-next {
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--primary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    margin: 0 15px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover, .slider-next:hover {
    background-color: white;
    transform: scale(1.1);
}

.slider-indicators {
    display: flex;
    gap: 10px;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-indicator.active {
    background-color: white;
    transform: scale(1.2);
}

/* FAQ Accordion Styles */
.faq-question {
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    padding-right: 40px;
}

.faq-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--primary);
    transition: all 0.3s;
}

.faq-question.active:after {
    content: '−';
    transform: translateY(-50%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

/* Enhanced Mobile Menu Styles */
@media (max-width: 768px) {
    .header-content {
        padding: 15px 0;
    }
    
    
      .product-header{
            margin-top: 50px;
      }
    
    .logo {
        height: 50px;
    }
    
    .mobile-menu-toggle {
        display: block;
        font-size: 30px;
        transition: all 0.3s;
        z-index: 1010;
    }
    
    nav ul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        padding: 50px 0;
        box-shadow: none;
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }
    
    nav ul.active {
        display: flex;
        transform: translateX(0);
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    nav ul li a {
        font-size: 18px;
    }
    
    /* Hero section adjustments for mobile */
    .hero {
        padding-top: 80px;
        min-height: 80vh;
    }
    
    .hero-slide {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        order: 2;
    }
    
    .hero-image {
        position: relative;
        width: 80%;
        max-width: 300px;
        margin: 0 auto 30px;
        order: 1;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* Slider control adjustments */
    .slider-controls {
        bottom: 15px;
    }
    
    .slider-prev, .slider-next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Tablet Responsive Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-image {
        width: 45%;
        max-width: 400px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .feature-card h3,
    .product-details h3,
    .process-step h3 {
        font-size: 1.2rem;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 15px 40px 15px 20px;
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slide {
    display: flex;
    align-items: center;
    width: 100%;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.slider-prev, .slider-next {
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--primary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    margin: 0 15px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover, .slider-next:hover {
    background-color: white;
    transform: scale(1.1);
}

.slider-indicators {
    display: flex;
    gap: 10px;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-indicator.active {
    background-color: white;
    transform: scale(1.2);
}

/* FAQ Accordion Styles */
.faq-question {
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    padding-right: 40px;
}

.faq-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--primary);
    transition: all 0.3s;
}

.faq-question.active:after {
    content: '−';
    transform: translateY(-50%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

/* Enhanced Mobile Menu Styles */
@media (max-width: 768px) {
    .header-content {
        padding: 15px 0;
    }
    
    .logo {
        height: 50px;
    }
    
    .mobile-menu-toggle {
        display: block;
        font-size: 30px;
        transition: all 0.3s;
        z-index: 1010;
    }
    
    nav ul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        padding: 50px 0;
        box-shadow: none;
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }
    
    nav ul.active {
        display: flex;
        transform: translateX(0);
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    nav ul li a {
        font-size: 18px;
    }
    
    /* Hero section adjustments for mobile */
    .hero {
        padding-top: 80px;
        min-height: 80vh;
    }
    
    .hero-slide {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        order: 2;
    }
    
    .hero-image {
        position: relative;
        width: 80%;
        max-width: 300px;
        margin: 0 auto 30px;
        order: 1;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* Slider control adjustments */
    .slider-controls {
        bottom: 15px;
    }
    
    .slider-prev, .slider-next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Tablet Responsive Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-image {
        width: 45%;
        max-width: 400px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .feature-card h3,
    .product-details h3,
    .process-step h3 {
        font-size: 1.2rem;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 15px 40px 15px 20px;
    }
}



@media (max-width: 768px) {
    .header-content {
        position: relative;
        padding: 15px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        height: 50px;
        /* Ensure logo doesn't push menu toggle to center */
        margin-right: auto;
    }
    
     .mobile-menu-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1000;
  }
  
  nav ul {
    display: none;
  }
  
  nav ul.active {
     display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #00000094;
        align-items: center;
        justify-content: start;
        z-index: 999;
  }
  
  nav ul li {
    margin: 15px 0;
  }
}







@media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
            }

            nav ul {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background-color: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                z-index: 1000;
                margin: 0;
                padding: 0;
            }

            nav ul.active {
                display: flex;
            }

             nav ul li {
                margin: 0;
                text-align: left;
                background: #fff;
                width: 100%;
                padding: .5rem 1rem;
            }


            nav ul li a {
                font-size: 18px;
            }
        }
        
        
        
          .auth-section {
            padding: 105px 20px;
            background-color: #f9f9f9;
        }

        .auth-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .auth-subtitle {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: #666;
        }

        .auth-form {
            max-width: 600px;
            margin: 0 auto;
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .auth-form .form-group {
            margin-bottom: 20px;
        }

        .auth-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .auth-form input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .btn-submit {
            display: block;
            width: 100%;
            padding: 12px;
            background-color: #0e1a35;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            cursor: pointer;
        }

        .btn-submit:hover {
            background-color: #1c2a50;
        }

        #infoMessage {
            margin-top: 20px;
            padding: 15px;
            text-align: center;
            font-weight: bold;
            border-radius: 5px;
        }

        #infoMessage.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        #infoMessage.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
