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

:root {
    --primary-color: #1a5d1a;
    --secondary-color: #2d7a2d;
    --accent-color: #4a9e4a;
    --text-color: #2c3e50;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --dark-green: #0d3d0d;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #1a5d1a 0%, #2d7a2d 50%, #4a9e4a 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(26, 93, 26, 0.9) 0%, rgba(45, 122, 45, 0.8) 100%);
}

body {
    font-family: 'Inter', 'Noto Sans Kannada', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--white);
}

body.kannada {
    font-family: 'Noto Sans Kannada', 'Inter', sans-serif;
}

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

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    color: var(--white);
}

.loader-inner {
    width: 70px;
    height: 70px;
    border: 6px solid rgba(255, 255, 255, 0.3);
    border-top: 6px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 25px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.loader p {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
}

.logo {
    width: 85px;
    height: 85px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.company-name h1 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.company-name p {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 500;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--primary-color);
    padding: 20px 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 999;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    border-radius: 12px;
    min-width: 140px;
    text-align: center;
    line-height: 1.4;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: var(--white);
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.dropdown-menu a::after {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-toggle {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.lang-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.lang-toggle i {
    font-size: 16px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    padding: 50px 0 40px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.page-subtitle {
    font-size: 16px;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    max-height: 900px;
    overflow: hidden;
    margin-top: 0;
    background: #4bb14c;
}


.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4bb14c;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: opacity 0.3s ease;
}


.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 24px;
    padding: 18px 22px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

.slider-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.15);
    box-shadow: var(--shadow-lg);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 90%;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.dot.active,
.dot:hover {
    background: var(--white);
    transform: scale(1.3);
    border-color: var(--white);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.about-section {
    padding: 120px 0;
}

.about-content-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.section-title {
    font-size: 42px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
    position: relative;
    padding-bottom: 25px;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* About Section */
.about-section,
.about-content-section {
    background: var(--light-bg);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 20px;
}

.content-card {
    background: var(--white);
    padding: 45px 40px;
    padding-top: 55px;
    border-radius: 15px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
    border-top: 4px solid var(--accent-color);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(26, 93, 26, 0.1);
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 158, 74, 0.1), transparent);
    transition: left 0.5s ease;
}

.content-card:hover::before {
    left: 100%;
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 30px 30px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.card-icon {
    font-size: 42px;
    color: var(--accent-color);
    margin-bottom: 20px;
    margin-top: 15px;
    opacity: 0.9;
}

.content-card p {
    margin-top: 15px;
    font-size: 17px;
    line-height: 1.95;
    color: var(--text-color);
    flex-grow: 1;
    font-weight: 400;
}

/* Light green background for half of content cards */
.content-card:nth-child(odd) {
    background: linear-gradient(135deg, #f0f9f0 0%, #e8f5e8 100%);
}

.content-card:nth-child(odd)::after {
    background: linear-gradient(135deg, #f0f9f0 0%, #e8f5e8 100%);
}

/* Benefits Section */
.benefits-section {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.benefit-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
    background: var(--white);
}

.benefit-icon {
    font-size: 55px;
    margin-bottom: 25px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(5deg);
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 18px;
    font-size: 22px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

/* Light green background for half of benefit cards */
.benefit-card:nth-child(odd) {
    background: linear-gradient(135deg, #f0f9f0 0%, #e8f5e8 100%);
}

/* Product Information Section */
.product-info-section {
    background: var(--white);
    padding: 100px 0;
}

.product-info-content {
    max-width: 1000px;
    margin: 0 auto;
}

.product-description {
    margin-top: 40px;
}

.product-description p {
    font-size: 18px;
    line-height: 2;
    color: var(--text-color);
    margin-bottom: 25px;
    text-align: justify;
}

.product-tagline {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: var(--gradient-primary);
    border-radius: 15px;
    color: var(--white);
}

.product-tagline h3 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Message Section */
.message-section {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.message-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 20s infinite;
}

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

.message-box {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.message-box h2 {
    font-size: 38px;
    margin-bottom: 35px;
    color: var(--white);
    font-weight: 800;
}

.message-box p {
    font-size: 19px;
    line-height: 2;
    margin-bottom: 25px;
    opacity: 0.95;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.highlight-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffd700;
    font-weight: 700;
}

.highlight-box p {
    font-size: 20px;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.5s ease;
    min-width: 100%;
    min-height: 100%;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 93, 26, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 40px;
}

.video-section {
    margin-top: 60px;
}

.video-section-title {
    font-size: 32px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 35px;
}

.video-item video {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

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

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

.contact-info h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.contact-text strong {
    display: block;
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-text p {
    font-size: 17px;
    color: var(--text-color);
    margin-bottom: 8px;
}

.contact-text a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-text a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-form {
    background: var(--light-bg);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

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

.form-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 18px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 18px 18px 55px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group textarea {
    padding-top: 18px;
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 93, 26, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.submit-btn i {
    font-size: 20px;
}

/* More Section */
.more-section {
    background: var(--light-bg);
}

.more-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.info-box {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    text-align: center;
    border-top: 4px solid var(--accent-color);
}

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.info-box h3 {
    color: var(--primary-color);
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-box p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-color);
}

.additional-info-section {
    background: var(--white);
    padding: 80px 0;
}

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

.info-card {
    background: var(--light-bg);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow);
}

.info-card-icon {
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.info-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
}

/* Footer */
.footer {
    background: var(--dark-green);
    color: var(--white);
    text-align: center;
    padding: 40px 0;
}

.footer p {
    font-size: 16px;
    opacity: 0.9;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.modal-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 100px;
}

.modal-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 2010;
    backdrop-filter: blur(10px);
}

.close-modal:hover {
    transform: scale(1.2) rotate(90deg);
    background: rgba(255, 255, 255, 0.3);
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 30px;
    padding: 20px 25px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2010;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.modal-prev {
    left: 30px;
}

.modal-next {
    right: 30px;
}

.modal-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    z-index: 2010;
}

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

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 800px;
        overflow-y: auto;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 25px;
        gap: 20px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        margin-top: 10px;
        padding: 15px 20px;
        max-height: none;
        overflow: visible;
        transition: none;
        width: 100%;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: stretch;
        gap: 10px;
        background: var(--primary-color);
    }
    
    .dropdown .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown-menu li {
        width: 100%;
        margin: 0;
    }

    .dropdown-menu a {
        padding: 12px 15px;
        font-size: 14px;
        min-width: auto;
        width: 100%;
        display: block;
        text-align: left;
    }

    .hero-slider {
        height: 60vh;
        min-height: 500px;
        max-height: 700px;
    }
    

    .section-title {
        font-size: 32px;
    }

    .page-header {
        padding: 40px 0 30px;
    }

    .page-title {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .page-subtitle {
        font-size: 15px;
    }

    .company-name h1 {
        font-size: 20px;
    }

    .company-name p {
        font-size: 12px;
    }

    .logo {
        width: 65px;
        height: 65px;
    }

    .slider-btn {
        font-size: 18px;
        padding: 12px 16px;
    }

    .slider-btn.prev {
        left: 15px;
    }

    .slider-btn.next {
        right: 15px;
    }

    .content-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .message-box h2 {
        font-size: 28px;
    }

    .message-box p {
        font-size: 16px;
    }

    .highlight-box h3 {
        font-size: 22px;
    }

    section {
        padding: 60px 0;
    }

    .contact-form {
        padding: 35px;
    }

    .lang-toggle {
        padding: 8px 16px;
        font-size: 12px;
    }

    .product-description p {
        font-size: 16px;
        text-align: left;
    }

    .product-tagline {
        padding: 30px 25px;
    }

    .product-tagline h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 55vh;
        min-height: 400px;
        max-height: 600px;
    }
    

    .section-title {
        font-size: 26px;
    }

    .page-header {
        padding: 35px 0 25px;
    }

    .page-title {
        font-size: 26px;
        margin-bottom: 6px;
    }

    .page-subtitle {
        font-size: 14px;
    }

    .content-card,
    .benefit-card,
    .info-box {
        padding: 25px;
    }

    .contact-form {
        padding: 25px;
    }

    .close-modal {
        top: 20px;
        right: 20px;
        font-size: 35px;
        width: 40px;
        height: 40px;
    }

    .modal-slider-container {
        padding: 50px 30px;
    }

    .modal-content {
        max-width: 95%;
        max-height: 75vh;
    }

    .modal-prev,
    .modal-next {
        font-size: 20px;
        padding: 12px 16px;
    }

    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }

    .modal-counter {
        bottom: 15px;
        font-size: 14px;
        padding: 6px 12px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .product-description p {
        font-size: 15px;
        line-height: 1.8;
    }

    .product-tagline {
        padding: 25px 20px;
    }

    .product-tagline h3 {
        font-size: 20px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Product Pages Styles */
.product-hero {
    background: linear-gradient(135deg, rgba(26, 93, 26, 0.95) 0%, rgba(45, 122, 45, 0.9) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/1.jpg') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.product-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.product-hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.product-hero-text p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.product-hero-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.product-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.product-details {
    padding: 100px 0;
    background: var(--white);
}

.product-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.product-info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-info-card:nth-child(odd) {
    background: linear-gradient(135deg, #f0f9f0 0%, #e8f5e8 100%);
}

.product-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.info-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-info-card h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.product-info-card p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 16px;
}

.product-features {
    margin-bottom: 80px;
}

.product-features h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:nth-child(odd) {
    background: linear-gradient(135deg, #f0f9f0 0%, #e8f5e8 100%);
}

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

.feature-item i {
    color: var(--accent-color);
    font-size: 20px;
}

.feature-item span {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
}

.product-application {
    margin-top: 80px;
}

.product-application h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

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

.application-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(26, 93, 26, 0.1);
    transition: all 0.3s ease;
}

.application-card:nth-child(odd) {
    background: linear-gradient(135deg, #f0f9f0 0%, #e8f5e8 100%);
}

.application-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.application-card i {
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.application-card h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.application-card p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 15px;
}

@media (max-width: 768px) {
    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-hero-text h1 {
        font-size: 40px;
    }

    .product-hero-image img {
        height: 300px;
    }

    .product-features h2,
    .product-application h2 {
        font-size: 28px;
    }

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