* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Marcellus', serif;
}

/* Top bar styles */
.top-bar {
    background: #fff;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
  }
  
  .top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    color: #666;
  }
  
  .top-bar-item {
    display: flex;
    align-items: center;
    margin-left: 20px;
  }
  
  .top-bar-item:first-child {
    margin-left: 0;
  }
  
  .top-bar-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
  }
  
  @media (max-width: 768px) {
    .top-bar {
      font-size: 12px;
      padding: 6px 0;
    }
  
    .top-bar-content {
      justify-content: center;
      padding: 0 12px;
    }
  
    .top-bar-item {
      margin-left: 12px;
    }
  
    .top-bar-icon {
      width: 14px;
      height: 14px;
      margin-right: 4px;
    }
  
    .hide-mobile {
      display: none;
    }
  }
  
  @media (max-width: 480px) {
    .top-bar-item span {
      display: none;
    }
  
    .top-bar-item.show-mobile-text span {
      display: inline;
    }
  }

/* Main header styles */
.main-header {
    padding: 24px 0;
    background: #fff;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    font-size: 28px;
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 4px;
}

.nav-link.active {
    background: #F6F6F6;
}

.nav-link:hover {
    background: #F6F6F6;
}

.get-in-touch {
    background: #35419C;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.get-in-touch svg {
    width: 16px;
    height: 16px;
}

/* Language and search section */
.utility-section {
    display: flex;
    gap: 20px;
    align-items: center;
}

.search-icon, .globe-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Hero section styles */
.hero {
    position: relative;
    overflow: hidden;
    color: white;
    padding: 120px 24px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.category-tag {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    color: #fff;
    font-size: 16px;
    margin-bottom: 32px;
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: 64px;
    line-height: 1.2;
    color: #fff;
    max-width: 800px;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: #f0f0f0;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.metrics {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.success-rate, .spotlight {
    font-size: 16px;
    color: #fff;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.1);
}

.spotlight {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Mission section styles */
.mission-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 24px;
    text-align: center;
}

.mission-title {
    font-size: 48px;
    color: #1B2B4D;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-text {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.product-card {
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 32px;
    position: relative;
    background: #fff;
}

.product-card h3 {
    font-size: 28px;
    color: #1B2B4D;
    margin-bottom: 24px;
}

.product-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.product-list {
    list-style: none;
    padding: 0;
}

.product-list li {
    color: #4B5563;
    font-size: 16px;
    margin-bottom: 12px;
}

.product-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.view-all {
    display: inline-flex;
    align-items: center;
    color: #4CAF50;
    text-decoration: none;
    font-size: 16px;
    margin-top: 24px;
    gap: 8px;
}

.view-all:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-title {
        font-size: 36px;
    }
}

/* Spices Origin Section */
.spices-origin {
    position: relative;
    margin: 80px 0;
    min-height: 600px;
    background: #f8f9fa;
    overflow: hidden;
}

.spices-origin-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
}

.spices-origin-content {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 60px;
    width: 50%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-right: 24px;
}

.spices-origin-title {
    font-size: 40px;
    color: #1B2B4D;
    margin-bottom: 24px;
    line-height: 1.2;
}

.spices-origin-text {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .spices-origin-content {
        width: 60%;
        padding: 40px;
    }
    
    .spices-origin-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .spices-origin {
        min-height: auto;
    }
    
    .spices-origin-image {
        position: relative;
        width: 100%;
        height: 300px;
    }
    
    .spices-origin-content {
        position: relative;
        width: calc(100% - 48px);
        margin: -60px 24px 24px;
        transform: none;
        top: 0;
    }
}


 /* FAQ Section styles */
 .faq-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 24px;
}

.faq-title {
    font-size: 48px;
    color: #1B2B4D;
    text-align: center;
    margin-bottom: 48px;
}

.faq-container {
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #E5E7EB;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 24px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #1B2B4D;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #F8F9FA;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.faq-answer-content {
    padding: 0 24px 24px;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0;
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    color: #666;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 36px;
        margin-bottom: 32px;
    }
}

/* Footer styles */
.footer {
    background-color: #1B2B4D;
    color: white;
    padding: 60px 24px 24px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    max-width: 280px;
    margin-bottom: 24px;
}

.footer-contact {
    font-size: 14px;
    line-height: 1.6;
}

