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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Header Styles */
header {
    background: #333;
    color: #fff;
    padding-top: 40px;
    text-align: center;
    font-size: 1.2rem;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

a:active,
a:focus,
a:hover {
    outline: none;
    color: inherit;
    text-decoration: none;
}

.top-bar {
    background:  #4e385c;
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #ff4d4d;
}

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

.social-links a {
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ff4d4d;
}

/* Main Navigation */
.main-nav {
    background: #fff;
    padding: 15px 0;
    position: fixed;
    top: 41px;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 997;
    margin-top: 5px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e14b00;
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #e14b00;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.contactUs-form {
    width: 50%;
    padding: 10px 20px;
}

.dehy-banner-img {
    max-width: 800px;
    height: 100%;
    object-fit: contain;
    margin-top: 20px;
    border-radius: 20px;
}

.dehy-main-section {
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
}

.dehy-title-descri-sec {
    font-size: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #e14b00;
    font-family: Arial, sans-serif;
}

.dehy-descri {
    margin-top: 10px;
    text-align: center;
    font-size: 16px;
    color: #02001b;
}


@media(max-width:994px) {
    .dropdown-submenu {
        left: -225px !important;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .contactUs-form {
        width: 100%;
    }
}


@media(max-width:778px) {
    .product-item-main {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .contact-info {
        display: none;
    }

    .top-bar .container {
        justify-content: center;
    }

    .nav-wrapper {
        gap: 15px;
    }

    .penuts-sec-img {
        right: 80px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        flex-direction: column;
        text-align: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.slide {
    position: relative;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #ff4d4d;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s;
}

/* Features Section */
.features {
    background: #f9f9f9;
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff4d4d;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.feature-icon-wrapper {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff4d4d;
    padding: 5px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg);
}

.feature-content h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.feature-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #ff4d4d;
}

.feature-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
}

.feature-list li i {
    color: #ff4d4d;
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Stats Section */
.stats {
    background: linear-gradient(45deg, #8B4513, #CD853F);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://picsum.photos/id/431/1920/1080') center/cover;
    opacity: 0.1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 20px;
}

.stat-icon i {
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon i {
    color: #e14b00;
    transform: rotateY(180deg);
}

.stat-content {
    color: #000;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter {
    display: inline-block;
}

.plus,
.percent {
    font-size: 2rem;
    margin-left: 5px;
}

.stat-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-content p {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .plus,
    .percent {
        font-size: 1.8rem;
    }
}

/* Contact Section */
.contact {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        url("../img/home-page-img.png") center/cover;
    padding: 80px 0;
}

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

.contact-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-box h3{
    color: #1A1A1A;
}
.contact-info-box p{
    color: #525252;
}

.process-points li {
    color:#525252;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px 0px;
}

.process-points li i{
    color:#464646;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item i {
    font-size: 24px;
    color: #ff4d4d;
    margin-right: 20px;
    margin-top: 5px;
}

.info-content h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

.contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-box h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.submit-btn {
    background: #ff4d4d;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #ff3333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 30px;
    }
}

/* Footer Styles */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.5fr;
    gap: 40px;
    padding: 0 20px;
}

.company-info {
    margin-bottom: 20px;
}

.contact-section {
    display: "flex";
    padding: 50px;
}

.company-info img {
    margin-bottom: 20px;
    max-width: 150px;
}

.company-info p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.social-icons a {
    color: #fff;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ff4d4d;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    color: #cccccc;
}

.footer-links li:hover {
    color: #e14b00;
    cursor: pointer;
}



.quick-links h4,
.footer-products h4,
.footer-contact h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.quick-links h4::after,
.footer-products h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #ff4d4d;
}

.quick-links ul,
.footer-products ul {
    list-style: none;
}

.quick-links ul li,
.footer-products ul li {
    margin-bottom: 10px;
}

.quick-links ul li a,
.footer-products ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.quick-links ul li a:hover,
.footer-products ul li a:hover {
    color: #ff4d4d;
}

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

.contact-item i {
    color: #ff4d4d;
    font-size: 18px;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item p {
    color: #ccc;
    margin: 0;
    line-height: 1.6;
}

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

.footer-bottom p {
    color: #888;
    font-size: 14px;
}

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

.container-contactus {
    padding: 0 15px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.divider-line {
    height: 2px;
    width: 70px;
    background: #ff4d4d;
}

.divider-icon {
    color: #ff4d4d;
    font-size: 24px;
    margin: 0 15px;
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-top: 15px;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: center;
}

.about-text {
    position: relative;
}

.lead-text {
    font-size: 1.3rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

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

.about-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.about-feature i {
    color: #ff4d4d;
    margin-right: 15px;
    font-size: 1.2rem;
}

.about-feature span {
    color: #444;
    font-size: 1.1rem;
}

.about-cta {
    display: inline-block;
    padding: 12px 30px;
    background: #ff4d4d;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.about-cta:hover {
    background: #ff3333;
    transform: translateY(-2px);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #ff4d4d;
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 5px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-badge {
        bottom: -20px;
        right: -20px;
        width: 100px;
        height: 100px;
    }

    .experience-badge .years {
        font-size: 1.8rem;
    }

    .experience-badge .text {
        font-size: 0.8rem;
    }
}

/* Page Banner */
.page-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-banner h1 {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
}

/* Story Page */
.story-content {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.story-text h3 {
    font-size: 1.8rem;
    margin: 25px 0 15px;
    color: #444;
}

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

/* Products Page */
.product-categories {
    padding: 80px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.category-card p {
    color: #666;
}

.dropdown {
    position: relative;
    list-style: none;
}


.dropdown-nav {
    position: absolute;
    width: 220px;
    top: 100%;
    left: -70px;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    font-size: 24px !important;
    border: 1px solid transparent;
    border-radius: 10px !important;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    cursor: pointer;
    text-transform: capitalize;
}


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

.dropdown-item {
    position: relative;
    padding: 0px !important;
}

.dropdown-item {
    background-color: #fff !important;
    color: #6a4f82 !important;
}

.dropdown-item>a {
    display: block;
    color: #6a4f82;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 10px;
    text-align: left;
    padding-left: 5px;
    font-size: 14px;
    text-transform: capitalize;
}

.dropdown-item>a:hover {
    background-color: #6a4f82 !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.dropdown-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: transparent;
    transition: width 0.3s;
}

.dropdown-submenu {
    position: absolute;
    top: 0;
    left: 220px;
    width: 245px;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
    border-radius: 10px !important;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    cursor: pointer;
}

.dropdown-item:hover>.dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-submenu li a {
    display: block;
    color: #6a4f82;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 10px;
    text-align: left;
    padding-left: 5px;
    font-size: 14px;
    text-transform: capitalize;
}

.dropdown-submenu li a:hover {
    background-color:  #4e385c;
}

.dropdown-submenu li a:hover {
    color: #ffffff !important;
}

.dropdown-nav a.active,
.dropdown-submenu a.active {
    background-color: #8B5E83;
}


/* Responsive Design */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 30px 20px;
    }
}

/* Global Presence Section */
.global-presence {
    padding: 100px 0;
    background: #fff;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.region-card {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.region-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.region-card i {
    font-size: 2.5rem;
    color: #ff4d4d;
    margin-bottom: 20px;
}

.region-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.region-card p {
    color: #666;
    line-height: 1.6;
}

/* Product Categories Showcase */
.product-showcase {
    padding: 100px 0;
    background: #f9f9f9;
}

.product-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.category-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.category-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.category-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-content {
    padding: 30px;
}

.category-content h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.category-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.category-content ul li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.category-content ul li::before {
    content: '•';
    color: #ff4d4d;
    position: absolute;
    left: 0;
}

.view-more {
    display: inline-block;
    padding: 10px 20px;
    background: #ff4d4d;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.view-more:hover {
    background: #ff3333;
}

/* Export Process */
.export-process {
    padding: 100px 0;
    background: #fff;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
    padding: 0 50px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ff4d4d;
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: #fff;
    border: 2px solid #ff4d4d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 2rem;
    color: #ff4d4d;
}

.process-step h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.process-step p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {

    .regions-grid,
    .product-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        flex-wrap: wrap;
        gap: 30px;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 576px) {

    .regions-grid,
    .product-categories-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex: 0 0 100%;
    }
}

/* History Section */
.history {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: #ff4d4d;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    margin-bottom: 50px;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-content {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.timeline-date {
    position: absolute;
    top: -40px;
    width: 100%;
    text-align: center;
}

.timeline-date .year {
    background: #ff4d4d;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.timeline-marker {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #fff;
    border: 4px solid #ff4d4d;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.timeline-item.left .timeline-marker {
    right: -65px;
}

.timeline-item.right .timeline-marker {
    left: -65px;
}

.timeline-marker i {
    color: #ff4d4d;
    font-size: 1.5rem;
}

.timeline-info {
    padding-right: 30px;
}

.timeline-info h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.timeline-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.milestone-points {
    list-style: none;
    padding: 0;
}

.milestone-points li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
}

.milestone-points li i {
    color: #ff4d4d;
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Timeline arrows */
.timeline-item.left .timeline-content::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 15px 0 15px 15px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.timeline-item.right .timeline-content::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 15px 15px 15px 0;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-marker {
        left: 6px !important;
        right: auto !important;
    }

    .timeline-content::after {
        display: none;
    }

    .timeline-date {
        position: relative;
        top: 0;
        margin-bottom: 20px;
        text-align: left;
    }
}

/* Vision Mission Section */
.vision-mission {
    padding: 100px 0;
    background: #f9f9f9;
}

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

.vm-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid #ff4d4d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.vm-icon i {
    font-size: 2rem;
    color: #ff4d4d;
    transition: transform 0.3s ease;
}

.vm-card:hover .vm-icon {
    background: #ff4d4d;
}

.vm-card:hover .vm-icon i {
    color: #fff;
    transform: rotateY(180deg);
}

.vm-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.vm-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.vm-points {
    list-style: none;
    padding: 0;
    text-align: left;
}

.vm-points li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
}

.vm-points li i {
    color: #ff4d4d;
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 77, 77, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .social-overlay {
    opacity: 1;
}

.social-overlay a {
    color: #fff;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-overlay a:hover {
    transform: scale(1.2);
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.member-info .position {
    color: #ff4d4d;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-info .bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}



/* Responsive Design */
@media (max-width: 992px) {

    .vm-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .vm-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Laboratory Section */
.laboratory {
    padding: 100px 0;
    background: #fff;
}

.lab-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.lab-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.lab-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.lab-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.lab-feature:hover {
    transform: translateX(10px);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.lab-feature i {
    font-size: 2rem;
    color: #ff4d4d;
    background: rgba(255, 77, 77, 0.1);
    padding: 15px;
    border-radius: 10px;
}

.feature-text h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature-text p {
    color: #666;
    line-height: 1.6;
}

/* Quality Parameters */
.quality-parameters {
    padding: 100px 0;
    background: #f9f9f9;
}

.parameters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.parameter-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.parameter-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.parameter-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 77, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.parameter-icon i {
    font-size: 1.8rem;
    color: #ff4d4d;
}

.parameter-card h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.parameter-card ul {
    list-style: none;
    padding: 0;
}

.parameter-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    margin-bottom: 12px;
}

.parameter-card ul li i {
    color: #ff4d4d;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .parameters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

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

/* Certifications Section */
.certifications {
    padding: 100px 0;
    background: #fff;
}

.cert-grid {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.cert-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cert-icon {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-icon img {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.cert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 77, 77, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cert-overlay i {
    color: #fff;
    font-size: 2rem;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.cert-card:hover .cert-overlay {
    opacity: 1;
}

.cert-card:hover .cert-overlay i {
    transform: scale(1);
}

.cert-card:hover .cert-icon img {
    transform: scale(1.1);
}

.cert-content {
    padding: 30px;
}

.cert-content h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

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

.cert-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.cert-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    margin-bottom: 8px;
}

.cert-features li i {
    color: #ff4d4d;
    font-size: 0.9rem;
}

.cert-validity {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}



/* Float Buttons */
.float-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

/* Scroll to Top Button */
.scroll-top {
    background-color: #ff4d4d;
    color: #FFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

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

.scroll-top:hover {
    background-color: #ff3333;
    color: #FFF;
    transform: translateY(-3px);
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.3);
}

/* WhatsApp Float Button */
.whatsapp-float {
    background-color: #25d366;
    color: #FFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: translateY(-3px);
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.whatsapp-float i,
.scroll-top i {
    animation: pulse 2s infinite;
}

/* Featured Products Carousel */
.featured-products {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.product-carousel {
    position: relative;
    padding: 0 50px;
    margin-top: 40px;
    overflow: hidden;
}

.product-slides {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.product-slide {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

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

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

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #333;
}

.product-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-btn:hover {
    background: #ff4d4d;
    color: #fff;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.penuts-sec-img {
    position: absolute;
    top: 170px;
    right: 100px;
}

.peanuts-sec-main {
    position: relative;
    height: 250px;
}

.peanuts-sec-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.penuts-sec-img h1 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.peanuts-items-sec-main {
    padding: 40px 0px;
    font-family: Arial, sans-serif;
    font-weight: 600;
    font-size: 38px;
    margin: 10px 0px 20px 0px;
}

.peanuts-sec-items-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px 20px;
    margin-top: 30px;
    justify-items: center;
    font-family: Arial, sans-serif;
}

.Penanuts-item-box {
    border: 1px solid transparent;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.Penanuts-item-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.peanuts-box-img {
    height: 225px;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.Penanuts-box-content {
    padding: 25px 20px;
    background-color: #f7f7f7;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 120px;
}

.Penanuts-box-content a:hover {
    text-decoration: none !important;
    color:  #4e385c;
}

.Penanuts-box-content-dehy {
    font-size: 16px;
    text-align: center;
    background: #fff;
}

.Penanuts-box-content h3 {
    font-size: 20px;
    margin: 0 0 15px 0;
    font-weight: 700;
    color: #02001b;
    text-transform: capitalize;
    line-height: 1;
    text-align: center;
    margin-bottom: 20px;
}

.Penanuts-box-content-navigate {
    font-family: "Montserrat", sans-serif;
    color: #ab8d69;
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    text-align: center;
}

.product-item-main {
    margin-top: 30px;
    display: flex;
}

.product-item-img {
    margin-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 424px;
    max-height: 327px;
}

.product-item-content {
    margin-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 642px;
}

.product-item-tabel {
    margin-bottom: 20px;
    width: 100%;
}

.tabel-data-fist {
    flex: 1;
    font-weight: bold;
    text-align: left;
    padding: 5px;
    font-size: 16px;
}

.tabel-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-size: 16px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-bottom: 10px;
}

.tabel-data-fist-dehy {
    color: #333333;
    font-weight: bold;
    text-align: justify;
    font-size: 14px;
    display: flex;
    justify-content: start;
    align-items: start;
    margin-right: 10px;
    margin-left: 10px;
}

.tabel-data-second {
    flex: 1;
    text-align: right;
    padding: 5px;
    font-size: 16px;
}

.tabel-data-second-dehy {
    color: #333333;
    font-weight: bold;
    font-size: 12px;
    margin-right: 10px;
}


.tabel>thead>tr>th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
}

table td[class*=col-],
table th[class*=col-] {
    position: static;
    display: table-cell;
    float: none;
}

.product-item-content-writeup {
    font-family: "Montserrat", sans-serif;
    color: #282834;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    text-align: justify;
}

.product-item-heading {
    font-weight: 600;
    color: #343149;
    font-family: "calibri", Arial, Helvetica, sans-serif;
    font-size: 16px;
}

.side-nav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    z-index: 1000;
}

.side-nav a {
    padding: 5px 5px 5px 15px;
    text-decoration: none;
    color: #818181;
    font-size: 25px;
    display: block;
    transition: 0.3s;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.side-nav a:hover {
    color: #f1f1f1;
}

.side-nav .close-btn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
}

.side-nav-dropdown {
    font-size: 12px !important;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    ;
}

.quality-image {
    max-width: 100%;
}

.process-points {
    list-style: none;
    text-align: left;
}


textarea::placeholder {
    font-family: Arial, sans-serif;
}

textarea {
    resize: none;
}

.catelog-Dow-sec {
    border: 1px solid #ffffff;
    border-radius: 10px;
    position: relative;
    background: #fff;
    color: #e14b00;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.catelog-Dow-sec:hover {
    border: 2px solid #e14b00;
}


.catelog-dow-option-main {
    background-color: transparent;
    color: #e14b00;
    font-size: 14px;
    padding: 3px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.catelog-dow-list {
    display: none;
    position: absolute;
    top: 109%;
    left: 0;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1000;
    width: 150px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.catelog-dow-list-item {
    padding: 5px;
    color: black;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-area: 10px;
}

.catelog-dow-list-item:hover {
    background:  #4e385c;
    color: #ffffff;
}

.cer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cer-logo img {
    max-width: 300px;
    height: 150px;
}

.about-main-heading {
    color:  #4e385c;
    font-size: 50px;
    padding-bottom: 20px;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: bold;
}

.about-heading-line {
    width: 100px;
    height: 5px;
    background-color: #e14b00;
}

.sourcing-story-main {
    border-radius: 15px;
    margin-bottom: 25px;
    transition: transform 0.3s ease-in-out;
    display: flex;
    gap: 20px;
}

.sourcing-story-main-img {
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sourcing-story-main-img-small {
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ourstory-img-main-small {
    display : none;
}

#product-content-col-rev {
    display : flex;
    flex-direction: column;
}

#category-heading {
    font-size:38px;
}

/* Responsive Design */
@media(max-width:1095px) {
    .sourcing-story-main {
        flex-direction: column;
    }

    .ourstory-img-main-small {
        display : block;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .sourcing-story-main-img {
        display: none;
    }
}

@media(max-width:560px) {
    .ourstory-img-main-small {
        flex-direction: column;
    }
}
@media (max-width: 1024px) {
    .product-slide {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }

    .peanuts-items-sec-main {
        padding: 10px 10px;
    }

    .dehy-title-descri-sec {
        text-align: center;
    }
}

@media (min-width: 1024px) {
    .footer-logo {
        width: 245px;
        height: 121px;
    }

    .page-banner h1 {
        font-size: 40px;
    }

}

@media (max-width: 768px) {
    .product-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .product-carousel {
        padding: 0 40px;
    }

    .page-banner h1 {
        font-size: 40px;
    }

    .contact-section {
        padding: 20px 0px;
    }
    .product-item-img {
        max-width: 300px;
    }
}

@media(max-width:380px) {
    .page-banner h1 {
        font-size: 30px;
    }

    .about-main-heading {
        flex-direction: column;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media(max-width:425px) {
    .footer-logo {
        width: 245px;
        height: 121px;
    }
}