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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.logo {
    height: 120px;
    width: auto;
    opacity: 1 !important;
    background: transparent;
    display: block;
    max-width: none;
    object-fit: contain;
    transform: scale(1.5);
}

.company-name-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5530;
    margin-left: 35px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2c5530;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 250px;
    max-width: 300px;
    max-height: 70vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    list-style: none;
    z-index: 9999;
    border: 1px solid rgba(0,0,0,0.08);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Smart positioning for dropdown to prevent viewport clipping */
.dropdown-menu {
    scrollbar-width: thin;
    scrollbar-color: #2c5530 #f1f1f1;
}

.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #2c5530;
    border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #1e3a21;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #2c5530;
    padding-left: 25px;
}

/* Add a subtle fade-in animation for dropdown items */
.dropdown-menu li {
    opacity: 0;
    animation: fadeInUp 0.3s ease forwards;
}

.dropdown-menu li:nth-child(1) { animation-delay: 0.05s; }
.dropdown-menu li:nth-child(2) { animation-delay: 0.1s; }
.dropdown-menu li:nth-child(3) { animation-delay: 0.15s; }
.dropdown-menu li:nth-child(4) { animation-delay: 0.2s; }
.dropdown-menu li:nth-child(5) { animation-delay: 0.25s; }
.dropdown-menu li:nth-child(6) { animation-delay: 0.3s; }
.dropdown-menu li:nth-child(7) { animation-delay: 0.35s; }
.dropdown-menu li:nth-child(8) { animation-delay: 0.4s; }
.dropdown-menu li:nth-child(9) { animation-delay: 0.45s; }
.dropdown-menu li:nth-child(10) { animation-delay: 0.5s; }
.dropdown-menu li:nth-child(11) { animation-delay: 0.55s; }
.dropdown-menu li:nth-child(12) { animation-delay: 0.6s; }

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.hamburger:hover {
    background: rgba(154, 205, 50, 0.1);
}

.hamburger.active {
    background: rgba(154, 205, 50, 0.15);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    transform-origin: center;
    position: relative;
}

/* Add a subtle pulse animation when transitioning */
.hamburger.active span {
    animation: pulse 0.3s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Default hamburger state - 3 lines */
.hamburger span:nth-child(1) {
    transform: translateY(0) rotate(0deg);
    background: #333;
}

.hamburger span:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    background: #333;
}

.hamburger span:nth-child(3) {
    transform: translateY(0) rotate(0deg);
    background: #333;
}

/* Active state - X icon */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px) !important;
    background: #9acd32 !important;
}

.hamburger.active span:nth-child(2) {
    opacity: 0 !important;
    transform: translateX(20px) !important;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px) !important;
    background: #9acd32 !important;
}

/* Mobile Navigation Menu */
.mobile-nav {
    position: fixed;
    top: 150px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transform: translateY(-100%);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 0;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 0 0 15px 15px;
    display: none !important;
}

.mobile-nav.active {
    transform: translateY(0);
    display: block !important;
}

.mobile-nav:not(.active) {
    display: none !important;
}

.mobile-nav-menu {
    list-style: none;
    padding: 15px 0;
    margin: 0;
    overflow: visible;
}