.footer-nav-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom-links {
    display: flex;
    gap: 16px;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-bottom a:hover {
    opacity: 0.8;
}

.linkedin-icon {
    width: 24px;
    height: 24px;
    fill: white;
}

.legal-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 1400px;
    margin: 24px auto 0;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}


 /* Mobile Menu Styles */
 .hamburger {
    display: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger svg {
    width: 24px;
    height: 24px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 1000;
    padding: 24px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
    display: block;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.close-menu {
    cursor: pointer;
    padding: 8px;
}

.close-menu svg {
    width: 24px;
    height: 24px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    font-size: 18px;
    color: #333;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

/* Bottom Navigation Bar */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #eee;
    padding: 12px 0;
    z-index: 100;
}

.bottom-nav-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 12px;
    gap: 4px;
}

.bottom-nav-item svg {
    width: 24px;
    height: 24px;
}

.bottom-nav-item.active {
    color: #35419C;
}

/* Update existing responsive styles */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .utility-section {
        gap: 12px;
    }

    .search-icon, .globe-icon {
        display: none;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 60px; /* Space for bottom navigation */
    }

    .top-bar-content {
        justify-content: center;
        flex-wrap: wrap;
    }

    .bottom-nav {
        display: block;
    }

    .get-in-touch {
        display: none;
    }
}


/* Add this to your existing style.css file */

/* Featured Products Section */
.featured-products-section {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 24px;
}

.container {
    width: 100%;
}

.featured-title {
    font-size: 48px;
    color: #1B2B4D;
    text-align: center;
    margin-bottom: 48px;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.featured-product-card {
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.featured-product-image {
    height: 200px;
    overflow: hidden;
}

.featured-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-product-card:hover .featured-product-image img {
    transform: scale(1.05);
}

.featured-product-content {
    padding: 20px;
}

.featured-product-content h3 {
    font-size: 20px;
    color: #1B2B4D;
    margin-bottom: 10px;
}

.featured-product-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-link {
    color: #35419C;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    position: relative;
}

.product-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #35419C;
    transition: width 0.3s ease;
}

.product-link:hover::after {
    width: 100%;
}

.view-more-container {
    text-align: center;
    margin-top: 40px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #35419C;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.view-more-btn:hover {
    background-color: #2a3479;
}

.view-more-btn svg {
    width: 16px;
    height: 16px;
    stroke: white;
}

@media (max-width: 1024px) {
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-title {
        font-size: 36px;
        margin-bottom: 32px;
    }
    
    .featured-products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .featured-product-image {
        height: 180px;
    }
}


/* Certification Section */
.certification-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.certification-title {
    font-size: 48px;
    color: #1B2B4D;
    text-align: center;
    margin-bottom: 16px;
}

.certification-description {
    font-size: 18px;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.certification-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.certification-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.certification-logo:hover {
    transform: translateY(-5px);
}

.certification-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.certification-logo:hover img {
    filter: grayscale(0%);
}

.certification-logo span {
    font-size: 14px;
    color: #1B2B4D;
    font-weight: 500;
}

/* Custom Packaging Section */
.custom-packaging-section {
    padding: 80px 0;
    background-color: #fff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.custom-packaging-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 100%;
}

.custom-packaging-text {
    flex: 1;
}

.custom-packaging-title {
    font-size: 40px;
    color: #1B2B4D;
    margin-bottom: 24px;
}

.custom-packaging-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
}

.custom-packaging-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.custom-packaging-features li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 16px;
    color: #1B2B4D;
}

.custom-packaging-features li svg {
    width: 20px;
    height: 20px;
    stroke: #35419C;
    margin-right: 12px;
    flex-shrink: 0;
}

.custom-packaging-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #35419C;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.custom-packaging-cta:hover {
    background-color: #2a3479;
}

.custom-packaging-cta svg {
    width: 16px;
    height: 16px;
    stroke: white;
}

.custom-packaging-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.custom-packaging-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .certification-title {
        font-size: 36px;
    }
    
    .certification-description {
        font-size: 16px;
    }
    
    .certification-logos {
        gap: 30px;
    }
    
    .certification-logo img {
        height: 70px;
    }
    
    .custom-packaging-title {
        font-size: 32px;
    }
    
    .custom-packaging-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .certification-section {
        padding: 40px 0;
    }
    
    .certification-logos {
        gap: 20px;
    }
    
    .certification-logo img {
        height: 60px;
    }
    
    .custom-packaging-content {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .custom-packaging-image {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .certification-logos {
        gap: 30px 10px;
    }
    
    .certification-logo {
        width: 45%;
    }
    
    .certification-logo img {
        height: 50px;
    }
}