/* Modern Theme Variables */
:root {
    --primary-color: #33592D;      /* Dark green */
    --secondary-color: #285912;    /* Forest green */
    --accent-color: #8DBF41;       /* Light green */
    --accent-color-2: #7DA641;     /* Medium green */
    --text-dark: #33592D;          /* Dark green for text */
    --text-light: #FFFFFF;         /* White text */
    --background-light: #F2F2F2;   /* Light gray */
    --background-dark: #285912;    /* Forest green for dark backgrounds */
    --gradient-primary: linear-gradient(135deg, #33592D 0%, #285912 100%);
    --gradient-accent: linear-gradient(135deg, #8DBF41 0%, #7DA641 100%);
    --shadow-color: rgba(51, 89, 45, 0.1);
    --text-color: #2C3E50;
    --light-text: #7F8C8D;
    --white: #FFFFFF;
    --light-bg: #F5F6FA;
    --dark-bg: #2C3E50;
    --gradient-secondary: linear-gradient(135deg, #E74C3C 0%, #F39C12 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
    padding-top: 0;
}

html, body {
    overflow-x: hidden;
}

/* Product image aspect ratio (mobile only) */
@media (max-width: 768px) {
    .product-image img {
        aspect-ratio: 330 / 219.91 !important; /* 3:2 ratio */
        height: auto !important;
        width: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    margin-top: 0;
    box-shadow: none;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.header.nav-hidden {
    transform: translateY(-100%);
}

.header.nav-visible {
    transform: translateY(0);
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header.scrolled {
    padding: 15px 0;
    background: #ffffff;
    backdrop-filter: none;
    height: 80px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    height: 100%;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    max-height: 72px;
    flex-shrink: 0;
    transition: max-height 0.2s ease;
}

.header.scrolled .logo img {
    max-height: 65px;
}

.header.scrolled .logo-text {
    color: var(--text-color);
    font-size: 18px;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.header.nav-visible .logo-text {
    color: var(--text-color);
    text-shadow: none;
}

@media (max-width: 768px) {
    .logo img {
        max-height: 50px;
    }
    .logo-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-height: 45px;
    }
    .logo-text {
        font-size: 14px;
        letter-spacing: 0.3px;
    }
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
    padding: 4px 8px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.header.nav-visible .nav-links a {
    color: var(--text-color);
    text-shadow: none;
}

.nav-links > li > a::after {
    display: none;
}

.header.nav-visible .nav-links > li > a::after {
    display: none;
}

.nav-links a:hover {
    color: var(--text-color);
}

.header.nav-visible .nav-links a:hover {
    color: var(--text-color) !important;
}

.nav-links > li > a:hover::after {
    display: none;
}

.header.nav-visible .nav-links > li > a:hover::after {
    display: none;
}

/* Update scrolled state styles */
.header.scrolled .nav-links a {
    color: var(--text-color);
    text-shadow: none;
}

.header.scrolled .nav-links > li > a::after {
    background: transparent;
}

.header.scrolled .nav-links a:hover {
    color: var(--text-color) !important;
}

.header.scrolled .nav-links a::before {
    background: rgba(0, 0, 0, 0.1);
}

.nav-links a.active {
    color: var(--white);
    transform: translateY(-2px);
}

.nav-links > li > a.active::after {
    width: 100%;
    background: var(--white);
}

/* Update scrolled state styles */
.header.scrolled .nav-links a.active {
    color: var(--text-color);
}

.header.scrolled .nav-links > li > a.active::after {
    background: transparent;
}

/* Hero Section with Slider */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
    color: var(--text-light);
    padding-top: 0;
}

/* Simple Slider Styles */
.slider {
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Mobile-only slider */
.mobile-slider {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
}

.mobile-slider .mobile-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-slider video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mobile-slider .mobile-slide.active {
    opacity: 1;
}

.mobile-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Desktop vs Mobile video switching */
@media (max-width: 768px) {
    .slider {
        display: none;
    }
    .slider-controls {
        display: none;
    }
    .mobile-slider {
        display: block;
    }
}

@media (min-width: 769px) {
    .mobile-slider {
        display: none;
    }
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    display: block;
}

/* Adjust video size using margin - Easy to modify */
.slider video {
    /* Change margin value to adjust video size */
    /* margin: 0; = Full size (default) */
    /* margin: 20px; = Smaller video with 20px margin on all sides */
    /* margin: 10px 30px; = 10px top/bottom, 30px left/right */
    margin: 0;
    width: calc(100% - 0px);
    height: calc(100% - 0px);
}

/* Alternative: Use this class for smaller video */
.slide video.smaller-video {
    margin: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
}

.slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
    margin-top: 30px;
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin: 0 10px;
    font-size: 16px;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color-2));
    border: none;
    color: white;
}

.hero-buttons .btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.hero-buttons .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Simple Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 18px;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 40px;
}

.product-category-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    background: white;
}

.product-category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-category-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-category-card:hover .product-category-image img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-category-card:hover .overlay {
    opacity: 1;
}

.view-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-category-card:hover .view-btn {
    transform: translateY(0);
}

.product-category-content {
    padding: 25px;
}

.product-category-content h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.product-category-content p {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 14px;
}

.product-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-highlights li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 14px;
}

.product-highlights li i {
    color: var(--accent-color);
    margin-right: 10px;
}

@media (max-width: 768px) {
    .product-category-image {
        height: 200px;
    }
    
    .product-category-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .product-category-image {
        height: 180px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.story-text {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.story-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.story-point {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.story-point:hover {
    transform: translateY(-5px);
}

.point-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.point-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.point-content {
    flex-grow: 1;
}

.point-content h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.point-content p {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 600px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 100px 0;
    background: var(--white);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.vm-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.card-header {
    padding: 30px;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.card-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.card-body {
    padding: 30px;
}

.card-body p {
    color: var(--light-text);
    margin-bottom: 20px;
}

.mission-list {
    list-style: none;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.mission-list li:hover {
    transform: translateX(10px);
    background: #E8F0FE;
}

.list-icon {
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.list-icon i {
    color: var(--white);
    font-size: 14px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.contact-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.contact-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    font-size: 16px;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

.submit-button:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--background-dark);
    color: var(--text-light);
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .story-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-image {
        order: -1;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .header {
        height: 50px;
        padding: 8px 0;
    }
    
    .header.scrolled {
        height: 70px;
        padding: 12px 0;
    }
    
    .logo img {
        max-height: 35px;
    }
    
    .header.scrolled .logo img {
        max-height: 50px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 13px;
        padding: 3px 6px;
    }
    
    .slide-content h1 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .story-section {
        padding: 60px 0;
    }

    .story-text {
        padding: 30px;
    }

    .point-content h4 {
        font-size: 16px;
    }

    .point-content p {
        font-size: 14px;
    }

    .story-image {
        min-height: 300px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .slider-controls {
        bottom: 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 28px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    .slider-controls {
        bottom: 15px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .cta-button {
        padding: 12px 30px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }

    .story-section {
        padding: 40px 0;
    }

    .story-text {
        padding: 20px;
    }

    .point-icon {
        width: 40px;
        height: 40px;
    }

    .point-icon i {
        font-size: 16px;
    }

    .story-image {
        min-height: 250px;
    }
}



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

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > a::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.dropdown-submenu > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: -10px;
    margin-left: 0;
    min-width: 200px;
    background: var(--background-light);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 10px 0;
    border: none;
    outline: none;
}

/* Show submenu when hovering over parent */
.dropdown-submenu:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Keep submenu visible when hovering over it */
.dropdown-submenu > .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Ensure submenu stays visible when moving from parent to submenu */
.dropdown-submenu > .dropdown-menu {
    pointer-events: auto;
}

/* Add padding to create a hover area between parent and submenu */
.dropdown-submenu > .dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 10px;
    height: 100%;
}

/* Ensure submenu is visible when hovering over parent */
.dropdown-submenu:hover > a {
    background: #f8f9fa;
    color: var(--secondary-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--background-light);
    min-width: 250px;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    border: none;
    outline: none;
}

/* Hover functionality for main dropdowns */
.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover functionality for submenu dropdowns */
.dropdown-submenu:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-menu li a,
.header.scrolled .dropdown-menu li a,
.header.nav-visible .dropdown-menu li a {
    color: var(--text-dark) !important;
    padding: 12px 20px;
    display: block;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    outline: none;
    text-decoration: none;
    position: relative;
}

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

/* Ensure submenu items have same styling */
.dropdown-submenu .dropdown-menu li a {
    color: var(--text-dark);
    padding: 12px 20px;
    display: block;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    outline: none;
    text-decoration: none;
    position: relative;
}

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

.dropdown-menu li a:hover,
.header.scrolled .dropdown-menu li a:hover,
.header.nav-visible .dropdown-menu li a:hover {
    background: var(--primary-color) !important;
    color: var(--background-light) !important;
    padding-left: 25px;
    border: none;
    outline: none;
}

/* Ensure submenu items have same hover styling */
.dropdown-submenu .dropdown-menu li a:hover {
    background: var(--primary-color);
    color: var(--background-light);
    padding-left: 25px;
    border: none;
    outline: none;
}

/* Specific styles for Psyllium Khakha submenu */
.submenu-trigger + .submenu {
    display: none;
}

.submenu-trigger:hover + .submenu,
.submenu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        margin-left: 20px;
        transform: none;
    }
    
    .dropdown-submenu > .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        margin-left: 20px;
        transform: none;
    }
    
    .dropdown-submenu > a::after {
        transform: rotate(90deg);
    }

    .submenu-trigger + .submenu {
        display: none;
    }

    .submenu-trigger:hover + .submenu,
    .submenu:hover {
        display: block;
    }
}

/* Remove Bootstrap default borders from dropdowns */
.dropdown-menu,
.dropdown-menu *,
.dropdown-item,
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active,
.dropdown-submenu,
.dropdown-submenu *,
.dropdown-submenu > .dropdown-menu,
.dropdown-submenu > .dropdown-menu *,
.dropdown-submenu > .dropdown-menu .dropdown-item,
.dropdown-submenu > .dropdown-menu .dropdown-item:hover,
.dropdown-submenu > .dropdown-menu .dropdown-item:focus,
.dropdown-submenu > .dropdown-menu .dropdown-item:active,
.dropdown-submenu > a,
.dropdown-submenu > a:hover,
.dropdown-submenu > a:focus,
.dropdown-submenu > a:active {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

/* Remove any underline effects from dropdown items */
.dropdown-item::after,
.dropdown-item:hover::after,
.dropdown-item:focus::after,
.dropdown-item:active::after {
    display: none !important;
}

/* Ensure no text decoration on any dropdown items */
.dropdown-menu a,
.dropdown-menu a:hover,
.dropdown-menu a:focus,
.dropdown-menu a:active,
.dropdown-item,
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active {
    text-decoration: none !important;
    border-bottom: none !important;
    border: none !important;
}

/* Remove underline effects from submenu elements */
.submenu-trigger,
.submenu-trigger:hover,
.submenu-trigger:focus,
.submenu-trigger:active,
.submenu a,
.submenu a:hover,
.submenu a:focus,
.submenu a:active {
    text-decoration: none !important;
    border-bottom: none !important;
    border: none !important;
}

.submenu-trigger::after,
.submenu-trigger:hover::after,
.submenu-trigger:focus::after,
.submenu-trigger:active::after,
.submenu a::after,
.submenu a:hover::after,
.submenu a:focus::after,
.submenu a:active::after {
    display: none !important;
}

/* Product Showcase Section */
.product-showcase {
    background: linear-gradient(135deg, rgba(141, 191, 65, 0.05) 0%, rgba(141, 191, 65, 0.02) 100%);
}

.product-category-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(141, 191, 65, 0.1), rgba(141, 191, 65, 0.05));
    border-radius: 50%;
    display: inline-block;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-category-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.product-category-card p {
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.product-features li {
    padding: 8px 0;
    color: var(--text-color);
    font-size: 0.9rem;
}

.product-features i {
    margin-right: 10px;
    width: 20px;
}

.product-category-card .btn {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.product-category-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 1) 100%);
}

/* Why Choose Us Tabs */
.why-choose-tabs {
    border-bottom: 2px solid rgba(141, 191, 65, 0.2);
    margin-bottom: 40px;
}

.why-choose-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-color);
    font-weight: 500;
    padding: 15px 30px;
    margin: 0 5px;
    transition: all 0.3s ease;
    background: transparent;
    border-radius: 0;
    position: relative;
}

.why-choose-tabs .nav-link:hover {
    color: var(--accent-color);
    border-bottom-color: rgba(141, 191, 65, 0.5);
    background: rgba(141, 191, 65, 0.05);
}

.why-choose-tabs .nav-link.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    background: transparent;
    font-weight: 600;
}

.why-choose-tabs .nav-link i {
    transition: transform 0.3s ease;
}

.why-choose-tabs .nav-link:hover i,
.why-choose-tabs .nav-link.active i {
    transform: scale(1.1);
}

.tab-content-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-height: 400px;
}

.tab-content-card:has(.why-choose-list) {
    padding: 35px 30px;
    min-height: auto;
    background: transparent;
    box-shadow: none;
}

/* Compact Why Choose List */
.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: transparent;
    box-shadow: none;
}

.why-choose-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.why-choose-list li:last-child {
    border-bottom: none;
}

.why-choose-list li:hover {
    padding-left: 5px;
}

.why-choose-list li i {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.why-choose-list li span {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.why-choose-list li span strong {
    color: var(--text-dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .tab-content-card {
        padding: 30px 20px;
        min-height: auto;
    }
    
    .why-choose-list li {
        padding: 12px 0;
    }
    
    .why-choose-list li i {
        font-size: 1rem;
    }
    
    .why-choose-list li span {
        font-size: 0.9rem;
    }
}

/* Value Cards - Quality, Transparency, Reliability */
.value-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #7DA641);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(141, 191, 65, 0.2);
    border-color: rgba(141, 191, 65, 0.3);
}

.value-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(141, 191, 65, 0.1), rgba(141, 191, 65, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.value-card-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
    transition: all 0.4s ease;
}

.value-card:hover .value-card-icon {
    background: linear-gradient(135deg, var(--accent-color), #7DA641);
    transform: scale(1.1) rotate(5deg);
}

.value-card:hover .value-card-icon i {
    color: white;
    transform: scale(1.1);
}

.value-card h4 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.value-card:hover h4 {
    color: var(--accent-color);
}

.value-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Specific card themes */
.quality-card .value-card-icon {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
}

.quality-card .value-card-icon i {
    color: #FFC107;
}

.quality-card:hover .value-card-icon {
    background: linear-gradient(135deg, #FFC107, #FF9800);
}

.transparency-card .value-card-icon {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(33, 150, 243, 0.05));
}

.transparency-card .value-card-icon i {
    color: #2196F3;
}

.transparency-card:hover .value-card-icon {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.reliability-card .value-card-icon {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
}

.reliability-card .value-card-icon i {
    color: #4CAF50;
}

.reliability-card:hover .value-card-icon {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
}

@media (max-width: 768px) {
    .value-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .value-card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .value-card-icon i {
        font-size: 2rem;
    }
    
    .value-card h4 {
        font-size: 1.3rem;
    }
    
    .value-card p {
        font-size: 0.9rem;
    }
}

.tab-icon {
    margin-bottom: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(141, 191, 65, 0.1), rgba(141, 191, 65, 0.05));
    border-radius: 50%;
    display: inline-block;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tab-content-card h3 {
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.tab-content-card .lead {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.8;
}

.quality-feature {
    padding: 20px;
    transition: all 0.3s ease;
}

.quality-feature:hover {
    transform: translateY(-5px);
}

.quality-feature h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin: 15px 0 10px 0;
    font-size: 1.1rem;
}

.quality-feature p {
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.feature-card {
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    margin-bottom: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(141, 191, 65, 0.1), rgba(141, 191, 65, 0.05));
    border-radius: 50%;
    display: inline-block;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(141, 191, 65, 0.2), rgba(141, 191, 65, 0.1));
    transform: scale(1.1);
}

.feature-card h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
}

/* Contact Section Enhancements */
.contact-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.contact-icon {
    background: linear-gradient(135deg, rgba(141, 191, 65, 0.1), rgba(141, 191, 65, 0.05));
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.contact-info-card h5 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info-card p {
    color: var(--text-color);
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-info-card .small {
    font-size: 0.85rem;
    color: var(--light-text);
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* CTA Section Styling */
.cta-content {
    border: 2px solid rgba(141, 191, 65, 0.2);
    transition: all 0.3s ease;
}

.cta-content:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Additional Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.bg-primary {
    background: var(--primary-color) !important;
}

.bg-secondary {
    background: var(--secondary-color) !important;
}

.bg-accent {
    background: var(--accent-color) !important;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

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

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

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

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

/* Mission and Vision Section */
.mission-vision {
    background: #F2F2F2;
    padding: 80px 0;
    position: relative;
}

.mission-vision h2 {
    color: #33592D;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
}

.mission-vision h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #8DBF41;
    margin: 15px auto 0;
    border-radius: 2px;
}

.mission-box, .vision-box {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(51, 89, 45, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(51, 89, 45, 0.1);
    position: relative;
    overflow: hidden;
}

.mission-box::before, .vision-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(141, 191, 65, 0.1) 0%, rgba(125, 166, 65, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission-box:hover::before, .vision-box:hover::before {
    opacity: 1;
}

.mission-box:hover, .vision-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(51, 89, 45, 0.15);
}

.mission-box h3, .vision-box h3 {
    color: #33592D;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.mission-box h3::after, .vision-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #8DBF41;
    border-radius: 2px;
}

.mission-box p, .vision-box p {
    color: #33592D;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.mission-box .icon, .vision-box .icon {
    font-size: 3rem;
    margin-bottom: 25px;
    display: inline-block;
}

.mission-box .icon {
    background: linear-gradient(135deg, #8DBF41 0%, #7DA641 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.vision-box .icon {
    background: linear-gradient(135deg, #33592D 0%, #285912 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* Mission and Vision Cards */
.mission-card, .vision-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(51, 89, 45, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(51, 89, 45, 0.1);
    position: relative;
    overflow: hidden;
}

.mission-card::after, .vision-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8DBF41 0%, #7DA641 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.mission-card:hover::after, .vision-card:hover::after {
    transform: scaleX(1);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(51, 89, 45, 0.15);
}

.mission-card h3, .vision-card h3 {
    color: #33592D;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mission-card p, .vision-card p {
    color: #33592D;
    line-height: 1.8;
    font-size: 1.05rem;
}

.mission-card .icon-wrapper, .vision-card .icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(141, 191, 65, 0.1) 0%, rgba(125, 166, 65, 0.1) 100%);
    transition: all 0.3s ease;
}

.mission-card:hover .icon-wrapper, .vision-card:hover .icon-wrapper {
    background: linear-gradient(135deg, rgba(141, 191, 65, 0.2) 0%, rgba(125, 166, 65, 0.2) 100%);
}

.mission-card .icon, .vision-card .icon {
    color: #33592D;
    font-size: 2rem;
}

/* Animation for Mission and Vision Cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mission-box, .vision-box {
    animation: fadeInUp 0.6s ease-out forwards;
}

.mission-box {
    animation-delay: 0.2s;
}

.vision-box {
    animation-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-vision {
        padding: 60px 0;
    }
    
    .mission-vision h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .mission-box, .vision-box {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .mission-card, .vision-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .mission-box h3, .vision-box h3 {
        font-size: 1.5rem;
    }
    
    .mission-box p, .vision-box p {
        font-size: 1rem;
    }
} 

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    /* Product Hero Section */
    .product-hero {
        padding: 100px 0;
    }

    .product-hero h1 {
        font-size: 2rem;
    }

    .product-hero p {
        font-size: 1.1rem;
    }

    /* Product Grid Layout */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Product Details */
    .product-details {
        padding: 20px;
    }

    .product-details h2 {
        font-size: 1.8rem;
    }

    /* Specs List */
    .specs-list {
        grid-template-columns: 1fr;
    }

    /* Navigation Improvements */
    .navbar {
        padding: 10px;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        padding: 20px;
        transition: 0.3s;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

    /* Dropdown Menu Mobile */
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background: #f8f9fa;
    }

    .dropdown-submenu > .dropdown-menu {
        position: static;
        margin-left: 15px;
    }
}

@media (max-width: 480px) {
    /* Further refinements for smaller screens */
    .product-hero h1 {
        font-size: 1.8rem;
    }

    .product-details {
        padding: 15px;
    }

    .product-specs {
        padding: 15px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    /* Improve touch targets */
    .nav-links a,
    .dropdown-menu a {
        padding: 12px;
        font-size: 16px;
    }

    .specs-list li {
        padding: 12px;
    }
}

/* Add hamburger menu styles - Hidden by default on desktop */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-color);
    margin: 5px 0;
    transition: 0.3s;
}

/* Touch-friendly improvements */
@media (hover: none) {
    .nav-links a,
    .dropdown-menu a,
    .cta-button,
    .specs-list li {
        -webkit-tap-highlight-color: transparent;
    }

    .product-image:hover {
        transform: none;
    }

    .product-image:hover img {
        transform: none;
    }

    .specs-list li:hover {
        transform: none;
    }
} 

/* Updated Section Styles */
.story-section,
.vision-section, 
.mission-section {
    padding: 80px 0;
    position: relative;
}

.story-section {
    background-color: #f8f9fa;
}

.mission-section {
    background-color: #ffffff;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gradient-accent);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
}

.section-header {
    margin-bottom: 40px;
    text-align: left;
}

.section-header h2 {
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-header h2.no-underline::after {
    display: none;
}

.applications-header h2.smaller-heading {
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .applications-header h2.smaller-heading {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .applications-header h2.smaller-heading {
        font-size: 1.6rem;
    }
}

/* Story Points */
.story-points {
    display: grid;
    gap: 25px;
}

.story-point {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.story-point:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.point-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: var(--gradient-accent);
    border-radius: 15px;
    color: var(--white);
    font-size: 24px;
    box-shadow: var(--shadow-sm);
}

.point-content h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.point-content p {
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 0;
}

/* Vision and Mission */
.vision-text,
.mission-text {
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.vision-text:hover,
.mission-text:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vision-icon,
.mission-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    color: var(--white);
    font-size: 28px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
}

.vision-text h3,
.mission-text h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.vision-text p,
.mission-text p {
    color: var(--light-text);
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
}

.vision-image,
.mission-image,
.story-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    transition: var(--transition);
}

.vision-image:hover,
.mission-image:hover,
.story-image:hover {
    transform: translateY(-5px);
}

.vision-image img,
.mission-image img,
.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vision-image:hover img,
.mission-image:hover img,
.story-image:hover img {
    transform: scale(1.05);
}

.mission-points {
    padding-left: 0;
    margin-bottom: 0;
}

.mission-points li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 12px 20px;
    background-color: white;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.mission-points li:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.mission-points li i {
    color: var(--accent-color);
    font-size: 18px;
}

/* Contact Section */
.contact {
    position: relative;
    padding: 100px 0;
    color: var(--white);
}

.contact-content {
    border-radius: 20px;
    overflow: hidden;
}

.contact-content h2 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-content p {
    color: var(--light-text);
    margin-bottom: 30px;
}

.form-control {
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.form-control:focus {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

textarea.form-control {
    min-height: 120px;
}

.submit-button {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

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

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
}

.footer a {
    transition: var(--transition);
    text-decoration: none;
}

.footer a:hover {
    color: var(--accent-color) !important;
}

.footer h3 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--white) !important;
    transform: translateY(-3px);
}

/* Animation Utilities */
[data-aos] {
    opacity: 0;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section-header {
        text-align: center;
    }
    
    .section-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .story-point {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .vision-text,
    .mission-text {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .vision-icon,
    .mission-icon {
        margin: 0 auto 20px;
    }
    
    .mission-points li {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .story-section,
    .vision-section,
    .mission-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .point-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .vision-image,
    .mission-image,
    .story-image {
        margin-top: 30px;
        max-height: 300px;
    }
} 

/* Top bar always at the very top */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 48px;
    z-index: 1100;
    background: linear-gradient(90deg,#8DBF41 0%,#2C3E50 100%);
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(44,62,80,0.08);
    display: flex;
    align-items: center;
}

/* Top bar responsive */
@media (max-width: 768px) {
    .top-bar {
        height: 40px;
        font-size: 12px;
    }
    
    .top-bar .container {
        padding: 0 10px;
    }
    
    .top-bar span {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .top-bar span:first-child {
        flex: 1;
        min-width: 0;
    }
    
    .top-bar span:last-child {
        flex-shrink: 0;
    }
    
    .top-bar a {
        font-size: 11px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 480px) {
    .top-bar {
        height: 36px;
        font-size: 10px;
    }
    
    .top-bar span {
        font-size: 10px;
    }
    
    .top-bar a {
        font-size: 9px;
    }
} 

/* Dropdown open on hover for desktop */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    margin-top: 0 !important;
    transform: translateY(0) !important;
  }
  
  .navbar .dropdown-submenu:hover > .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(0) !important;
  }
  
  .navbar .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    margin-top: 0;
  }
  
  /* Override Bootstrap's click behavior */
  .dropdown-toggle[data-bs-toggle="dropdown"] {
    pointer-events: none;
  }
  
  .dropdown-toggle[data-bs-toggle="dropdown"]::after {
    pointer-events: none;
  }
} 

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Bootstrap Mobile Navbar Styling */
.mobile-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: transparent !important;
    box-shadow: none;
    padding: 0.5rem 1rem;
    min-height: 56px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.mobile-navbar.nav-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.mobile-navbar.nav-visible {
    transform: translateY(0) !important;
    opacity: 1;
    pointer-events: auto;
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mobile-navbar .navbar-brand {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.mobile-navbar.nav-visible .navbar-brand .logo-text {
    color: var(--text-color) !important;
    text-shadow: none !important;
}

.mobile-navbar.nav-visible .navbar-brand span[style*="color: #FFFFFF"],
.mobile-navbar.nav-visible .navbar-brand span[style*="color:#FFFFFF"] {
    color: var(--text-color) !important;
    text-shadow: none !important;
}

.mobile-navbar .navbar-brand img {
    max-height: 30px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.mobile-navbar .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    margin-left: auto;
    order: 2;
}

.mobile-navbar .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.mobile-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.5));
    transition: filter 0.3s ease;
}

.mobile-navbar.nav-visible .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 62, 80, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    filter: none;
}

.mobile-navbar .navbar-nav {
    padding-top: 1rem;
}

.mobile-navbar .nav-link {
    color: #2C3E50;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-navbar .nav-link:hover,
.mobile-navbar .nav-link:focus {
    color: #8DBF41;
    background-color: #f8f9fa;
}

.mobile-navbar .dropdown-menu {
    border: none;
    box-shadow: none;
    background-color: #f8f9fa;
    padding: 0;
    margin: 0;
}

.mobile-navbar .dropdown-item {
    padding: 0.75rem 1.5rem;
    color: #2C3E50;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

.mobile-navbar .dropdown-item:hover,
.mobile-navbar .dropdown-item:focus {
    background-color: #e9f5e1;
    color: #7DA641;
}

.mobile-navbar .dropdown-divider {
    margin: 0.5rem 0;
    border-color: #e0e0e0;
}

/* Adjust body padding for mobile navbar */
@media (max-width: 991.98px) {
    .mobile-navbar .navbar-brand img {
        max-height: 28px;
    }
}

@media (max-width: 768px) {
    .mobile-navbar .navbar-brand img {
        max-height: 26px;
    }
}

@media (max-width: 480px) {
    .mobile-navbar .navbar-brand img {
        max-height: 24px;
    }
}

/* Responsive Navbar for Mobile - Keep for desktop nav only */
@media (max-width: 991.98px) {
  /* Ensure header is always visible */
  .header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background: #fff;
    box-shadow: 0 2px 10px rgba(44,62,80,0.08);
    min-height: 48px;
    padding: 0 15px;
    display: flex !important;
    visibility: visible !important;
  }
  
  .logo {
    order: 2;
    flex: 1;
    display: flex;
    justify-content: center;
    visibility: visible !important;
  }
  
  .logo img {
    max-height: 35px;
  }
  
  .nav-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: space-around;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1200;
    order: 1;
    width: 40px;
    height: 40px;
    position: relative;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #2C3E50;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }
  
  .nav-links {
    position: fixed;
    top: 88px;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: calc(100vh - 88px);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 0;
    gap: 0;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
    box-shadow: 4px 0 20px rgba(44,62,80,0.15);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li {
    width: 100%;
    margin: 0;
  }
  
  .nav-links > li > a {
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    padding: 14px 20px;
    color: #2C3E50;
    border-bottom: 1px solid #f0f0f0;
    display: block;
    transition: all 0.2s ease;
    text-decoration: none;
  }
  
  .nav-links > li > a:active, 
  .nav-links > li > a:focus, 
  .nav-links > li > a:hover {
    background: #f8f9fa;
    color: #8DBF41;
    padding-left: 25px;
  }
  
  .dropdown {
    width: 100%;
  }
  
  .dropdown-menu {
    position: static !important;
    display: none;
    background: #f8f9fa;
    box-shadow: none;
    min-width: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    border-top: 1px solid #e0e0e0;
  }
  
  .dropdown.open > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    animation: slideDown 0.3s ease;
  }
  
  .dropdown-toggle {
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    color: #2C3E50;
    border-bottom: 1px solid #f0f0f0;
    background: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .dropdown-toggle::after {
    content: '\25BC';
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: auto;
    padding-left: 10px;
  }
  
  .dropdown.open > .dropdown-toggle {
    background: #f8f9fa;
    color: #8DBF41;
  }
  
  .dropdown.open > .dropdown-toggle::after {
    transform: rotate(180deg);
  }
  
  .dropdown-item {
    font-size: 15px;
    padding: 12px 20px 12px 35px;
    color: #2C3E50;
    border-bottom: 1px solid #ececec;
    border-radius: 0;
    background: none;
    transition: all 0.2s ease;
    display: block;
    text-decoration: none;
  }
  
  .dropdown-item:last-child {
    border-bottom: none;
  }
  
  .dropdown-item:active, 
  .dropdown-item:focus, 
  .dropdown-item:hover {
    background: #e9f5e1;
    color: #7DA641;
    padding-left: 40px;
  }
  
  /* Nested dropdowns (submenu) */
  .dropdown-submenu {
    position: relative;
  }
  
  .dropdown-submenu > .dropdown-menu {
    background: #f0f0f0;
    margin-left: 0;
    padding-left: 0;
  }
  
  .dropdown-submenu > .dropdown-toggle::after {
    content: '\25B6';
    font-size: 12px;
  }
  
  .dropdown-submenu.open > .dropdown-toggle::after {
    transform: rotate(90deg);
  }
  
  .dropdown-submenu .dropdown-item {
    padding-left: 50px;
    font-size: 14px;
  }
  
  .dropdown-submenu .dropdown-item:hover {
    padding-left: 55px;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    max-height: 1000px;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  /* Ensure header is visible */
  .header {
    display: block !important;
    visibility: visible !important;
  }
  
  .navbar {
    display: flex !important;
    visibility: visible !important;
  }
  
  .nav-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .nav-links {
    top: 84px;
    width: 90%;
    max-width: 300px;
    height: calc(100vh - 84px);
  }
  
  .nav-links > li > a {
    font-size: 15px;
    padding: 12px 18px;
  }
  
  .dropdown-toggle {
    font-size: 15px;
    padding: 12px 18px;
  }
  
  .dropdown-item {
    font-size: 14px;
    padding: 10px 18px 10px 30px;
  }
  
  .dropdown-submenu .dropdown-item {
    padding-left: 45px;
    font-size: 13px;
  }
}

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

/* Hamburger hidden on desktop */
@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }
}

/* Remove duplicate body padding rule - already handled above */ 

/* Responsive Design for Slider */
@media (max-width: 768px) {
    .slide-content {
        padding: 30px 20px;
        max-width: 95%;
        transform: translateY(20px);
    }
    
    .slide-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        margin-top: 25px;
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        padding: 15px 25px;
        font-size: 14px;
        margin: 0;
        width: 100%;
        max-width: 250px;
    }
    
    .slider-controls {
        bottom: 30px;
        left: 20px;
        gap: 20px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .slider-dots {
        gap: 10px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
    
    .hero-stats {
        padding: 15px 0;
    }
    
    .stat-item {
        padding: 10px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 25px 15px;
        border-radius: 20px;
    }
    
    .slide-content h1 {
        font-size: 28px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 13px;
        max-width: 200px;
    }
    
    .slider-controls {
        bottom: 25px;
        left: 15px;
        gap: 15px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}



/* Responsive Design for Simple Slider */
@media (max-width: 768px) {
    .slide-content {
        padding: 30px 20px;
        max-width: 95%;
    }
    
    .slide-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        margin-top: 25px;
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        padding: 15px 25px;
        font-size: 14px;
        margin: 0;
        width: 100%;
        max-width: 250px;
    }
    
    .slider-controls {
        bottom: 30px;
        left: 20px;
        gap: 20px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .slider-dots {
        gap: 10px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .slide-content h1 {
        font-size: 28px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 13px;
        max-width: 200px;
    }
    
    .slider-controls {
        bottom: 25px;
        left: 15px;
        gap: 15px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Product Offering Section */
.product-offering {
    background: var(--light-bg);
    padding: 80px 0;
}

.product-category-link {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Background Images for each product category */
.product-category-link:nth-child(1) {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                url('https://images.unsplash.com/photo-1574323347407-f5e1ad6d020b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
}

.product-category-link:nth-child(2) {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                url('https://images.unsplash.com/photo-1574323347407-f5e1ad6d020b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
}

.product-category-link:nth-child(3) {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
}

.product-category-link:nth-child(4) {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
}

.product-category-link:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), 
                var(--gradient-accent);
}

.category-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.product-category-link h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.product-category-link p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.product-category-link .btn {
    padding: 12px 25px;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.product-category-link .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Product Offering */
@media (max-width: 768px) {
    .product-offering {
        padding: 60px 0;
    }
    
    .product-category-link {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .product-category-link h3 {
        font-size: 1.3rem;
    }
    
    .product-category-link p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .product-offering {
        padding: 40px 0;
    }
    
    .product-category-link {
        padding: 20px 15px;
    }
    
    .product-category-link h3 {
        font-size: 1.2rem;
    }
    
    .product-category-link p {
        font-size: 0.85rem;
    }
    
    .product-category-link .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* About Us Section */
.about-us-section {
    background: white;
    padding: 80px 0;
}

.about-content h3 {
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content .lead {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
}

.about-story {
    margin-top: 25px;
}

.about-story p {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 15px;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.feature-icon {
    background: var(--gradient-accent);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.2rem;
}

.feature-text h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-text p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

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

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Responsive Design for About Us */
@media (max-width: 768px) {
    .about-us-section {
        padding: 60px 0;
    }
    
    .about-content h3 {
        font-size: 1.8rem;
    }
    
    .about-content .lead {
        font-size: 1rem;
    }
    
    .about-story p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .feature-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }
    
    .feature-text h4 {
        font-size: 1rem;
    }
    
    .feature-text p {
        font-size: 0.9rem;
    }
    
    .about-image {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .about-us-section {
        padding: 40px 0;
    }
    
    .about-content h3 {
        font-size: 1.6rem;
    }
    
    .about-content .lead {
        font-size: 0.95rem;
    }
    
    .about-story p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .feature-item {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
    
    .feature-text h4 {
        font-size: 0.95rem;
    }
    
    .feature-text p {
        font-size: 0.85rem;
    }
}

/* Responsive Design for Why Choose Us Tabs */
@media (max-width: 768px) {
    .why-choose-tabs {
        flex-wrap: wrap;
    }
    
    .why-choose-tabs .nav-link {
        padding: 12px 20px;
        font-size: 0.9rem;
        margin: 0 2px;
    }
    
    .tab-content-card {
        padding: 30px 20px;
        min-height: auto;
    }
    
    .tab-icon {
        width: 100px;
        height: 100px;
        padding: 20px;
    }
    
    .tab-icon i {
        font-size: 3rem !important;
    }
    
    .tab-content-card h3 {
        font-size: 1.6rem;
    }
    
    .tab-content-card .lead {
        font-size: 1rem;
    }
    
    .quality-feature {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .why-choose-tabs .nav-link {
        padding: 10px 15px;
        font-size: 0.85rem;
        margin: 0 1px;
    }
    
    .why-choose-tabs .nav-link i {
        display: none;
    }
    
    .tab-content-card {
        padding: 25px 15px;
    }
    
    .tab-icon {
        width: 80px;
        height: 80px;
        padding: 15px;
    }
    
    .tab-icon i {
        font-size: 2.5rem !important;
    }
    
    .tab-content-card h3 {
        font-size: 1.4rem;
    }
    
    .tab-content-card .lead {
        font-size: 0.95rem;
    }
    
    .quality-feature h5 {
        font-size: 1rem;
    }
    
    .quality-feature p {
        font-size: 0.9rem;
    }
}