.mobile-nav-menu li {
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-menu li.animate-in {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.mobile-nav-menu li.animate-out {
    opacity: 0 !important;
    transform: translateX(-30px) !important;
}

.mobile-nav-menu li:last-child {
    border-bottom: none;
}

.mobile-nav-menu a {
    display: block;
    padding: 12px 25px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(154, 205, 50, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-menu a:hover::before {
    left: 100%;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
    background: #f8f9fa;
    color: #2c5530;
    padding-left: 35px;
    transform: translateX(5px);
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mobile-dropdown-header .nav-link {
    flex: 1;
    margin: 0;
}

.mobile-dropdown-toggle {
    background: none;
    border: none;
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-dropdown-toggle:hover {
    background-color: #f8f9fa;
}

.dropdown-arrow {
    font-size: 0.8rem;
    color: #2c5530;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-left: 3px solid #2c5530;
}

.mobile-submenu.active {
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #2c5530 #f1f1f1;
}

.mobile-submenu::-webkit-scrollbar {
    width: 6px;
}

.mobile-submenu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.mobile-submenu::-webkit-scrollbar-thumb {
    background: #2c5530;
    border-radius: 3px;
}

.mobile-submenu::-webkit-scrollbar-thumb:hover {
    background: #1e3a21;
}

.mobile-submenu li {
    border-bottom: 1px solid #e0e0e0;
    margin: 0;
}

.mobile-submenu li:last-child {
    border-bottom: none;
}

.mobile-submenu li a {
    display: block;
    padding: 12px 25px 12px 40px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border-left: 3px solid transparent;
}

.mobile-submenu li a:hover {
    background-color: #e8f5e8;
    color: #2c5530;
    border-left-color: #2c5530;
    padding-left: 45px;
}


.mobile-nav-overlay {
    position: fixed;
    top: 150px;
    left: 0;
    width: 100%;
    height: calc(100vh - 150px);
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: none !important;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
    display: block !important;
}

.mobile-nav-overlay:not(.active) {
    display: none !important;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 140px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    background-image: url('homefarmgif.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin-top: 80px;
    margin-bottom: 0;
    transform: none !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.8) 0%, rgba(74, 124, 89, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 14px;
    opacity: 0.9;
}

.know-more {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: #ffd700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-explore {
    background: #9acd32;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-explore:hover {
    background: #1e3d22;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}



/* About Section */
.about {
    padding: 80px 0;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c5530;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    text-align: left;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.about-image {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: block;
    opacity: 1 !important;
    object-fit: cover;
}

/* Why Deccan Valley Agro Section */
.why-deccan-valley {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
}

.why-deccan-valley h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c5530;
    text-align: center;
    font-weight: 700;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #2c5530;
}

.feature-item i {
    color: #2c5530;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item span {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
}

.btn-primary {
    background: #9acd32;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-primary:hover {
    background: #1e3d22;
    transform: translateY(-2px);
}

/* Infrastructure Section */
.infrastructure {
    padding: 80px 0;
    background: #f8f9fa;
}

.infrastructure h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c5530;
}

.infra-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.infra-image {
    position: relative;
    overflow: hidden;
}

.infra-image img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.infra-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.infra-section {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.infra-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c5530;
}

.infra-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Infrastructure Gallery */
.infra-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.infra-gallery img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}

.btn-read-more {
    background: #9acd32;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: none;
}

.btn-read-more:hover {
    background: #1e3d22;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Pillars Section */
.pillars {
    padding: 80px 0;
    background: #9acd32;
}

.pillars h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.pillar-item {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    transition: none;
}

.pillar-item:hover {
    transform: none;
}

.pillar-item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
    line-height: 1.3;
}

.pillar-item p {
    color: white;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Pillars section Read More buttons */
.pillars .btn-read-more {
    background: white;
    color: #2c5530;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: none;
}

.pillars .btn-read-more:hover {
    background: #2c5530;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Certifications Section */
.certifications {
    padding: 80px 0;
    background: #f8f9fa;
}

.certifications h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c5530;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.cert-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 0 auto;
}

.cert-item {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

.cert-item:hover {
    transform: none;
}

.cert-link {
    text-decoration: none;
    color: inherit;
    display: block;
    text-align: center;
}

.cert-link:hover {
    text-decoration: none;
    color: inherit;
}

.cert-placeholder {
    width: 80px;
    height: 80px;
    background: #2c5530;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    margin: 0 auto 10px;
}

.cert-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto 10px;
    display: block;
}

.cert-item span {
    font-weight: 600;
    color: #2c5530;
    display: block;
    margin-top: 10px;
}


/* Contact Section */
.contact {
    padding: 80px 0;
    background: #e8f5e8;
    color: #333;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c5530;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c5530;
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #333;
}

.contact-detail {
    margin-bottom: 25px;
    line-height: 1.6;
    color: #333;
}

.contact-detail strong {
    color: #2c5530;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5530;
}

.btn-submit {
    background: #9acd32;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #1e3d22;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: white;
    color: #333;
    padding: 50px 0 0;
}

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


.footer-section h4 {
    color: #9acd32;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-contact p {
    margin-bottom: 8px;
    line-height: 1.5;
    color: #333;
}

.footer-contact strong {
    color: #2c5530;
    font-weight: 600;
}

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

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

.footer-section ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #9acd32;
}

/* Social Media Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    padding: 8px 0;
}

.social-link:hover {
    color: #9acd32;
}

.social-link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.social-link span {
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    color: #333;
    margin-top: 30px;
}

.footer-image {
    margin-top: 30px;
    text-align: center;
    width: 100vw;
    padding: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
}

.footer-bg-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    box-shadow: none;
    display: block;
}


.safety-practices {
    padding: 80px 0;
    background: white;
}

.practices-content h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 30px;
    text-align: center;
}

.practices-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.practices-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.practice-image {
    text-align: center;
}

.practice-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.practice-image p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5530;
    margin: 0;
}

.policy-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.policy-content {
    text-align: center;
}

.policy-content h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 40px;
}

.policy-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.certifications-section {
    padding: 80px 0;
    background: white;
}

.certifications-content h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 30px;
    text-align: center;
}

.certifications-content h3 {
    font-size: 2rem;
    color: #9acd32;
    margin: 50px 0 30px;
    text-align: center;
}

.certifications-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.certifications-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

.cert-item:last-child {
    border-bottom: none;
}

.cert-item:hover {
    transform: none;
    box-shadow: none;
}

.cert-logo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.cert-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.cert-placeholder {
    width: 120px;
    height: 120px;
    background: #9acd32;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 10px;
    text-align: center;
}

.cert-content {
    flex: 1;
    text-align: left;
}

.cert-content h4 {
    font-size: 1.5rem;
    color: #2c5530;
    margin-bottom: 10px;
    font-weight: 700;
}

.cert-content h5 {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.cert-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.cert-link {
    display: inline-block;
    background: #9acd32;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #9acd32;
}

.cert-link:hover {
    background: #1e3d22;
    border-color: #1e3d22;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 61, 34, 0.3);
}

.policy-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.policy-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.policy-content h2 {
    color: #2c5530;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.policy-image {
    margin-top: 30px;
}

.policy-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* PR & Media Page Styles */
.pr-media-hero {
    background: url('prmediahero.webp') center/cover no-repeat;
    color: white;
    padding: 180px 0 80px;
    margin-top: 150px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pr-media-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.pr-media-hero .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pr-media-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.pr-media-hero p {
    font-size: 1.2rem;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


.media-coverage {
    padding: 80px 0;
    background: white;
}

.media-coverage h2 {
    text-align: center;
    color: #2c5530;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.media-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.media-item {
    display: flex;
    align-items: stretch;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    min-height: 200px;
}

.media-item:last-child {
    border-bottom: none;
}

.media-image {
    flex-shrink: 0;
    width: 300px;
    display: flex;
    flex-direction: column;
}

.media-image img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
}

.image-caption {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
    margin-top: 10px;
    line-height: 1.4;
}

.media-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.media-content h3 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 600;
}

.media-content h4 {
    color: #9acd32;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 500;
}

.media-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.quotes-section {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-bubble {
    background: #f8f9fa;
    border-left: 4px solid #9acd32;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.quote-bubble::before {
    content: '"';
    font-size: 3rem;
    color: #9acd32;
    position: absolute;
    top: -5px;
    left: 15px;
    font-family: serif;
    line-height: 1;
}

.quote-text {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 20px;
    font-style: italic;
}

.quote-author {
    color: #2c5530;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: right;
    margin-bottom: 0;
    font-style: normal;
}

.benefits-section {
    margin: 30px 0;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #9acd32;
}

.benefits-section h5 {
    color: #2c5530;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 0;
}

.benefits-section h5:first-child {
    margin-top: 0;
}

.benefits-section ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.benefits-section ul:last-child {
    margin-bottom: 0;
}

.benefits-section li {
    color: #333;
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-section h2 {
    text-align: center;
    color: #2c5530;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.gallery-item {
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}





@media (max-width: 480px) {
    
    .pr-media-hero {
        padding: 140px 0 40px;
        margin-top: 150px;
        padding-top: 50px;
    }
    
    .pr-media-hero h1 {
        font-size: 2rem;
    }
    
    .pr-media-hero p {
        font-size: 0.9rem;
    }
    
    .featured-section h2,
    .media-coverage h2,
    .gallery-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .media-content h3 {
        font-size: 1.1rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    
    .pr-media-hero {
        padding: 160px 0 60px;
        margin-top: 150px;
        padding-top: 60px;
    }
    
    .pr-media-hero h1 {
        font-size: 2.5rem;
    }
    
    .pr-media-hero p {
        font-size: 1rem;
    }
    
    
    .media-list {
        gap: 30px;
    }
    
    .media-item {
        flex-direction: column;
        gap: 20px;
        padding: 15px 0;
    }
    
    .media-image {
        width: 100%;
        height: 250px;
    }
    
    .media-content {
        text-align: center;
    }
    
    .quotes-section {
        margin: 20px 0;
        gap: 15px;
    }
    
    .quote-bubble {
        padding: 15px;
    }
    
    .quote-bubble::before {
        font-size: 2.5rem;
        top: -3px;
        left: 10px;
    }
    
    .quote-text {
        font-size: 0.9rem;
        padding-left: 15px;
    }
    
    .quote-author {
        font-size: 0.8rem;
    }
    
    .benefits-section {
        margin: 20px 0;
        padding: 20px;
    }
    
    .benefits-section h5 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .benefits-section li {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    .practices-content h2,
    .policy-content h2,
    .certifications-content h2 {
        font-size: 1.8rem;
    }
    
    .certifications-content h3 {
        font-size: 1.3rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-hero {
    background: linear-gradient(135deg, #2c5530 0%, #9acd32 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.privacy-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.privacy-hero p {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
}

.privacy-content {
    padding: 120px 0 80px;
    background: #f8f9fa;
    min-height: 50vh;
    position: relative;
    z-index: 1;
}

.privacy-content .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.privacy-content h1 {
    color: #2c5530;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 30px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #9acd32;
}

.privacy-content h2 {
    color: #2c5530;
    font-size: 2rem;
    font-weight: 700;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #9acd32;
}

.privacy-content h3 {
    color: #2c5530;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 15px;
}

.privacy-content h4 {
    color: #2c5530;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 20px 0 10px;
}

.privacy-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.privacy-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 10px;
}

.privacy-content strong {
    color: #2c5530;
    font-weight: 600;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 140px 0 60px;
    }
    
    .privacy-content .content-wrapper {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .privacy-content h1 {
        font-size: 2.2rem;
    }
    
    .privacy-content h2 {
        font-size: 1.8rem;
    }
    
    .privacy-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 120px 0 40px;
    }
    
    .privacy-content .content-wrapper {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .privacy-content h1 {
        font-size: 1.8rem;
    }
    
    .privacy-content h2 {
        font-size: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        margin-right: 30px;
    }
    
    .hamburger span {
        background: #9acd32;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    .mobile-nav-overlay.active {
        display: block;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 0 40px;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 20px;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-image img {
        max-width: 100%;
    }
    
    .why-deccan-valley {
        padding: 60px 0;
    }
    
    .why-deccan-valley h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .why-features {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-item i {
        font-size: 1.3rem;
    }
    
    .feature-item span {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .social-links {
        align-items: center;
    }
    
    .social-link {
        justify-content: center;
    }
    
    .infra-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .infra-gallery {
        flex-direction: column;
        gap: 15px;
    }
    
    .infra-gallery img {
        height: 200px;
    }
    
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
}

@media (max-width: 480px) {
    .hamburger {
        margin-right: 25px;
    }
    
    .hero {
        padding: 70px 0 30px;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content {
        gap: 20px;
    }
    
    .about-image {
        margin-bottom: 15px;
    }
    
    .why-deccan-valley {
        padding: 40px 0;
    }
    
    .why-deccan-valley h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .why-features {
        padding: 0 15px;
        gap: 15px;
    }
    
    .feature-item {
        padding: 12px;
        gap: 12px;
    }
    
    .feature-item i {
        font-size: 1.2rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .social-link {
        padding: 6px 0;
    }
    
    .social-link i {
        font-size: 1.1rem;
    }
    
    .social-link span {
        font-size: 0.9rem;
    }
}

/* Image display fixes */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Section sliding animation */
.section-slide-up {
    opacity: 1;
    transform: translateY(0);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-slide-up.animate {
    opacity: 1;
    transform: translateY(0);
}

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Our Story Page Styles */
.story-hero {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.story-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.story-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.story-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    align-items: flex-start;
    gap: 40px;
}

.timeline-year {
    background: #9acd32;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 100px;
    text-align: center;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.mission-vision {
    padding: 80px 0;
    background: white;
}

.mission-vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.mission, .vision {
    text-align: center;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.mission {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.vision {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
}

.mission h2, .vision h2 {
    color: #2c5530;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.mission p, .vision p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.values {
    padding: 80px 0;
    background: #f8f9fa;
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c5530;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item h3 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.leadership {
    padding: 80px 0;
    background: white;
}

.leadership h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c5530;
}

.leadership-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.leadership-text p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.story-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c5530;
    transform: translateY(-2px);
}

/* Responsive Design for Our Story Page */
@media (max-width: 768px) {
    .story-hero {
        padding: 100px 0 60px;
    }
    
    .story-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-subtitle {
        font-size: 1.1rem;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .timeline-year {
        align-self: center;
    }
    
    .mission-vision-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #9acd32;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #1e3d22;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* Responsive adjustments for back to top button */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* Products Page Styles */
.products-hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    color: white;
    margin-top: 80px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    z-index: 1;
}

.products-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.products-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.products-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.products-section {
    padding: 80px 0;
}

.products-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c5530;
}

.crops-section {
    background: #f8f9fa;
}

.fruits-section {
    background: #9acd32;
}

.products-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.products-scroll-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.products-scroll {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-scroll::-webkit-scrollbar {
    display: none;
}

.products-scroll .product-item {
    flex: 0 0 200px;
    min-width: 200px;
}

.scroll-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.scroll-arrow {
    background: #9acd32;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-arrow:hover {
    background: #7cb342;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-arrow svg {
    width: 24px;
    height: 24px;
    color: white;
}

.product-item {
    text-align: left;
    padding: 20px;
    background: white;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-name {
    color: #2c5530;
    font-size: 1rem;
    font-weight: 600;
    padding: 0 0 10px 0;
    margin: 0 0 15px 0;
    text-align: left;
    word-wrap: break-word;
    flex-shrink: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 0;
}

.product-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

/* Mobile Responsive for Products */
@media (max-width: 768px) {
    .products-hero {
        padding: 140px 0 60px;
        margin-top: 100px;
    }
    
    .products-hero h1 {
        font-size: 2.5rem;
    }
    
    .products-hero p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .products-section {
        padding: 60px 0;
    }
    
    .products-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .products-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .products-scroll-container {
        padding: 0 20px;
    }
    
    .products-scroll {
        gap: 20px;
        padding: 15px 0;
    }
    
    .products-scroll .product-item {
        flex: 0 0 150px;
        min-width: 150px;
        padding: 15px;
    }
    
    .scroll-arrow {
        width: 40px;
        height: 40px;
    }
    
    .scroll-controls {
        gap: 15px;
        margin-top: 15px;
    }
    
    .product-item {
        padding: 15px;
    }
    
    .product-image-container {
        height: 150px;
    }
    
    .product-name {
        font-size: 0.9rem;
        text-decoration: underline;
        text-underline-offset: 2px;
        text-decoration-thickness: 1.5px;
    }
}

@media (max-width: 480px) {
    .products-hero {
        margin-top: 90px;
    }
    
    .products-hero h1 {
        font-size: 2rem;
    }
    
    .infra-gallery {
        flex-direction: column;
        gap: 10px;
    }
    
    .infra-gallery img {
        height: 180px;
    }
    
    .products-list {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .products-scroll-container {
        padding: 0 15px;
    }
    
    .products-scroll {
        gap: 15px;
        padding: 10px 0;
    }
    
    .products-scroll .product-item {
        flex: 0 0 120px;
        min-width: 120px;
        padding: 10px;
    }
    
    .scroll-arrow {
        width: 35px;
        height: 35px;
    }
    
    .scroll-controls {
        gap: 10px;
        margin-top: 10px;
    }
    
    .product-item {
        padding: 10px;
    }
    
    .product-image-container {
        height: 120px;
    }
    
    .product-name {
        font-size: 0.8rem;
        text-decoration: underline;
        text-underline-offset: 2px;
        text-decoration-thickness: 1px;
    }
}

/* Product Details Page Styles */
.product-detail-hero {
    padding: 160px 0 80px;
    background: #f8f9fa;
    margin-top: 80px;
    text-align: center;
}

.product-hero-content h1 {
    font-size: 3.5rem;
    color: #2c5530;
    margin-top: 30px;
    margin-bottom: 0;
    font-weight: 700;
}

.product-hero-image {
    max-width: 300px;
    margin: 0 auto;
}

.hero-product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #2c5530;
    font-size: 1.1rem;
}

.spec-value {
    color: #333;
    font-size: 1.1rem;
}

.product-specifications {
    padding: 80px 0;
    background: white;
}

.product-specifications h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 50px;
    font-weight: 700;
}

.specs-table-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    overflow: hidden;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.specs-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.specs-table tr:hover {
    background-color: #e8f5e8;
}

.specs-table .spec-label {
    font-weight: 600;
    color: #2c5530;
    padding: 20px 30px;
    width: 40%;
    vertical-align: top;
    border-right: 1px solid #e0e0e0;
    font-size: 1.1rem;
}

.specs-table .spec-value {
    color: #333;
    padding: 20px 30px;
    width: 60%;
    vertical-align: top;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Table Header Styles */
.specs-table th {
    background-color: #2c5530;
    color: white;
    font-weight: 600;
    padding: 20px 15px;
    text-align: center;
    font-size: 1.1rem;
    border: 1px solid #1e3a22;
}

.specs-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
    vertical-align: middle;
}

/* Packaging Info Styles */
.packaging-info {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 0;
    border-left: 4px solid #2c5530;
}

.packaging-info h3 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.packaging-info p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Customization Note Styles */
.customization-note {
    background-color: #e8f5e8;
    color: #2c5530;
    padding: 20px 30px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #2c5530;
}

.customization-note p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.customization-note strong {
    color: #2c5530;
    font-weight: 600;
}

/* Mobile Responsive for Product Details */
@media (max-width: 768px) {
    .product-detail-hero {
        padding: 140px 0 60px;
        margin-top: 100px;
    }
    
    .product-hero-content h1 {
        font-size: 2.5rem;
        margin-top: 25px;
        margin-bottom: 0;
    }
    
    .product-hero-image {
        max-width: 250px;
    }
    
    .hero-product-image {
        height: 150px;
    }
    
    .specs-table-container {
        margin: 0 20px;
    }
    
    .specs-table .spec-label {
        padding: 15px 20px;
        font-size: 1rem;
        width: 35%;
    }
    
    .specs-table .spec-value {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .specs-table th {
        padding: 15px 10px;
        font-size: 1rem;
    }
    
    .specs-table td {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
    
    .packaging-info {
        margin: 20px 0;
        padding: 15px;
    }
    
    .packaging-info h3 {
        font-size: 1.2rem;
    }
    
    .packaging-info p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .product-detail-hero {
        margin-top: 90px;
    }
    
    .product-hero-content h1 {
        font-size: 2rem;
        margin-top: 20px;
        margin-bottom: 0;
    }
    
    .product-hero-image {
        max-width: 200px;
    }
    
    .hero-product-image {
        height: 120px;
    }
    
    .product-specifications h2 {
        font-size: 2rem;
    }
    
    .specs-table-container {
        margin: 0 15px;
    }
    
    .specs-table .spec-label {
        padding: 12px 15px;
        font-size: 0.9rem;
        width: 30%;
    }
    
    .specs-table .spec-value {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .specs-table th {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
    
    .specs-table td {
        padding: 10px 6px;
        font-size: 0.8rem;
    }
    
    .packaging-info {
        margin: 15px 0;
        padding: 12px;
    }
    
    .packaging-info h3 {
        font-size: 1.1rem;
    }
    
    .packaging-info p {
        font-size: 0.9rem;
    }
    
    .customization-note {
        margin: 15px 0;
        padding: 15px 20px;
    }
    
    .customization-note p {
        font-size: 14px;
    }
}

/* Mobile footer left alignment for all pages */
@media (max-width: 768px) {
    .footer-content {
        text-align: left !important;
    }
    
    .footer-section {
        text-align: left !important;
    }
    
    .footer-section h4 {
        text-align: left !important;
    }
    
    .footer-section ul {
        text-align: left !important;
    }
    
    .footer-section p {
        text-align: left !important;
    }
    
    .social-links {
        align-items: flex-start !important;
        justify-content: flex-start !important;
        text-align: left !important;
    }
    
    .social-link {
        justify-content: flex-start !important;
        text-align: left !important;
    }
    
    .social-link span {
        text-align: left !important;
    }
    
    .footer-bottom {
        text-align: left !important;
    }
    
    .footer-bottom p {
        text-align: left !important;
    }
}
