/* Custom Properties */
:root {
    --primary-color: #18ac20;
    --secondary-color: #34495e;
    --accent-color: #147c3f;
    --text-color: #333;
    --light-color: #ecf0f1;
    --dark-color: #1a570d;
    --transition: all 0.3s ease;
    --container-padding: clamp(1rem, 5vw, 2rem);
    --section-spacing: clamp(3rem, 8vw, 120px);
    --heading-size: clamp(2rem, 5vw, 3rem);
    --subheading-size: clamp(1rem, 3vw, 1.2rem);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    /* border-radius: 5px; */
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    padding-top: 70px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    width: 100%;
    padding: 1rem var(--container-padding);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    font-weight: bold;
    color: var(--primary-color);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 3vw, 2rem);
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}


/* Mobile Navigation */
@media (max-width: 1024px) {
    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-menu-container {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu-container.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 0.8rem;
    }
}

.nav-shop-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1a570d, #18ac20);
    color: #fff;
    font-size: 0.9rem; /* Reduced font size */
    font-weight: bold;
    padding: 8px 16px; /* Smaller padding */
    border: none;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Remove default link styling */
.nav-shop-btn a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

/* Hover Effect */
.nav-shop-btn:hover {
    background: linear-gradient(135deg, #18ac20, #1a570d);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Active/Click Effect */
.nav-shop-btn:active {
    transform: scale(0.96);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Mobile-Friendly Adjustments */
@media (max-width: 480px) {
    .nav-shop-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}



/* Hero Section */
.hero {
    height: clamp(635px, 80vh, 800px);
    position: relative;
    overflow: hidden;
    margin-top: -70px;
}

.slider {
    height: 100%;
    position: relative;
}

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

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8; /* Slightly darken the image */
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 800px;
    padding: 2rem;
}

.slide-content h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: fadeInDown 1s ease-out;
}

.slide-content p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
}

/* .slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 1rem;
}

.next {
    right: 1rem;
} */

