
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

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




 


/*################### *new home section* ########################*/

   #header .logo{

    width: 300px;
    height: auto;
    display: block;
    max-width: 100%;
    
  }


/*#####################end##########################*/

c1{
   
    font-size: 18px;
    line-height: 30px;
    font-weight: 900;
    color: #292828;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}

h1{
   
    font-size: 30px;
    line-height: 20px;
    font-weight: 900;
    color: #000000;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}

h4 {

     font-size: 15px;
    line-height: 40px;
    font-weight: 800;
    color: #af0000;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}
 



price{
    font-size: 25px;
     color: #430202;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}



prices{
    font-size: 40px;
     color: #4a0000;
      line-height: 60px;
     font-weight: 700;
    font-family:'Times New Roman', Times, serif;

}


h5{
    color: #074931;  
    
    font-size: 18px;
  font-weight: 520;
  font-style: normal  

}

h11{
    color: #01ff5e;  
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 13px;
  font-weight: 520;
  font-style: normal  

}


h6{
  color:#ffffff;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  font-size:18px;
  font-weight:700;
  font-style:normal;
  /* glow */
  text-shadow:
    0 0 4px rgba(0, 255, 47, 0.9),
    0 0 10px rgba(255,255,255,0.7),
    0 0 20px rgba(255,255,255,0.5);
}

h7{
    color: #004b0a;  
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 13px;
  font-weight: 600;
  font-style: normal  
   


}

h8{

    color:#910000;
    font-size: 20px;
    font-weight: 600;
    font-style: normal;

    
    text-shadow: 0 0 4px rgb(218, 1, 1),
    0 0 10px rgba(255, 0, 0, 0.9);
}

.pro .des span,
.pro .des h7 {
    display: block;
    margin-bottom: 5px; /* Adjust the value as needed for spacing */
}

 
 

p{

    font-size: 15px;
    color:  #980303;;
    margin: 15px 0 20px 0;
}

.section-p1{

    padding:40px 80px;

}


.section-m1{
    margin:40px 0;
}




body{
    width: 100%;
}



#hero2 .hero-content-2 {
    padding: 40px;
    background: rgba(60, 247, 50, 0.164);
    backdrop-filter: blur(15px);
    border-radius: 18px;
    max-width: 650px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
 }

/*################   MAIN PAGE  ###################################################*/
 /* Desktop Header Styles */
        #header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 80px;
            background: #ffffff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
            z-index: 999;
            position: sticky;
            top: 0;
            left: 0;
        }

        /* Logo */
        .logo {
            height: 50px;
            width: auto;
        }

        /* Navbar */
        #navbar {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #navbar li {
            list-style: none;
            padding: 0 20px;
            position: relative;
        }

        #navbar li a {
            text-decoration: none;
            font-size: 25px;
            font-weight: 400;
            color: #04a22e;
            transition: 0.3s ease;
        }

        #navbar li a:hover,
        #navbar li a.active {
            color: rgb(253, 0, 0);
        }

        #navbar li a.active::after {
            content: "";
            width: 30%;
            height: 2px;
            background: rgb(64, 105, 93);
            position: absolute;
            bottom: -4px;
            left: 20px;
        }

        /* Cart Icon */
        .cart-icon {
            position: relative;
            display: flex;
        }

        .fa-shopping-bag {
            font-size: 24px;
        }

        .fa-shopping-bag:hover {
            color: rgb(0, 158, 76);
        }

        .cart-item-count {
            position: absolute;
            top: 0;
            right: -6px;
            width: 18px;
            height: 18px;
            background: #009e2d;
            border-radius: 50%;
            font-size: 12px;
            color: #f7f2f2;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Profile Icon */
        .icon.prof {
            width: 30px;
            height: 30px;
            border-radius: 50%;
        }

        /* Hamburger Icon - Hidden by default */
        .hamburger-icon {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 8px;
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1001;
            background: #ffffff;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .hamburger-icon span {
            width: 25px;
            height: 3px;
            background-color: #04a22e;
            margin: 2px 0;
            transition: 0.3s ease;
            border-radius: 2px;
        }

        /* Hamburger Animation */
        .hamburger-icon.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger-icon.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger-icon.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Mobile Header - Hidden by default */
        #mobile-header {
            display: none;
            position: fixed;
            top: -100%;
            left: 0;
            width: 100%;
            background: #ffffff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
            z-index: 1000;
            transition: top 0.4s ease;
            padding: 80px 30px 30px 30px;
        }

        #mobile-header.active {
            top: 0;
            display: block;
        }

        /* Mobile Navbar */
        #mobile-navbar {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        #mobile-navbar li {
            list-style: none;
            padding: 15px 0;
            width: 100%;
            text-align: center;
            border-bottom: 1px solid #f0f0f0;
        }

        #mobile-navbar li a {
            text-decoration: none;
            font-size: 22px;
            font-weight: 400;
            color: #04a22e;
            transition: 0.3s ease;
            display: block;
        }

        #mobile-navbar li a:hover,
        #mobile-navbar li a.active {
            color: rgb(253, 0, 0);
        }

        /* Mobile Logo */
        .mobile-logo {
            text-align: center;
            margin-bottom: 30px;
        }

        .mobile-logo .logo {
            height: 60px;
            width: auto;
        }

        /* Overlay */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        .overlay.active {
            display: block;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            /* Hide desktop header */
            #header {
                display: none;
            }

            /* Show hamburger icon */
            .hamburger-icon {
                display: flex;
            }

            /* Show mobile header when active */
            #mobile-header {
                display: block;
            }
        }

        /* Demo content */
        .demo-content {
            padding: 50px 20px;
            text-align: center;
            min-height: 100vh;
        }

        .demo-section {
            margin: 50px 0;
            padding: 30px;
            background: #f9f9f9;
            border-radius: 10px;
        }
