@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Playfair+Display:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navbar Styling */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 3rem;

    position: sticky;
    top: 0;
    z-index: 1000;

    /* Transparent glass effect */
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* Soft separation */
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2d5016;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 3rem;
    width: auto;
    margin-left: auto;
}

.nav-list li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-list li a:hover {
    color: #4a7c2c;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4a7c2c;
    transition: width 0.3s ease;
}

.nav-list li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.firstSection {
    position: relative;
}

.box-main {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    max-width: 800px;
    text-align: center;
    z-index: 3;
    position: relative;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typography */
.text-big {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
}

.text-small {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    padding: 12px 32px;
    border: 2px solid white;
    border-radius: 50px;
    background: none;
    color: white;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #2d5016;
    border-color: #2d5016;
    color: white;
}

.btn-primary:hover {
    background: #4a7c2c;
    border-color: #4a7c2c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 80, 22, 0.3);
}

.btn-secondary {
    background: transparent;
    border-color: white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: #2d5016;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Sections */
.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 50px;
    width: 100%;
    gap: 60px;
    box-sizing: border-box;
}

.section-right {
    flex-direction: row-reverse;
}

.section-about,
.section-products,
.section-values {
    background: #fafaf8;
    margin: 0;
    border-radius: 0;
}

.paras {
    flex: 1;
    min-width: 300px;
}

.sectionTag {
    color: #2d5016;
    margin-bottom: 20px;
    display: block;
}

.sectionSubTag {
    color: #666;
    line-height: 1.8;
    font-weight: 300;
}

/* Thumbnails and Videos */
.thumbnail {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.section-image-large {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-image-large:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.thumbnail-video {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.thumbnail-video:hover {
    transform: translateY(-10px);
}

.imgFluid {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: block;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
    padding: 80px 50px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.contact-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 80, 22, 0.7);
    z-index: 2;
}

.text-center {
    text-align: center;
    color: white;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 3;
}

.contact-container {
    display: grid;
    grid-template-columns: 0.8fr 1fr 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 3;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 3;
    max-width: 300px;
}

.form-title {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-input,
textarea {
    padding: 10px 15px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    background: white;
    color: #333;
    transition: all 0.3s ease;
}

.form-input::placeholder,
textarea::placeholder {
    color: #999;
}

.form-input:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-dark {
    background: white;
    color: #2d5016;
    border: 2px solid white;
    font-weight: 700;
    align-self: flex-start;
    margin-top: 5px;
    padding: 8px 24px;
    font-size: 13px;
}

.btn-dark:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Info Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-left-color: rgba(255, 255, 255, 0.6);
    transform: translateX(5px);
}

.contact-label {
    font-weight: 700;
    color: white;
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Social Media Section */
.contact-social-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 3;
}

.social-title {
    color: white;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.social-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 300;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-weight: 500;
    font-size: 16px;
}

.social-link svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.social-link:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-link.facebook:hover {
    background: rgba(66, 103, 178, 0.3);
}

.social-link.twitter:hover {
    background: rgba(29, 161, 242, 0.3);
}

.social-link.instagram:hover {
    background: rgba(217, 61, 123, 0.3);
}

.social-link.linkedin:hover {
    background: rgba(0, 119, 181, 0.3);
}

.social-link.youtube:hover {
    background: rgba(255, 0, 0, 0.3);
}

/* Services Section */
.contact-services-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 25px;
    position: relative;
    z-index: 3;
}

.services-title {
    color: white;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-left-color: rgba(255, 255, 255, 0.6);
    transform: translateX(5px);
}

.service-icon {
    font-size: 20px;
    min-width: 24px;
}

.service-name {
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

/* Carousel Styling */
.section-carousel {
    padding: 60px 40px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    text-align: center;
}

.carousel-title {
    font-size: 36px;
    font-weight: 700;
    color: #2d5016;
    font-family: 'Playfair Display', serif;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

.carousel-grid-container {
    max-width: 1300px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
}

/* Center the last 2 items in the second row - Desktop only */
@media (min-width: 769px) {
    .gallery-item:nth-child(4) {
        grid-column: 2;
    }

    .gallery-item:nth-child(5) {
        grid-column: 3;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    aspect-ratio: 1;
    cursor: pointer;
    display: block;
}

.gallery-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(45, 80, 22, 0.95) 0%, rgba(45, 80, 22, 0.6) 60%, rgba(45, 80, 22, 0) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Mobile auto-hover (JS adds .visible) */
.gallery-item.visible .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.gallery-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-title {
        font-size: 28px;
    }
}

/* Footer */
.footer-section {
    /* background: rgba(26, 26, 26, 0.4); */
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(0px);
    padding: 40px 30px 5px 30px;
    text-align: center;
    border-top: 0px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 3;
    margin-top: 30px;
    width: 100%;
}

.text-footer {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Burger Menu */
.burger {
    display: none;
    position: absolute;
    cursor: pointer;
    right: 3rem;
    top: 1.5rem;
}

.line {
    width: 25px;
    background-color: #2d5016;
    height: 3px;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Smooth Scrolling and Transitions */
a {
    transition: all 0.3s ease;
}

/* Additional Enhancements */
video {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .section {
        flex-direction: column;
        padding: 40px 20px;
    }

    .section-right {
        flex-direction: column;
    }

    .text-big {
        font-size: 36px;
    }

    .text-small {
        font-size: 16px;
    }
}