/* About Section */
.about {
    padding: var(--section-spacing) 0;
    background: linear-gradient(120deg, #ffffff 0%, rgba(76, 175, 80, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    flex: 1;
    padding-right: clamp(1rem, 5vw, 3rem);
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.about-content h2 {
    font-size: var(--heading-size);
    color: var(--primary-color);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    position: relative;
    display: inline-block;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.about-image {
    position: relative;
    padding: 1rem;
}

.about-image::after {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 80%;
    height: 80%;
    border: 3px solid var(--primary-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    opacity: 0.2;
    transition: all 0.5s ease;
}

.about-image:hover::after {
    transform: scale(1.1) rotate(5deg);
    opacity: 0.3;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    filter: brightness(1.02) contrast(1.02);
}

.about-image:hover img {
    transform: translateY(-10px) scale(1.02);
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* About Section - Mission & Vision */
.mission-vision {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mission, .vision {
    padding: 1.5rem;
    background: rgba(76, 175, 80, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mission:hover, .vision:hover {
    background: rgba(76, 175, 80, 0.1);
    transform: translateY(-5px);
}

.mission h3, .vision h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.mission h3::after, .vision h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.mission p, .vision p {
    color: #666;
    line-height: 1.6;
}

/* Innovator Section */
.innovator {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(76, 175, 80, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.innovator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://res.cloudinary.com/dswfnaydo/image/upload/v1740409843/bamboo-pattern_kxjea4.png') repeat;
    opacity: 0.05;
    z-index: 1;
}

.innovator .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
}

.innovator-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}

.innovator-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    transition: all 0.6s ease;
}

.innovator-image:hover::before {
    transform: scale(1.05) rotate(-5deg);
    opacity: 0.15;
    border-radius: 30% 70% 50% 50% / 40% 40% 60% 60%;
}

.innovator-image img {
    width: 60%;
    max-width: 350px;
    height: auto;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.6s ease;
    filter: saturate(1.1);
}

.innovator-image:hover img {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
}

.innovator-content {
    padding: 1.5rem;
}

.innovator-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.innovator-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.innovator-content h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.innovator-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.experience-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.highlight-item {
    text-align: center;
    padding: 1.2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.highlight-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.highlight-text {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

/* Products Section */
.products {
    padding: 120px 0;
    background: linear-gradient(135deg, #fff 0%, rgba(76, 175, 80, 0.08) 100%);
    position: relative;
}

.products h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.products-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.products-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    padding: 1rem;
}

.product-card {
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card:hover img {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-info {
    text-align: center;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    background: transparent;
}

.product-info h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.product-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.product-card:hover .product-buttons {
    opacity: 1;
    transform: translateY(0);
}

.view-details, .shop-now {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.view-details {
    background: #f1f3f5;
    color: #495057;
}

.shop-now {
    background: var(--primary-color);
    color: white;
}

.view-details:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.shop-now:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .products {
        padding: 60px 0;
    }

    .products h2 {
        font-size: 2.5rem;
    }

    .products-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .products-slider {
        gap: 2rem;
    }

    .product-card img {
        height: 250px;
    }

    .product-buttons {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .products h2 {
        font-size: 2rem;
    }

    .products-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .product-card img {
        height: 200px;
    }

    .product-buttons {
        flex-direction: column;
    }
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-spacing) 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(76, 175, 80, 0.1) 100%);
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: inline-block;
    color: #4CAF50;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.section-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 1rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: clamp(1.5rem, 4vw, 2rem);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 3px solid #4CAF50;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    color: #333;
    font-size: 1.1rem;
    margin: 0 0 0.3rem 0;
    font-weight: 600;
}

.testimonial-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
}

.stars {
    color: #ffd700;
    font-size: 0.9rem;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

.testimonial-quote {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    color: rgba(76, 175, 80, 0.1);
    font-size: 3rem;
    line-height: 1;
}

@media screen and (max-width: 1024px) {
    .testimonials {
        padding: 5rem 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .testimonials-grid {
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .testimonials {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .about-image img,
    .innovator-image img {
        width: 80%;
        max-width: 350px;
    }
}

@media screen and (max-width: 480px) {
    .testimonials {
        padding: 3rem 0;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0.5rem;
    }

    .testimonial-image {
        width: 60px;
        height: 60px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonial-quote {
        font-size: 2.5rem;
    }

    .about-image img,
    .innovator-image img {
        width: 90%;
        max-width: 300px;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #defce9 0%, #caf1ca 100%);
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-in-out;
}

.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://res.cloudinary.com/dswfnaydo/image/upload/v1740738426/eco-friendly_bamboo_products_pfusik.webp') repeat;
    opacity: 0.05;
    z-index: -1;
}

.contact .section-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: slideIn 1s ease-out;
}

.contact h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    font-weight: 700;
}

.contact h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
    margin-top: 0.5rem;
    border-radius: 5px;
}

.contact .section-subtitle {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
}

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

.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(76, 175, 80, 0.1);
    transition: width 0.3s ease;
}

.contact-card:hover::before {
    width: 100%;
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.contact-card:hover i {
    transform: scale(1.2);
}

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

.contact-card p {
    color: #666;
    font-size: 1rem;
}

.contact-card a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-color);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
    display: block;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.1);
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.submit-btn:hover::before {
    width: 100%;
}

.submit-btn span {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.submit-btn:hover span {
    transform: translateX(5px);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(10px);
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-card {
        flex: 1 1 250px;
        margin: 0 0.5rem;
    }
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        padding: 1.5rem;
        text-align: center;
    }

    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact .section-header {
        margin-bottom: 2rem;
    }

    .contact-card {
        padding: 1.5rem;
        text-align: center;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: var(--section-spacing) 0 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    padding: 0 var(--container-padding);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4CAF50;
    margin: 0;
}

.footer-brand p {
    font-size: 1rem;
    color: #999;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links h3,
.footer-social h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1.5rem;
    position: relative;
    text-align: center;
}

.footer-links h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -0.5rem;
    width: 40px;
    height: 2px;
    background-color: #4CAF50;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
}

.footer-links ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4CAF50;
    transition: width 0.3s ease;
}

.footer-links ul li a:hover {
    color: #4CAF50;
}

.footer-links ul li a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid #333;
    border-radius: 5px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link:hover {
    color: #4CAF50;
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
    }

    .footer-links h3,
    .footer-social h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .social-links {
        gap: 0.8rem;
    }

    .social-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand,
    .footer-links,
    .footer-social {
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-links h3::after,
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }
}

/* Modal Structure */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 1000px;
    border-radius: 15px;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
    padding: 1rem;
}

.modal.active .modal-content {
    transform: scale(1);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Modal Header */
.modal-header {
    background: var(--primary-color, #f7dc6f);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-header h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
    flex-grow: 1;
    text-align: left;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
}

/* Modal Body */
.modal-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    overflow-y: hidden;
    align-items: start;
    background: white;
}

/* Product Image */
.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
    background: white;
    padding: 1rem;
}

/* Product Details */
.product-title {
    font-size: 1.5rem;
    color: var(--primary-color, #f7dc6f);
    margin: 0;
    font-weight: 600;
}

.product-price .amount {
    font-size: 1.5rem;
    color: var(--primary-color, #f7dc6f);
    font-weight: 600;
}

.product-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.btn-shop {
    padding: 1rem 2rem;
    margin-top: 70px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-shop {
    background: var(--primary-color, #f7dc6f);
    color: white;
    flex-grow: 1;
}

.btn-shop:hover {
    background: var(--accent-color, #e0ac1c);
    transform: translateY(-2px);
}

/* Stack buttons vertically on smaller screens */
@media (max-width: 768px) {
    .modal-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-close, .btn-shop {
        width: 100%;
    }
}

/* Animations Classes */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.slide-in {
    animation: slideIn 1s ease-out;
}

/* Modal animation */
@keyframes modalSlideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .innovator {
        padding: 60px 0;
    }

    .innovator .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .innovator-content {
        text-align: center;
        padding: 1rem;
    }

    .innovator-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .experience-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .innovator-content h2 {
        font-size: 2rem;
    }

    .innovator-content h3 {
        font-size: 1.3rem;
    }

    .innovator-content p {
        font-size: 1rem;
    }

    .innovator-image img {
        width: 70%;
        max-width: 300px;
    }

    .highlight-number {
        font-size: 2rem;
    }
}

/* General Responsive Improvements */
@media (max-width: 1024px) {
    .nav-menu-container {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu-container.active {
        transform: translateY(0);
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .about .container,
    .innovator .container {
        grid-template-columns: 1fr;
    }

    .about-image,
    .innovator-image {
        order: -1;
    }

    .about-image img,
    .innovator-image img {
        max-height: 300px;
        width: 100%;
        object-fit: cover;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero .slide-content {
        text-align: center;
        padding: 0 1rem;
    }

    .modal-content {
        margin: 1rem;
    }

    .modal-header {
        padding: 1rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .product-features {
        grid-template-columns: 1fr;
    }

    .footer-newsletter .form-group {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-newsletter button {
        width: 100%;
    }
}

.nav-menu a.active {
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive Modal Adjustments */
@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-height: none;
        overflow-y: auto;
    }

    .product-image {
        order: -1; /* Moves image to top */
    }

    .product-image img {
        height: 250px;
    }

    .product-info {
        text-align: center;
    }

    .modal-content {
        height: auto;
        max-height: 90vh;
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .modal-body {
        padding: 1rem;
        gap: 1rem;
    }

    .product-image img {
        height: 200px;
    }

    .product-title {
        font-size: 1.3rem;
    }

    .product-description {
        font-size: 0.95rem;
    }
}