/*###########################################################################/
 /*###############  Newest part  #############################*/

    .hero-video-section {
    position: relative;
    height: 90vh; /* 70% of viewport height - adjust as needed */
    min-height: 500px;
    max-height: 800px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video background container */
.video-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Video element */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Video overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Hero content container */
.hero-content-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    min-height: 100%;
}

/* Hero content styling */
.hero-content {
    padding: 40px;
    background: rgba(255, 255, 255, 0.683);
    backdrop-filter: blur(15px);
    border-radius: 18px;
    max-width: 900px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Organic badge */
.organic-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 2px solid rgba(76, 175, 80, 0.2);
}

.organic-badge::before {
    content: "🌱";
    margin-right: 8px;
}

/* Hero titles */
.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.1;
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: 3.2rem;
    font-weight: 800;
    color: #4CAF50;
    line-height: 1.1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 3.2rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Hero description */
.hero-description {
    font-size: 16px;
    color: #3a3a3a;
    line-height: 1.5;
    margin-bottom: 25px;
    max-width: 700px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.btn-primary::after {
    content: "→";
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-primary:hover::after {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: #2c3e50;
    padding: 16px 32px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: #4CAF50;
    color: #4CAF50;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

.feature-subtitle {
    font-size: 14px;
    color: #7f8c8d;
    text-align: center;
}

/* Rating overlay - positioned within the hero section */
.rating-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.rating-star {
    color: #FFD700;
    font-size: 20px;
}

.rating-text {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.rating-subtext {
    color: #7f8c8d;
    font-size: 14px;
    margin-top: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-video-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content {
        margin: 20px;
        padding: 30px 20px;
        max-width: none;
    }

    .hero-title, .hero-subtitle, .hero-tagline {
        font-size: 2.5rem;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .rating-overlay {
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .hero-video-section {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-title, .hero-subtitle, .hero-tagline {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 14px;
    }
}
/*####################### ALL PRODUCT LISTING SECTION ####################################*/
/*---------------------------------------------------------------------------------------*/
 /*------------------- ---------Featured Products Section ------------------------------*/


        .featured-products {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0;
            position: relative;
        }

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

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

        .products-title {
            font-size: 3rem;
            font-weight: 800;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .products-subtitle {
            font-size: 18px;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

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

        .product-image {
            position: relative;
            height: 250px;
            overflow: hidden;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        }

        .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-badges {
            position: absolute;
            top: 15px;
            left: 15px;
            right: 15px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .organic-badge-small {
            background: rgba(76, 175, 80, 0.9);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }

        .rating-badge {
            background: rgba(255, 255, 255, 0.9);
            color: #333;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }

        .product-info {
            padding: 25px;
        }

        .product-name {
            font-size: 20px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .product-category {
            color: #4CAF50;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .product-description {
            color: #7f8c8d;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .price-section {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .price {
            font-size: 24px;
            font-weight: 800;
            color: #4CAF50;
        }

        .unit {
            font-size: 12px;
            color: #7f8c8d;
        }

        .add-to-cart-btn {
            background: linear-gradient(135deg, #4CAF50, #45a049);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .add-to-cart-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(156, 0, 0, 0.82);
        }

        @media (max-width: 768px) {
            .products-title {
                font-size: 2.2rem;
            }

            .products-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .product-card {
                margin: 0 10px;
            }

            .featured-products {
                padding: 60px 0;
            }
        }
/*#############################################################################################################*/
/*--------------------------------------------------------------------------------------------------------------*/
/*---------------------------------Footer Styles ---------------------------------------------------------------*/
   /* FreshMarket Style Footer - White Background */

.footer-new {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 60px 0 0 0;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: start;
}

/* Brand Column */
.brand-column {
    max-width: 350px;
}

.brand-section {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-new .logo {
    width: 150px;
    height: 150px;
    margin-right: 15px;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.brand-description {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Footer Column Headers */
.footer-column h4 {
    color: #1f2937;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

/* Links Styling */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #910000;
}

/* Social Section */
.social-section h4 {
    color: #1f2937;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.social-icons i {
    width: 40px;
    height: 40px;
    background: #02c408;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-icons i:hover {
    background: #960505;
    color: white;
    transform: translateY(-2px);
}

/* Contact Column */
.contact-column {
    min-width: 200px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #6b7280;
    font-size: 14px;
}

.contact-item i {
    color: #059669;
    width: 20px;
    margin-right: 12px;
    font-size: 14px;
}

/* Bottom Section */
.footer-bottom-section {
    border-top: 1px solid #e5e7eb;
    margin-top: 50px;
    padding: 30px 0;
}

.app-payment-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    margin-bottom: 30px;
}

.app-downloads p,
.payment-methods p {
    color: #1f2937;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.app-buttons img {
    height: 45px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.app-buttons img:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.payment-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.payment-icons img {
    height: 35px;
    width: auto;
    border-radius: 4px;
    background: white;
    padding: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Footer Bottom Copyright */
.footer-bottom {
    text-align: center;
    padding: 20px 40px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 40px;
        padding: 0 30px;
    }
    
    .app-payment-section {
        padding: 0 30px;
    }
    
    .footer-bottom {
        padding: 20px 30px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .app-payment-section {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
        text-align: center;
    }
    
    .footer-bottom {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .brand-column {
        max-width: 100%;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .payment-icons {
        justify-content: center;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}
/* ==================  Ends ======================================================= */

/* ========================================================================= */

 

/*------------------PRODUCT------------------*/ 
#product1{
    
    text-align: center;   
      
}


#product1 .pro-container{
    display:flex;
    justify-content: space-between;
    padding-top: 10px;
    flex-wrap: wrap;
}
#product1 .pro{
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #000000;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(1, 0, 0, 0.06);
    margin: 15px 0;
    transition: 0.2 ease;
    position: relative;
    
}

#product1 .pro img{

    width: 100%;
    border-radius: 20px;
}


#product1 .pro:hover{

    box-shadow: 20px 20px 30px rgba(143, 1, 1, 0.6);

}

#product1 .pro .des{
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .des span{
    color:#7a1600;
    font-size: 17px;
}

#product1 .pro .des i{
    font-size: 17px;
    color: #ebca11;

}

#product1 .pro .cart{
    width: 40px;
    height: 40px;
     line-height: 40px;
     border-radius: 50px;
     background-color: #dae4e0;
     color: #5f0303;
     position: absolute;
     bottom: 20px;
     right: 10px;
    
    
    
}

#product1 .pro  .cart:hover {
            background-color: #f0f0f0;
            color: rgb(21, 164, 2);
        }



/* --------------------FOOTER SECTION ------------------------*/



 
 /*########################## Catogories catpage #############################################*/
 
 
 


 s1{
    color: #1f4202;
    font-family: "Ribeye";
    font-size: 50px;
    text-align: center;
    
 }

 

s3{
        font-size: 30px;
        font-style: normal;
        font-weight:900;
        line-height: 50px;
        color:  #750404;;
        margin: 15px 0 20px 0;
    
}

c2 {

    font-size: large;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 800;
}
/*-----*/
#cat {
    padding: 80px 40px;
    background-image: url("pictures/cover/home3.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Inter', sans-serif;
    position: relative;
}

#cat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.intro-section {
    max-width: 100%;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 60px;
    color: #ffffff;
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
}

s2 {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ffffff;
    display: block;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3), 0 2px 4px rgba(0, 0, 0, 0.5);
}

.categories-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 600px;
}

.category-large {
    grid-column: 1 / -1;
    grid-row: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.category-medium {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.category-bottom-left {
    grid-column: 1;
    grid-row: 2;
}

.category-bottom-right {
    grid-column: 2;
    grid-row: 2;
}

.category-large:hover,
.category-medium:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(220, 38, 38, 0.632), 0 0 80px rgba(220, 38, 38, 0.655);
}

.abstract-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.category-large:hover .abstract-pattern,
.category-medium:hover .abstract-pattern {
    transform: scale(1.05);
}

.pattern-1 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 30%, #404040 60%, #1a1a1a 100%);
    background-image: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 20%, rgba(255, 255, 255, 0.03) 40%, transparent 60%),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.01) 2px, rgba(255, 255, 255, 0.01) 4px);
}

.pattern-2 {
    background: linear-gradient(225deg, #2d2d2d 0%, #1a1a1a 40%, #404040 80%, #2d2d2d 100%);
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 60%),
        linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.04) 50%, transparent 70%);
}

.pattern-3 {
    background: linear-gradient(315deg, #404040 0%, #2d2d2d 50%, #1a1a1a 100%);
    background-image: 
        radial-gradient(ellipse at 60% 40%, rgba(255, 255, 255, 0.09) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, 0.07) 0%, transparent 45%),
        linear-gradient(225deg, transparent 35%, rgba(255, 255, 255, 0.02) 50%, transparent 65%);
}

.floating-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    padding: 30px;
    max-width: 80%;
}

.category-label {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.4), 0 0 60px rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.category-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.3);
    margin: 0;
    font-weight: 300;
}

.category-medium .category-label {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.category-medium .category-desc {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    #cat {
        padding: 60px 20px;
    }
    
    .main-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .categories-visual {
        grid-template-columns: 1fr;
        grid-template-rows: 250px 200px 200px;
        height: auto;
        gap: 15px;
    }
    
    .category-large {
        grid-column: 1;
        grid-row: 1;
    }
    
    .category-bottom-left {
        grid-column: 1;
        grid-row: 2;
    }
    
    .category-bottom-right {
        grid-column: 1;
        grid-row: 3;
    }
    
    .category-label {
        font-size: 1.4rem !important;
    }
    
    .category-desc {
        font-size: 0.85rem !important;
    }
}
/*
 #cat{
    
    text-align: center;   
      
}


#cat .pro-container{
    display:flex;
    justify-content: space-between;
    padding-top: 10px;
    flex-wrap: wrap;
}
#cat .pro{
    width: 30%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #000000;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(1, 0, 0, 0.06);
    margin: 15px 0;
    transition: 0.2 ease;
    position: relative;
    
    
}

#cat .pro img{

    width: 100%;
    border-radius: 20px;
}


#cat .pro:hover{

    box-shadow: 20px 20px 30px rgba(143, 1, 1, 0.6);

}

#cat .pro .des{
    text-align: start;
    padding: 10px 0;
}

#cat .pro .des span{
    color:#7a1600;
    font-size: 17px;
}

#cat .pro .des i{
    font-size: 17px;
    color: #ebca11;

}

#cat .pro .cart{
    width: 40px;
    height: 40px;
     line-height: 40px;
     border-radius: 50px;
     background-color: #dae4e0;
     color: #5f0303;
     position: absolute;
     bottom: 20px;
     right: 10px;
    
    
    
}

*/
 /* Fer page */


 
 #page-header-fer{

    height: 30vh;
    width: 100%;
    padding: 200px 80px;
    box-sizing: border-box;
    background-color: transparent;
    background-image: url("pictures/product/catp2.png"), url("pictures/product/catp3.png");
    background-size: 50% 100%, 50% 100%; /* Each image takes half the width */
    background-position: left, right; /* Position one image on the left and one on the right */
    background-repeat: no-repeat;

 }

 #page-header-veg{

    height: 30vh;
    width: 100%;
    padding: 200px 80px;
    box-sizing: border-box;
    background-color: transparent;
    background-image: url("pictures/product/catp2.png"), url("pictures/product/catp3.png");
    background-size: 50% 100%, 50% 100%; /* Each image takes half the width */
    background-position: left, right; /* Position one image on the left and one on the right */
    background-repeat: no-repeat;

 }

 #page-header-vegWin{

    height: 30vh;
    width: 100%;
    padding: 150px 80px;
    box-sizing: border-box;
    background-color: transparent;
    background-image: url("pictures/product/veg/winter.png"), url("pictures/product/veg/winter2.png");
    background-size: 50% 100%, 50% 100%; /* Each image takes half the width */
    background-position: left, right; /* Position one image on the left and one on the right */
    background-repeat: no-repeat;

 }
 #page-header-dried{

    height: 30vh;
    width: 100%;
    padding: 200px 80px;
    box-sizing: border-box;
    background-color: transparent;
    background-image: url("pictures/product/catp2.png"), url("pictures/product/catp3.png");
    background-size: 50% 100%, 50% 100%; /* Each image takes half the width */
    background-position: left, right; /* Position one image on the left and one on the right */
    background-repeat: no-repeat;

 }


