/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Background Images */
.background-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    transition: opacity 1s ease-in-out;
}

.bg-image.active {
    opacity: 1;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Container */
.header-container {
    position: relative;
    z-index: 100;
}

/* Top Header with Logo */
.top-header {
    padding: 15px 0;
}

.logo-container {
    text-align: center;
}

.logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    font-size: 2.5rem;
    color: #f4b323;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(244, 179, 35, 0.3);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ffffff, #f4b323);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtext {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 4px;
    opacity: 0.9;
    margin-top: -2px;
    text-transform: uppercase;
}

/* Main Navigation Bar - Compact Design */
.main-navbar {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-link i {
    font-size: 0.9rem;
}

.nav-link:hover {
    background: rgba(244, 179, 35, 0.15);
    color: #f4b323;
    transform: translateY(-1px);
}

.nav-item.active .nav-link {
    background: rgba(244, 179, 35, 0.2);
    color: #f4b323;
    border-bottom: 2px solid #f4b323;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    min-width: 180px;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item {
    display: block;
    padding: 8px 20px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.dropdown-item:hover {
    background: rgba(244, 179, 35, 0.1);
    color: #f4b323;
    border-left: 2px solid #f4b323;
    padding-left: 25px;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(244, 179, 35, 0.1);
    border: 1px solid rgba(244, 179, 35, 0.3);
    border-radius: 4px;
    padding: 8px;
    color: #f4b323;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: rgba(244, 179, 35, 0.2);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 100px;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.text-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-emphasis-color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.2s both;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #f4b323, #ff9800);
    color: #000;
    box-shadow: 0 4px 15px rgba(244, 179, 35, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 179, 35, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #f4b323;
    color: #f4b323;
    transform: translateY(-3px);
}

/* Image Controls */
.image-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.control-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.control-btn:hover {
    background: rgba(244, 179, 35, 0.2);
    border-color: #f4b323;
    color: #f4b323;
    transform: translateY(-2px);
}

.image-indicators {
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: #f4b323;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(244, 179, 35, 0.7);
}

/* Features Bar */
.features-bar {
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 179, 35, 0.1);
    border-radius: 50%;
    color: #f4b323;
    font-size: 1.2rem;
}

.feature-text h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: #f4b323;
}

.feature-text p {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .nav-menu {
        gap: 12px;
    }
    
    .nav-link {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .top-header {
        padding: 10px 0;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .logo-icon {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .btn {
        width: 200px;
        justify-content: center;
    }
    
    .image-controls {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }
    
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 70px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1001;
        gap: 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
        margin: 0;
    }
    
    .nav-link {
        padding: 15px 20px;
        border-radius: 0;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        display: none;
        padding: 0;
        width: 100%;
    }
    
    .dropdown-menu.active {
        display: block;
    }
    
    .dropdown-item {
        padding: 12px 30px;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-content {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-subtext {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }
    
    .control-btn span {
        display: none;
    }
    
    .control-btn {
        padding: 10px 15px;
    }
}










/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8f6f2;
    color: #333;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Dry Fruits Showcase Section */
.dryfruits-showcase-section {
    background: #ffffff;
    padding: 80px 0;
    margin: 40px 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.dryfruits-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #8b4513, #d2691e, #8b4513);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #5d4037;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8b4513, transparent);
}

.section-subtitle2 {
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Section Buttons */
.section-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid #e8dcc9;
    background: #fffaf0;
    color: #8b4513;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.filter-btn i {
    font-size: 1rem;
}

.filter-btn:hover {
    background: #8b4513;
    color: white;
    border-color: #8b4513;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
}

.filter-btn.active {
    background: #8b4513;
    color: white;
    border-color: #8b4513;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

/* Products Container */
.products-container {
    position: relative;
    padding: 0 60px;
}

.products-wrapper {
    overflow: hidden;
    position: relative;
    margin: 0 10px;
}

.products-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 10px 5px;
}

/* Scroll Buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #8b4513;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.scroll-btn:hover {
    background: #5d4037;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.left-scroll-btn {
    left: 0;
}

.right-scroll-btn {
    right: 0;
}

/* Product Card */
.product-card {
    flex: 0 0 280px;
    background: #fffaf0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.1);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.2);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-badge.organic {
    background: #4caf50;
    color: white;
}

.product-badge.premium {
    background: linear-gradient(45deg, #ff9800, #ff5722);
    color: white;
}

.product-badge.sale {
    background: linear-gradient(45deg, #f44336, #e91e63);
    color: white;
}

/* Product Image */
.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 69, 19, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn,
.add-to-cart-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    width: 160px;
    justify-content: center;
}

.quick-view-btn {
    background: white;
    color: #8b4513;
}

.quick-view-btn:hover {
    background: #f8f6f2;
    transform: translateY(-2px);
}

.add-to-cart-btn {
    background: #ff9800;
    color: white;
}

.add-to-cart-btn:hover {
    background: #f57c00;
    transform: translateY(-2px);
}

/* Product Info */
.product-info {
    padding: 20px;
}

.product-category {
    display: inline-block;
    background: #e8dcc9;
    color: #8b4513;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #5d4037;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.product-rating i {
    color: #ff9800;
    font-size: 0.9rem;
}

.rating-count {
    color: #795548;
    font-size: 0.85rem;
    margin-left: 5px;
}

/* Product Price */
.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #8b4513;
}

.weight {
    font-size: 0.9rem;
    color: #795548;
    opacity: 0.8;
}

/* Product Features */
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f5f0e6;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    color: #795548;
}

.feature i {
    font-size: 0.8rem;
    color: #8b4513;
}

/* View All Button */
.view-all-container {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(45deg, #8b4513, #d2691e);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
    gap: 15px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-container {
        padding: 0 50px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.4rem;
    }
    
    .products-container {
        padding: 0 40px;
    }
    
    .product-card {
        flex: 0 0 260px;
    }
}

@media (max-width: 768px) {
    .dryfruits-showcase-section {
        padding: 60px 0;
        margin: 30px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .section-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .products-container {
        padding: 0 30px;
    }
    
    .scroll-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .product-card {
        flex: 0 0 240px;
    }
}

@media (max-width: 576px) {
    .dryfruits-showcase-section {
        padding: 40px 0;
        margin: 20px 0;
        border-radius: 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
        justify-content: center;
    }
    
    .products-container {
        padding: 0 20px;
    }
    
    .scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .products-track {
        gap: 20px;
    }
    
    .product-card {
        flex: 0 0 220px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .view-all-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}


.simple-hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

/* Background Image */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1615485500608-2940b398c432?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* Hero Content */
.hero-content {
    height: 100%;
    display: flex;
    align-items: center;
}

.text-content {
    max-width: 500px;
    color: white;
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Features */
.features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.feature-item i {
    color: #ff9800;
    font-size: 1.3rem;
    width: 30px;
}

.feature-item span {
    font-weight: 500;
}

/* Hero Button */
.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff9800;
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #ff9800;
}

.hero-button:hover {
    background: transparent;
    color: #ff9800;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-button i {
    transition: transform 0.3s ease;
}

.hero-button:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .simple-hero-section {
        height: 500px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-item {
        font-size: 1rem;
    }
    
    .hero-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .simple-hero-section {
        height: 450px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .features {
        margin-bottom: 30px;
    }
    
    .feature-item {
        font-size: 0.95rem;
    }
    
    .feature-item i {
        font-size: 1.1rem;
        width: 25px;
    }
    
    .hero-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    .simple-hero-section {
        height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
}


.simple-section {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: hidden;
}

/* Background Image - Using your assets/fruit2.jpg */
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* Left Text Content */
.text-left {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: white;
    max-width: 500px;
}

/* Title */
.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Description */
.section-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 400px;
}

/* Button */
.cta-button {
    display: inline-block;
    background: #27ae60;
    color: white;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #27ae60;
}

.cta-button:hover {
    background: transparent;
    color: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .simple-section {
        height: 500px;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .simple-section {
        height: 450px;
    }
    
    .section-title2 {
        font-size: 2.3rem;
        color: white;
        text-emphasis-color: white;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
    }
}

@media (max-width: 400px) {
    .simple-section {
        height: 400px;
    }
    
    .section-title2 {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
}








/* Dryfruits Section */
.dryfruits-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f9f3e9 0%, #f5e8d0 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Layout Container */
.layout-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* Left Side Image Container */
.left-image-container {
    flex: 1;
    min-width: 300px;
   
}

.featured-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.2);
    height: 100%;
    border: 5px solid #fff;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.featured-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(139, 69, 19, 0.1), rgba(101, 67, 33, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 35px;
}

.overlay-content {
    color: #fff;
    width: 100%;
}

.featured-badge {
    display: inline-block;
    background-color: #8B4513;
    color: #FFD700;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 2px solid #FFD700;
}

.image-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    color: #FFE4B5;
}

.image-description {
    font-size: 1.15rem;
    margin-bottom: 25px;
    opacity: 0.95;
    max-width: 500px;
    line-height: 1.6;
}

.image-stats {
    display: flex;
    gap: 25px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.stat i {
    color: #FFD700;
}

/* Right Side Cards Container */
.right-cards-container {
    flex: 1;
    min-width: 300px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

/* Card Styling */
.card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0e6d6;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.25);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-image img {
    transform: scale(1.08);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #8B4513;
    color: #FFE4B5;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    border: 2px solid #FFD700;
}

.card-badge-sale {
    background-color: #C41E3A;
    color: white;
    border-color: #FFC107;
}

.card-badge-popular {
    background-color: #228B22;
    color: white;
    border-color: #90EE90;
}

.card-badge-limited {
    background-color: #4B0082;
    color: white;
    border-color: #9370DB;
}

.card-content {
    padding: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #fff, #f9f3e9);
}

.card-title {
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: #8B4513;
    font-weight: 700;
}

.card-description {
    color: #654321;
    font-size: 0.95rem;
    margin-bottom: 15px;
    flex-grow: 1;
    line-height: 1.5;
}

.card-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #8B4513;
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #A0522D;
    font-size: 1.2rem;
    margin-right: 10px;
    font-weight: 500;
}

.card-button {
    background: linear-gradient(to right, #8B4513, #A0522D);
    color: #FFE4B5;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid #D2691E;
}

.card-button:hover {
    background: linear-gradient(to right, #A0522D, #8B4513);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(to right, #8B4513, #A0522D);
    color: #FFE4B5;
    padding: 18px 28px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 2px solid #D2691E;
}

.cart-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.cart-notification i {
    font-size: 1.3rem;
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .layout-container {
        flex-direction: column;
    }
    
    .left-image-container, .right-cards-container {
        width: 100%;
    }
    
    .featured-image {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .dryfruits-section {
        padding: 40px 15px;
    }
    
    .cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .featured-image {
        height: 400px;
    }
    
    .image-title {
        font-size: 1.8rem;
    }
    
    .image-overlay {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        height: 350px;
    }
    
    .image-title {
        font-size: 1.6rem;
    }
    
    .cart-notification {
        bottom: 20px;
        right: 20px;
        left: 20px;
        text-align: center;
        justify-content: center;
    }
}







/* Hero Banner Section */
.hero-banner-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Image */
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Simple dark overlay for text readability */
}

/* Centered Content */
.hero-content-center {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
}

.hero-text-container {
    padding: 40px;
   
}

.hero-main-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subheading {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-main-heading {
        font-size: 2.8rem;
    }
    
    .hero-subheading {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-banner-section {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-text-container {
        padding: 30px 20px;
    }
    
    .hero-main-heading {
        font-size: 2.3rem;
    }
    
    .hero-subheading {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-banner-section {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-main-heading {
        font-size: 1.9rem;
    }
    
    .hero-subheading {
        font-size: 1rem;
    }
    
    .hero-text-container {
        padding: 25px 15px;
    }
}
.hero-button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-width: 140px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
    background: linear-gradient(135deg, #A0522D, #8B4513);
}

.hero-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: white;
}

/* Responsive Buttons */
@media (max-width: 768px) {
    .hero-button-container {
        gap: 15px;
    }
    
    .hero-btn {
        padding: 12px 28px;
        font-size: 1rem;
        min-width: 130px;
    }
}

@media (max-width: 480px) {
    .hero-button-container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 250px;
    }
}








.team-section {
    padding: 80px 0;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title .highlight {
    color: #3498db;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #3498db, #2ecc71);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 25px auto 0;
}

/* Team Cards Grid */
.team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

/* Individual Card Styles */
.team-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    height: 100%;
}

.team-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-10px);
}

/* Card Image with Circle Frame */
.card-image {
    margin-bottom: 25px;
    position: relative;
}

.circle-frame {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #f1f8ff;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover .circle-frame {
    border-color: #3498db;
    transform: scale(1.05);
}

.circle-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .circle-frame img {
    transform: scale(1.1);
}

/* Card Content */
.card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.member-role {
    font-size: 1rem;
    color: #3498db;
    font-weight: 500;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.member-role:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #3498db;
}

.member-desc {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icon.linkedin {
    background-color: #0077b5;
}

.social-icon.twitter {
    background-color: #1da1f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-icon.facebook {
    background-color: #1877f2;
}

.social-icon.github {
    background-color: #333;
}

.social-icon.youtube {
    background-color: #ff0000;
}

.social-icon.flipkart {
    background-color: #047bd5;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .team-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .team-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .circle-frame {
        width: 140px;
        height: 140px;
    }
    
    .team-card {
        padding: 25px 20px;
    }
}


.blogs-section {
    padding: 80px 0;
    width: 100%;
    background-color: #38979e;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title .highlight {
    color: #e67e22;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #e67e22, #f39c12);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 25px auto 0;
}

/* Blog Slider Container */
.blog-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

/* Scroll Buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    color: #e67e22;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-btn:hover:not(:disabled) {
    background-color: #e67e22;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.scroll-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.scroll-btn:active:not(:disabled) {
    transform: translateY(-50%) scale(0.95);
}

.left-scroll-btn {
    left: -25px;
}

.right-scroll-btn {
    right: -25px;
}

/* Blog Cards Container */
.blog-cards-container {
    display: flex;
    gap: 30px;
    width: 100%;
    max-width: 1100px;
    transition: transform 0.5s ease;
    overflow: hidden;
}

/* Individual Blog Card */
.blog-card {
    flex: 0 0 calc(50% - 15px);
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    display: none;
}

.blog-card.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Blog Image */
.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #e67e22;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Blog Content */
.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: #e67e22;
}

.blog-excerpt {
    color: #5d6d7e;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e67e22;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.read-more-btn:hover {
    gap: 12px;
    color: #d35400;
}

.read-more-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* Blog Navigation Dots */
.blog-nav-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot:hover {
    background-color: #bbb;
}

.nav-dot.active {
    background-color: #e67e22;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1100px) {
    .blog-slider-container {
        padding: 0 40px;
    }
    
    .left-scroll-btn {
        left: 0;
    }
    
    .right-scroll-btn {
        right: 0;
    }
}

@media (max-width: 992px) {
    .blog-cards-container {
        max-width: 800px;
    }
    
    .blog-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .blog-cards-container {
        max-width: 500px;
        flex-direction: column;
        gap: 30px;
    }
    
    .blog-card {
        flex: 0 0 100%;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .blogs-section {
        padding: 50px 0;
    }
    
    .scroll-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .left-scroll-btn {
        left: 0;
    }
    
    .right-scroll-btn {
        right: 0;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .blog-image {
        height: 220px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 1.3rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .scroll-btn {
        width: 40px;
        height: 40px;
    }

}










.premium-products-section {
    padding: 80px 0;
    width: 100%;
    background-color: gray;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a3c34;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #d4a574, #8b4513);
    border-radius: 2px;
}

.section-subtitle3 {
    font-size: 1.1rem;
    color: #fcfcfc;
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.8;
}

.highlight-text {
    color: #8b4513;
    font-weight: 600;
    font-style: italic;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Product Card */
.product-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-10px);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #d4a574;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-badge.trending {
    background-color: #e74c3c;
}

.product-badge.organic {
    background-color: #27ae60;
}

.product-badge.new {
    background-color: #3498db;
}

/* Product Image */
.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background-color: white;
    color: #8b4513;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    background-color: #8b4513;
    color: white;
    transform: scale(1.05);
}

/* Product Info */
.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.85rem;
    color: #d4a574;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a3c34;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    color: #f1c40f;
    margin-right: 10px;
}

.stars i {
    font-size: 0.9rem;
}

.rating-value {
    font-size: 0.85rem;
    color: #777;
}

/* Product Footer */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.current-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #8b4513;
}

.original-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-top: 2px;
}

.add-to-cart-btn {
    background-color: #d4a574;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #8b4513;
    transform: scale(1.05);
}

/* View All Button */
.view-all-container {
    text-align: center;
    margin-top: 20px;
}

.view-all-btn {
    background-color: transparent;
    color: #8b4513;
    border: 2px solid #d4a574;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background-color: #8b4513;
    color: white;
    border-color: #8b4513;
    transform: translateY(-3px);
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .premium-products-section {
        padding: 50px 0;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-name {
        font-size: 1.2rem;
    }
    
    .product-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .add-to-cart-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .product-image {
        height: 180px;
    }
}



.main-content {
    padding: 40px 0;
    flex-grow: 1;
}

.main-content h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
}

.main-content p {
    text-align: center;
    color: #4e3d5c;
    max-width: 600px;
    margin: 0 auto;
}

.content-spacer {
    height: 400px;
}

/* Footer Styles */
.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    margin-top: auto;
}

/* Footer Top Section */
.footer-top {
    padding: 70px 0 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #e74c3c;
}

/* About Column */
.about-column .footer-description {
    color: #bdc3c7;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    gap: 12px;
    color: #ff6b6b;
}

.read-more-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more-link:hover i {
    transform: translateX(5px);
}

/* Social Links */
.social-links {
    margin-top: 20px;
}

.social-title {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.pinterest {
    background-color: #bd081c;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-icon:hover {
    transform: translateY(-5px);
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 10px;
}

.footer-links i {
    width: 20px;
    font-size: 0.9rem;
    color: #e74c3c;
}

/* Contact Column */
.contact-column .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    transition: transform 0.3s ease;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.contact-details p {
    color: #bdc3c7;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Footer Bottom Section */
.footer-bottom {
    padding: 25px 0;
    background-color: #1a252f;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: #95a5a6;
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    gap: 15px;
}

.payment-icons i {
    font-size: 1.8rem;
    color: #95a5a6;
    transition: color 0.3s ease;
    cursor: pointer;
}

.payment-icons i:hover {
    color: #ecf0f1;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e74c3c;
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background-color: #ff6b6b;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 30px;
    }
    
    .about-column {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 50px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-column {
        grid-column: span 2;
    }
    
    .contact-column {
        grid-column: span 2;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .about-column,
    .contact-column {
        grid-column: span 1;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .payment-icons {
        gap: 10px;
    }
    
    .payment-icons i {
        font-size: 1.5rem;
    }
}







:root {
  --accent-1: #7b3fe4;
  --accent-2: #ffb703;
  --bg: #fffefc;
  --card: #ffffff;
  --muted: #586065;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(18, 22, 31, 0.08);
  font-family: 'Inter', sans-serif;
}

/* Global */
/*body {*/
/*  margin: 0;*/
/*  background: linear-gradient(180deg, #fff 0%, #fffaf3 100%);*/
/*  color: #0b1220;*/
/*}*/

/* Wrapper Section */
.section {
  max-width: 1100px;
  margin: 48px auto;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(123,63,228,0.06), rgba(255,183,3,0.03));
  box-shadow: var(--shadow);
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 860px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Card */
.card {
  background: var(--card);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(11,18,32,0.04);
}

/* Mini Tag */
.kicker {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  color: white;
  font-size: 13px;
}

/* Titles */
h2 {
  margin: 12px 0 6px;
  font-size: 20px;
}

.lead {
  color: var(--muted);
  line-height: 1.5;
}

/* Features */
.features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.badge {
  min-width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: white;
  font-weight: 700;
}

.feature h3 {
  margin: 0;
}

.feature p {
  margin: 4px 0 0;
  color: var(--muted);
}

/* Buttons */
.cta {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  color: white;
  box-shadow: 0 6px 18px rgba(123, 63, 228, 0.18);
}

.btn-outline {
  border: 1px solid rgba(11,18,32,0.06);
  color: var(--accent-1);
  background: transparent;
}

/* Careers */
.career-list {
  display: grid;
  gap: 12px;
}

.career-item {
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(123,63,228,0.04), rgba(255,183,3,0.02));
  border: 1px solid rgba(11,18,32,0.03);
}

.career-item h4 {
  margin: 0 0 6px;
}

.career-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