/*#######################################vegcat#################################*/


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

        body {
            font-family: 'Arial', sans-serif;
            background-color: #f8f8f8;
            line-height: 1.6;
        }

        .vegcat-section {
            padding: 80px 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        #vegcat {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .vegcat-text-content {
            padding-right: 40px;
        }

        .vegcat-text-content h1 {
            font-size: 3.5rem;
            font-weight: 300;
            color: #333;
            margin-bottom: 40px;
            letter-spacing: -2px;
        }

        .vegcat-text-content p {
            font-size: 1.2rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .vegcat-pro-container {
            display: grid;
            grid-template-rows: 1fr 1fr;
            gap: 30px;
            height: 600px;
        }

        .vegcat-pro {
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .vegcat-pro:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(255, 0, 0, 0.47);
        }

        .vegcat-pro video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .vegcat-des {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            text-align: center;
            z-index: 10;
            background: rgba(0,0,0,0.4);
            padding: 20px 40px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        

        .vegcat-des span {
            font-size: 1.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            display: block;
            color: #ffffff;
            line-height: 50px;
            font-style: normal;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 
                         0 0 20px rgba(255, 255, 255, 0.6), 
                         0 0 30px rgba(255, 255, 255, 0.4),
                         0 2px 10px rgba(0,0,0,0.5);
        }

        .vegcat-des h5 {
            font-size: 1rem;
            font-weight: 400;
            opacity: 0.9;
            line-height: 1.5;
        }

        .vegcat-video-container {
            display: grid;
            grid-template-columns: 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 30px;
            height: 600px;
        }

        .vegcat-large-video {
            grid-column: 2;
            grid-row: 1 / 3;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .vegcat-large-video video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

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

            .vegcat-text-content {
                padding-right: 0;
                text-align: center;
            }

            .vegcat-text-content h1 {
                font-size: 2.5rem;
            }

            .vegcat-section {
                padding: 40px 20px;
            }

            .vegcat-pro video {
                height: 200px;
            }

            .vegcat-large-video video {
                height: 300px;
            }
        }




        #hero2 {
    height: 25vh;
    width: 100%;
    padding: 200px 80px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

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

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding-right: 40px;
}

.hero-button-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

 

 

 

@keyframes pulse {
    0% {
        box-shadow: 0 15px 35px rgba(210, 7, 7, 0.4);
    }
    50% {
        box-shadow: 0 15px 35px rgba(210, 7, 7, 0.7), 0 0 30px rgba(210, 7, 7, 0.3);
    }
    100% {
        box-shadow: 0 15px 35px rgba(210, 7, 7, 0.4);
    }
}

mark1 {
    font-family: "Ribeye";
    color: #ffffff;
    font-size: 35px;
    font-weight: 700;
    text-shadow: 0 0 10px #d20707, 0 0 30px #d20707, 0 0 30px #d20707;
    display: block;
    line-height: 1.3;
    margin-bottom: 20px;
}

mark3 {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.7;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive design */
@media (max-width: 800px) {
    #hero {
        padding: 100px 10px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    mark1 {
        font-size: 28px;
    }
    
    mark3 {
        font-size: 16px;
    }
    
    .flashy-button {
        font-size: 18px;
        padding: 18px 35px;
    }
}

 /*fer*/

 #page-header-fer f,
 #page-header-fer f2 {
     display: block;  
 }
 
 f {
     color: #efefef;
     font-family: "Ribeye", serif;
     font-weight: 700;
     font-size: 50px;
     line-height: 50px;
     font-style: normal;
    text-shadow: 0 0 5px #fff, 0 0 10px #c6032a, 0 0 15px #7e001d;

 }
 
 fer {
     color: #fefbfb;
     font-family: "Ribeye", serif;
     font-weight: 700;
     font-size: 20px;
     line-height: 50px;
     font-style: normal;
         text-shadow: 0 0 5px #fff, 0 0 10px #c6032a, 0 0 15px #7e001d;

 }

 
 
 #pagination{
    text-align: center;
 }

 #pagination a{
    
    text-decoration: none;
    background-color: #7a1600;
    padding: 15px 20px;
    border-radius: 10px;
    color: #fefefe;
    font-weight: 600;

 }



/*fer product details */

#prodet .singimg {
    width: 40%; /* This controls the container size */
    margin-right: 40px;
}

#prodet .singimg img {
    width: 80%;
    max-height: 500px; /* Adjust the height to your preference */
    object-fit: cover; /* Ensures the image fits nicely */
}

#prodet {

    display: flex;
    margin-top: 20px ;
}

#prodet .singDet{

    width: 50%;
    padding-top: 30px ;

}

#prodet .singDet h1{

 padding: 40px 0 20px 0;

}

#prodet .singDet select{

    display: block;
    padding: 5px 10px;
    margin-bottom: 10px;
}

#prodet .singDet select{

    display: block;
    padding: 5px 10px;
    margin-bottom: 10px;
}

#prodet .singDet input {

    width: 50px;
    height: 47px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
}

#prodet .singDet button {
    width: 130px; /* Adjust the button's width */
    height: 47px; /* Match the height of the input for alignment */
    background-color: #790303; /* Button background color */
    color: white; /* Button text color */
    border: none; /* Remove borders */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Font size */
    font-weight: bold; /* Make the text bold */
    cursor: pointer; /* Change cursor to pointer on hover */
    margin-left: 10px; /* Space between input and button */
}


/* Product Image Consistency */
.pro img,
.product-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Maintains aspect ratio, crops if needed */
    object-position: center; /* Centers the image */
    border-radius: 8px; /* Optional: rounded corners */
}

/* Ensure consistent card heights */
.pro {
    height: auto;
    min-height: 350px; /* Minimum height for consistency */
    display: flex;
    flex-direction: column;
}

.pro .des {
    flex-grow: 1; /* Takes up remaining space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* Optional hover effect for the button */
#prodet .singDet button:hover {
    background-color: #b30000; /* Darker shade on hover */
}


/* Add this CSS to your style.css for the new small container */

.pro-container-small {
    display: flex;
    justify-content: flex-start; /* Centers the 2 products */
    gap: 20px; /* Space between products */
    margin-top: 30px; /* Space from the row above */
    flex-wrap: wrap; /* Allows wrapping on mobile */
}

/* Responsive behavior for small container */
@media (max-width: 768px) {
    .pro-container-small {
        flex-direction: column;
        align-items: center;
    }
    
    .pro-container-small .pro {
        width: 100%;
        max-width: 280px;
    }
}

.pro img.zoom-in {
    transform: scale(1); /* 1.2 = 20% larger, 1.5 = 50% larger */
    object-fit:fill; /* Maintains aspect ratio */
}
 


 /*veg*/
 /* Veg Section */
#page-header-veg .f,
#page-header-veg .f2 {
    display: block; /* Ensures each element starts on a new line */
}

.f {
    color: #efefef;
    font-family: "Ribeye", serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 50px;
    font-style: normal;
}

.f2 {
    color: #a10101;
    font-family: "Ribeye", serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 50px;
    font-style: normal;
}
 /*dried*/
 #page-header-fer f,
 #page-header-fer f2 {
     display: block;  
 }
 
 f {
     color: #efefef;
     font-family: "Ribeye", serif;
     font-weight: 700;
     font-size: 50px;
     line-height: 50px;
     font-style: normal;
 }
 
 f2 {
     color: #a10101;
     font-family: "Ribeye", serif;
     font-weight: 700;
     font-size: 20px;
     line-height: 50px;
     font-style: normal;
 }


 #page-header.contact-header{

     background-image: url("pictures/contact.png");
     padding: 40px 40px;
     text-align: center;
     
 }

 f3{
   
    color: #f0e9e9;
    font-family: "Ribeye", serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 50px;
    font-style: normal;

 }


 #contact-details .details{
    width: 40%;
 }

 
 #contact-details .details li{
    
    list-style: none;
    display:flex;
    padding: 10px 0;

 }

 #contact-details .details li i{
    
    font-size: 14px;
    padding-right: 22px;
    
 }

 #contact-details .details li p{
    
    margin: 0;
    font-size: 14px;
    
 }


 #form-details {

    
    display: flex;
    justify-content: space-between;
    margin: 40px;
    padding: 80px;
    border: 1px solid #4a0000;
 }
  
 #form-details form{

    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: center;
 }


 #form-details input, #form-details textarea{
    width: 100%;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 20px;
    border: 1px solid #dae4e0;
 }
  

 #form-details button{
    width: 130px; /* Adjust the button's width */
    height: 47px; /* Match the height of the input for alignment */
    background-color: #790303; /* Button background color */
    color: white; /* Button text color */
    border: none; /* Remove borders */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Font size */
    font-weight: bold; /* Make the text bold */
    cursor: pointer; /* Change cursor to pointer on hover */
    margin-left: 10px; /* Space between input and button */
 }
 

 
 #form-details button:hover {
    background-color: #b30000; /* Darker shade on hover */
}


/* screen adjustments */

@media (max-width:799px) {

    #navbar {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-self: center;
    }
    
}


 

/* new  adjustment */







/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!newly added cart option */



/* Cart Icon Badge */
        .cart-icon {
            position: relative;
            font-size: 20px;
            cursor: pointer;
        }

        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #098102;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }

        
        
        .cart:hover {
            background-color: #088178;
            color: white;
        }


/*XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/
/*########################## Cart pop out ####################################*/
.cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            z-index: 1000;
        }

        .cart-popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            width: 500px;
            max-width: 90vw;
            max-height: 80vh;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            overflow-y: auto;
        }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #eee;
        }

        .cart-header h2 {
            color: #333;
            margin: 0;
        }

        .close-cart {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #999;
        }

        .close-cart:hover {
            color: #333;
        }

        .cart-items {
            margin-bottom: 20px;
        }

        .cart-item {
            display: flex;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

        .cart-item img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
            margin-right: 15px;
        }

        .cart-item-details {
            flex: 1;
        }

        .cart-item-name {
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
        }

        .cart-item-price {
            color: #088178;
            font-weight: 600;
        }

        .cart-item-quantity {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 5px;
        }

        .quantity-btn {
            background: #088178;
            color: white;
            border: none;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 14px;
        }

        .quantity-btn:hover {
            background: #066d63;
        }

        .remove-item {
            background: #ff4757;
            color: white;
            border: none;
            padding: 5px 10px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 12px;
        }

        .remove-item:hover {
            background: #ff3742;
        }

        .cart-total {
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 2px solid #eee;
        }

        .cart-total h3 {
            color: #333;
            margin-bottom: 15px;
        }

        .checkout-btn {
            background: #088178;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .checkout-btn:hover {
            background: #066d63;
        }

        .empty-cart {
            text-align: center;
            color: #666;
            padding: 40px 0;
        }
 

/* ---------------------------------------New -------------------*/
 /* NEW: Profile Icon and User Management Styles */
/*====================================================*/
 /* =================== ADDED: Profile Dropdown Styles =================== */
.profile-container {
    position: relative;
    display: inline-block;
}

.profile-initial {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 45px;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 200px;
    z-index: 1000;
    display: none;
    overflow: hidden;
    animation: dropdownFadeIn 0.3s ease-out;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
    font-size: 14px;
}

.dropdown-item:hover {
    background: #f8f9fa;
}

.dropdown-item:last-child:hover {
    background: #fff5f5;
}

.dropdown-divider {
    height: 1px;
    background: #eee;
    margin: 5px 0;
}

/* Animation for dropdown */
@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Profile icon hover effect */
.profile-initial div {
    transition: all 0.3s ease;
}

.profile-initial:hover div {
    transform: scale(1.1);
}

/* Mobile responsive dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        right: -20px;
        min-width: 180px;
    }
}
/* ========================================================================= */
/* video logo */

.logo {
  width: 130px;  /* Adjust as needed */
  height: 130px;
}

/* ========================================================================= */

/* shipping cart*/

    .shipping-container {
            max-width: 800px;
            margin: 50px auto;
            padding: 40px;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .shipping-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .shipping-header h1 {
            color: #088178;
            font-size: 2.5em;
            margin-bottom: 10px;
        }
        
        .shipping-header p {
            color: #666;
            font-size: 1.1em;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
            font-size: 1.1em;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1em;
            transition: border-color 0.3s ease;
            box-sizing: border-box;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #088178;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
        }
        
        .form-row .form-group {
            flex: 1;
        }
        
        .required {
            color: #e74c3c;
        }
        
        .order-summary {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        
        .order-summary h3 {
            color: #088178;
            margin-bottom: 15px;
            font-size: 1.3em;
        }
        
        .order-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.2em;
            font-weight: 600;
            color: #333;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 2px solid #ddd;
        }
        
        .proceed-btn {
            background: linear-gradient(135deg, #088178, #0a9d93);
            color: white;
            padding: 18px 40px;
            border: none;
            border-radius: 8px;
            font-size: 1.2em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .proceed-btn:hover {
            background: linear-gradient(135deg, #0a9d93, #088178);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(8, 129, 120, 0.3);
        }
        
        .back-link {
            display: inline-flex;
            align-items: center;
            color: #088178;
            text-decoration: none;
            margin-bottom: 20px;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .back-link:hover {
            color: #0a9d93;
        }
        
        .back-link i {
            margin-right: 8px;
        }
        
        @media (max-width: 768px) {
            .shipping-container {
                margin: 20px;
                padding: 25px;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .shipping-header h1 {
                font-size: 2em;
            }
        }



      /*##############################AVATAR################*/
       #avatar-chatbot {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 500px;
            height: 550px;
            z-index: 1000;
            pointer-events: none;
            background: transparent;
        }
        
        #avatar-chatbot iframe {
            width: 100%;
            height: 100%;
            border: none;
            background: transparent !important;
            pointer-events: all;
        }


        #help-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #2b7a78;
  color: white;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  z-index: 9999;
}

#close-chatbot {
  position: absolute;
  top: 5px;
  right: 8px;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

        /* Responsive adjustments */
        @media (max-width: 768px) {
            #avatar-chatbot {
                width: 350px;
                height: 400px;
            }
        }
        
        @media (max-width: 480px) {
            #avatar-chatbot {
                width: 300px;
                height: 350px;
            }
        }


/*############################### dried ###############################*/

  .cato {
            text-align: center;
            padding: 40px 20px;
        }
        
        .place h3 {
            font-size: 24px;
            color: #333;
            margin-bottom: 30px;
            font-weight: normal;
        }
        
        .category-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .category-btn {
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 100px;
        }
        
        .pickle {
            background-color: #b8a9ff;
            color: #4a3c8a;
        }
        
        .spices {
            background-color: #ff9999;
            color: #8a3c3c;
        }
        
        .dried {
            background-color: #9c6a19;
            color: #e3ba87;
        }
        
        .category-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(167, 0, 0, 0.2);
        }
        
        .category-btn:active {
            transform: translateY(0);
        }
        
        .selected {
            box-shadow: 0 0 0 5px rgba(60, 138, 60, 0.562);
        }


  /* hover of veg and non veg*/

    .sticky-filter {
    position: fixed;
    left: 20px;
    top: 30%;
    transform: translateY(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.107);
    border-radius: 25px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.filter-toggle {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: #666;
    min-width: 80px;
    justify-content: flex-start;
}

.filter-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.filter-btn.active {
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.filter-btn.all.active {
    background:   #5b52d58d;
    color: white;
}

.filter-btn.veg.active {
    background:  rgba(69, 160, 73, 0.473);
    color: white;
    backdrop-filter: blur(10px);
}

.filter-btn.non-veg.active {
    background: rgba(218, 25, 11, 0.505);
    color: white;
    backdrop-filter: blur(10px);
}

.filter-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid;
}

.all-dot {
    border-color: #6c5ce7;
    background-color: #6c5ce7;
}

.veg-dot {
    border-color: #4CAF50;
    background-color: #4caf4f;
}

.non-veg-dot {
    border-color: #f44336;
    background-color: #f44336;
}

.filter-btn:not(.active) .filter-dot {
    background-color: transparent;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .sticky-filter {
        left: 10px;
        top: 60%;
    }
    
    .filter-btn {
        padding: 10px 12px;
        font-size: 11px;
        min-width: 70px;
    }
    
    .filter-dot {
        width: 10px;
        height: 10px;
    }
}


/* Add this CSS to your style.css file to fix the image fitting issue */

#dried {
    text-align: center;
    padding: 40px 20px;
    width: 100%;
    margin: 0 auto;
}

#dried h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

#dried p {
    color: #666;
    margin-bottom: 40px;
    text-align: center;
    font-size: 16px;
}

/* MAIN GRID CONTAINER - CENTERED */
.prodried {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 25px !important;
    padding: 20px 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

/* Individual product styling */
#dried .prod {
    width: 100%;
    max-width: 320px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    background: white;
    justify-self: center;
}

/* Rest of the product styling remains the same */
#dried .prod img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    object-position: center;
    background-color: #fafafa;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
}

#dried .prod:hover {
    box-shadow: 0 8px 25px rgba(143, 1, 1, 0.25);
    transform: translateY(-3px);
}

#dried .prod .des {
    text-align: left;
    padding: 10px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

#dried .prod .des span {
    color: #7a1600;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

#dried .prod .des h5 {
    color: #333;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

#dried .prod .des .star {
    margin: 8px 0;
}

#dried .prod .des .star i {
    font-size: 13px;
    color: #ffd700;
    margin-right: 1px;
}

#dried .prod .des price {
    font-size: 18px;
    color: #430202;
    font-weight: 700;
    margin-top: auto;
}

#dried .prod .cart {
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    background-color: #e8f4f8;
    color: #088178;
    position: absolute;
    bottom: 15px;
    right: 15px;
    text-align: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

#dried .prod .cart:hover {
    background-color: #088178;
    color: white;
    transform: scale(1.05);
}

/* Responsive design */
@media (min-width: 1200px) {
    .prodried {
        grid-template-columns: repeat(4, 1fr) !important;
        max-width: 1300px;
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .prodried {
        grid-template-columns: repeat(3, 1fr) !important;
        max-width: 1000px;
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    .prodried {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 700px;
        gap: 20px !important;
    }
    
    #dried {
        padding: 40px 15px;
    }
}

@media (max-width: 599px) {
    .prodried {
        grid-template-columns: 1fr !important;
        max-width: 350px;
        gap: 15px !important;
    }
    
    #dried {
        padding: 30px 10px;
    }
}

/*############################### 

/* Add this CSS to your style.css file for the proding section */

/* Product detail section for dried/packet products */
 

#proding .singimg {
    width: 40%; /* This controls the container size */
    margin-right: 40px;
}

#proding .singimg img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain; /* This ensures the full image is visible */
    border-radius: 10px;
    transition: transform 0.3s ease;
}

#proding {

    display: flex;
    margin-top: 20px ;
}

#proding .singDet{

    width: 50%;
    padding-top: 30px ;

}

#proding .singDet h1{

 padding: 40px 0 20px 0;

}

#proding .singDet select{

    display: block;
    padding: 5px 10px;
    margin-bottom: 10px;
}

#proding .singDet select{

    display: block;
    padding: 5px 10px;
    margin-bottom: 10px;
}

#proding .singDet input {

    width: 50px;
    height: 47px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
}

#proding .singDet button {
    width: 130px; /* Adjust the button's width */
    height: 47px; /* Match the height of the input for alignment */
    background-color: #790303; /* Button background color */
    color: white; /* Button text color */
    border: none; /* Remove borders */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Font size */
    font-weight: bold; /* Make the text bold */
    cursor: pointer; /* Change cursor to pointer on hover */
    margin-left: 10px; /* Space between input and button */
}


/* Product Image Consistency */
.pro img,
.product-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Maintains aspect ratio, crops if needed */
    object-position: center; /* Centers the image */
    border-radius: 8px; /* Optional: rounded corners */
}

/* Ensure consistent card heights */
.pro {
    height: auto;
    min-height: 350px; /* Minimum height for consistency */
    display: flex;
    flex-direction: column;
}

.pro .des {
    flex-grow: 1; /* Takes up remaining space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* Optional hover effect for the button */
#proding .singDet button:hover {
    background-color: #b30000; /* Darker shade on hover */
}

/*###########################################################################*/
/*####################  product list serving and usability ##################*/

/* Product Features Styling */
   .product-features {
            margin: 30px 0;
            background: #f8f9fa;
            border-radius: 12px;
            padding: 25px;
            border: 1px solid #e9ecef;
            max-width: 800px;
        }

        .feature-section {
            margin-bottom: 25px;
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .feature-section:last-child {
            margin-bottom: 0;
        }

        .feature-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
            display: flex !important;
            align-items: center !important;
            justify-content: flex-start !important;
            gap: 12px;
            border-bottom: 2px solid #088178;
            padding-bottom: 8px;
            text-align: left !important;
            flex-direction: row !important; /* Ensure horizontal layout */
        }

        .feature-icon {
            color: #088178 !important;
            font-size: 20px !important;
            flex-shrink: 0 !important;
            margin-right: 12px !important;
            margin-left: 0 !important;
            float: none !important;
        }

        .feature-text {
            flex-grow: 1;
            text-align: left !important;
        }

        .servings-calculator {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 18px;
            border-left: 4px solid #088178;
        }

        .serving-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            padding: 8px 0;
        }

        .serving-info:last-of-type {
            margin-bottom: 8px;
        }

        .serving-label {
            font-weight: 500;
            color: #555;
            font-size: 15px;
        }

        .serving-value {
            font-weight: 600;
            color: #088178;
            font-size: 16px;
        }

        .serving-note {
            font-size: 12px;
            color: #666;
            font-style: italic;
            margin-top: 10px;
            text-align: center;
        }

        .no-alternatives {
            text-align: center;
            color: #6c757d;
            font-style: italic;
            padding: 25px;
            background: #f8f9fa;
            border-radius: 8px;
            border: 2px dashed #dee2e6;
        }

        .no-alternatives i {
            font-size: 32px;
            margin-bottom: 10px;
            display: block;
            color: #ccc;
        }

        /* Meal Planning Section */
        .meal-planning {
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #dee2e6;
        }

        #daysSelect {
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
            width: 200px;
            background: white;
        }

        #mealPlanResult {
            background: #e8f5e8;
            padding: 12px;
            border-radius: 6px;
            border-left: 4px solid #28a745;
            display: none;
        }

        .freshness-section {
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #dee2e6;
        }

        .freshness-bar-container {
            background: #e9ecef;
            border-radius: 10px;
            height: 12px;
            position: relative;
            overflow: hidden;
        }

        .freshness-bar {
            height: 100%;
            background: linear-gradient(90deg, #28a745, #20c997);
            border-radius: 10px;
            width: 75%;
            transition: all 0.3s ease;
        }
/*####################END######################################################*/


/*##########################################################################*/
/*#########################ABOUT SECTION ##################################*/
/*##########################################################################*/

     /* Main content */
        .main-content {
            margin-top: 120px;
            padding: 60px 0;
        }

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

        /* Hero About Section */
        .about-hero {
            text-align: center;
            margin-bottom: 30px;
            padding: 60px 20px;
            background: linear-gradient(135deg, #8edebf71 0%, #82cb2f5d 100%);
            border-radius: 20px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
            opacity: 0.3;
        }

        .about-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .brand-highlight {
            color: #4CAF50;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .about-hero p {
            font-size: 1.3rem;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            opacity: 0.95;
        }

        /* Story Section */
        .story-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
            padding: 40px;
            background: rgba(0, 158, 8, 0.452);
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

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

        .story-content p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 20px;
        }

        .story-image {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

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

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

        /* Values Section */
        .values-section {
            text-align: center;
            margin-bottom: 80px;
        }

        .values-section h2 {
            font-size: 2.8rem;
            color: #333;
            margin-bottom: 60px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

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

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #4CAF50, #81C784);
        }

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

        .value-icon {
            font-size: 3rem;
            color: #4CAF50;
            margin-bottom: 20px;
        }

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

        .value-card p {
            color: #666;
            font-size: 1rem;
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, #4CAF50 0%, #81C784 100%);
            color: white;
            padding: 60px 20px;
            border-radius: 20px;
            margin-bottom: 80px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 3rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .stat-item p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Team Section */
        .team-section {
            text-align: center;
            margin-bottom: 80px;
        }

        .team-section h2 {
            font-size: 2.8rem;
            color: #333;
            margin-bottom: 60px;
        }

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

        .team-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

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

        .team-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #4CAF50, #81C784);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
        }

        .team-card h4 {
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 5px;
        }

        .team-card .role {
            color: #4CAF50;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .team-card p {
            color: #666;
            font-size: 0.9rem;
        }

    /*########################END##################################################*/