/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(90deg, rgba(215,135,255,1) 0%, rgba(241,221,255,1) 50%, rgba(255,255,255,1) 100%);
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: rgb(218, 9, 241);
    background-image: url('navbar-bg.jpg'); /* Add your navbar background image here */
    background-size: cover;
    background-position: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin: 0 60px;
}

.logo {
    font-size: 32px;
    font-family: 'Arvo', serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-dark {
    color: #000;
}

.logo-light {
    color: #fff;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    color: #000;
    font-weight: 600;
    font-size: 16px;
    padding: 5px 0;
    position: relative;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #fff;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    display: flex;
    padding: 80px 5%;
    align-items: center;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding-right: 20px;
}

.hero-title {
    font-size: 48px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-button {
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: rgb(221, 0, 255);
    transform: translateY(-5px);
}

.cta-button a {
    font-weight: 600;
    color: #000;
    letter-spacing: 1px;
}

.cta-button:hover a {
    color: #fff;
}

.hero-images {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.main-image {
    width: 80%;
    max-width: 400px;
    object-fit: contain;
    border-top-left-radius: 70px;
    border-bottom-right-radius: 70px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.secondary-image {
    position: absolute;
    width: 40%;
    max-width: 200px;
    left: 0;
    bottom: 10%;
    border-radius: 50% 50% 0 0;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.products-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(241, 221, 255, 0.8));
    border-radius: 40px;
    margin: 40px 5%;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(218, 9, 241, 0.1) 0%, rgba(241, 221, 255, 0) 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 0;
}

.products-section::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 0, 102, 0.1) 0%, rgba(241, 221, 255, 0) 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: rgb(218, 9, 241);
    position: relative;
    padding-bottom: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* .section-title::before {
    content: '★';
    position: absolute;
    font-size: 24px;
    color: rgb(243, 134, 255);
    left: 50%;
    transform: translateX(-50px);
    top: -20px;
} */

.section-title::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, rgb(218, 9, 241), rgb(255, 0, 102));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgb(70, 0, 78);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    font-style: italic;
}

.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.product-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 400px; /* Increased from 360px */
    height: auto; /* Ensure height adjusts dynamically */
    margin: 0 auto;
}

.product-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    top: 0;
    left: 0;
    z-index: -1;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    height: 320px; /* Increased from 280px */
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(245, 245, 245, 0.8) 100%);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* Decorative elements in the product container */
.product-image-container::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    top: -20px;
    right: -20px;
    z-index: 1;
}

.product-image-container::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    top: -25%;
    left: -25%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover .product-image-container::after {
    opacity: 1;
}

.product-image-container img {
    max-width: 85%;
    max-height: 260px; /* Increased from 220px */
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    z-index: 2;
}

.product-card:hover .product-image-container img {
    transform: scale(1.15) translateY(-10px);
}

.product-info {
    padding: 25px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.product-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgb(255, 255, 255), transparent);
    border-radius: 50%;
}

.product-info h4 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.product-info .product-flavor {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-info .product-description {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    transition: color 0.3s ease;
}

.product-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.benefit-tag {
    background-color: rgba(218, 9, 241, 0.1);
    color: rgb(218, 9, 241);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

.product-card:hover .benefit-tag {
    transform: scale(1.05);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* Custom Card Styles for Benefit Tags */
.strawberry-card .benefit-tag {
    background-color: rgba(255, 0, 102, 0.1);
    color: #FF0066;
}

.orange-card .benefit-tag {
    background-color: rgba(255, 102, 0, 0.1);
    color: #FF6600;
}

.jackfruit-card .benefit-tag {
    background-color: rgba(255, 204, 0, 0.1);
    color: #D4A900;
}

.watermelon-card .benefit-tag {
    background-color: rgba(255, 100, 89, 0.1);
    color: #ff6459;
}

.longan-card .benefit-tag {
    background-color: rgba(215, 166, 105, 0.1);
    color: #d7a669;
}

.mango-card .benefit-tag {
    background-color: rgba(243, 156, 18, 0.1);
    color: #F39C12;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgb(218, 9, 241);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(218, 9, 241, 0.3);
    z-index: 3;
    transform: rotate(5deg);
}

.buy-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, rgb(218, 9, 241), rgb(255, 0, 102));
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    /* box-shadow: 0 5px 15px rgba(218, 9, 241, 0.3); */
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.buy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.buy-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(218, 9, 241, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.buy-button:hover::before {
    left: 100%;
}

/* Custom Card Styles with Enhanced Effects */
.strawberry-card .product-image-container {
    background: radial-gradient(circle, rgba(255, 240, 245, 0.9) 0%, rgba(255, 228, 240, 0.8) 100%);
}

.strawberry-card .product-info h4 {
    color: #FF0066;
}

.strawberry-card .product-info p {
    color: #D10053;
}

.strawberry-card .buy-button {
    background: linear-gradient(135deg, #FF0066, #D10053);
    box-shadow: 0 5px 15px rgba(255, 0, 102, 0.3);
}

.strawberry-card .product-badge {
    background: #FF0066;
    box-shadow: 0 5px 15px rgba(255, 0, 102, 0.3);
}

.orange-card .product-image-container {
    background: radial-gradient(circle, rgba(255, 245, 225, 0.9) 0%, rgba(255, 238, 213, 0.8) 100%);
}

.orange-card .product-info h4 {
    color: #FF6600;
}

.orange-card .product-info p {
    color: #D95500;
}

.orange-card .buy-button {
    background: linear-gradient(135deg, #FF6600, #D95500);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.orange-card .product-badge {
    background: #FF6600;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.jackfruit-card .product-image-container {
    background: radial-gradient(circle, rgba(255, 253, 230, 0.9) 0%, rgba(255, 248, 200, 0.8) 100%);
}

.jackfruit-card .product-info h4 {
    color: #FFCC00;
}

.jackfruit-card .product-info p {
    color: #D4A900;
}

.jackfruit-card .buy-button {
    background: linear-gradient(135deg, #FFCC00, #D4A900);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

.jackfruit-card .product-badge {
    background: #FFCC00;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
    color: #806600;
}

.watermelon-card .product-image-container {
    background: radial-gradient(circle, rgba(255, 240, 240, 0.9) 0%, rgba(255, 230, 230, 0.8) 100%);
}

.watermelon-card .product-info h4 {
    color: #ff6459;
}

.watermelon-card .product-info p {
    color: #c9564e;
}

.watermelon-card .buy-button {
    background: linear-gradient(135deg, #ff6459, #c9564e);
    box-shadow: 0 5px 15px rgba(255, 100, 89, 0.3);
}

.watermelon-card .product-badge {
    background: #ff6459;
    box-shadow: 0 5px 15px rgba(255, 100, 89, 0.3);
}

.longan-card .product-image-container {
    background: radial-gradient(circle, rgba(255, 250, 240, 0.9) 0%, rgba(255, 245, 230, 0.8) 100%);
}

.longan-card .product-info h4 {
    color: #d7a669;
}

.longan-card .product-info p {
    color: #b38a50;
}

.longan-card .buy-button {
    background: linear-gradient(135deg, #ffcb8b, #d7a669);
    box-shadow: 0 5px 15px rgba(215, 166, 105, 0.3);
}

.longan-card .product-badge {
    background: #d7a669;
    box-shadow: 0 5px 15px rgba(215, 166, 105, 0.3);
}

.mango-card .product-image-container {
    background: radial-gradient(circle, rgba(255, 245, 225, 0.9) 0%, rgba(253, 235, 200, 0.8) 100%);
}

.mango-card .product-info h4 {
    color: #F39C12;
}

.mango-card .product-info p {
    color: #D68910;
}

.mango-card .buy-button {
    background: linear-gradient(135deg, #F39C12, #D68910);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.mango-card .product-badge {
    background: #F39C12;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.product-card:nth-child(odd) {
    animation: float 6s ease-in-out infinite;
}

.product-card:nth-child(even) {
    animation: float 7s ease-in-out infinite;
    animation-delay: 1s;
}

/* Product Card Hover Effects */
.product-card:hover .product-info h4 {
    transform: scale(1.05);
}

/* Blog Section */
.blog-section {
    padding: 80px 5%;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    margin: 20px 5%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.blog-card {
    width: 350px;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: rgb(218, 9, 241);
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: rgb(255, 0, 102);
}

.blog-content p {
    color: #555;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: rgb(218, 9, 241);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: rgb(255, 0, 102);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #da09f1, #9c27b0);
    color: #fff;
    padding: 60px 5% 20px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    box-shadow: 0 -5px 20px rgba(218, 9, 241, 0.2);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 32px;
    font-family: 'Arvo', serif;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-dark {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-light {
    color: #ffc2ff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-section {
    margin-bottom: 30px;
    min-width: 200px;
    flex-grow: 1;
}

.footer-links h3, .footer-contact h3 {
    margin-bottom: 25px;
    font-size: 20px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 600;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #ffc2ff;
    bottom: 0;
    left: 0;
    border-radius: 3px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
    transition: transform 0.3s;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a::before {
    content: '→';
    margin-right: 8px;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-links a:hover::before {
    opacity: 1;
    margin-right: 12px;
}

.footer-contact p {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.footer-contact i {
    margin-right: 15px;
    font-size: 20px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 20px;
}

.social-icons {
    display: flex;
    margin-top: 25px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s;
    color: #fff;
    text-decoration: none;
}

.social-icons a:hover {
    background: #fff;
    color: #da09f1;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icons i {
    font-size: 22px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.8;
}

.footer-logo {
    animation: float 5s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-section {
        margin-bottom: 30px;
        width: 100%;
    }
    
    footer {
        padding: 40px 5% 20px;
    }

}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #fff;
    color: rgb(218, 9, 241);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

.banner-container {
    max-width: 89%;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.banner-slider {
    display: flex;
    transition: transform 0.8s ease-in-out;
    height: 29rem; 
}

.banner-slide {
    min-width: 100%;
    position: relative;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    /* background: linear-gradient(to top, rgba(94, 92, 92, 0.8) 0%, rgba(39, 39, 39, 0) 100%); */
    color: white;
}

.banner-content h2 {
    font-size: 24px; /* Adjusted for smaller banner */
}

.banner-content p {
    font-size: 14px; /* Adjusted for smaller banner */
}

.banner-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: rgb(218, 9, 241);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    background-color: rgb(160, 0, 178);
    transform: scale(1.05);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    color: #333;
    font-size: 20px; /* Adjusted for smaller banner */
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: white;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px; /* Adjusted for smaller banner */
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: white;
    transform: scale(1.2);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }
    
    .product-card {
        width: 280px;
    }
    
    .blog-card {
        width: 320px;
    }

    .product-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .product-image-container {
        height: 250px;
    }
    
    .product-image-container img {
        max-height: 190px;
    }

}

@media screen and (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgb(218, 9, 241);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-out;
    }
    
    .menu-toggle:checked ~ .nav-links {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hero-section {
        flex-direction: column;
        padding: 60px 5%;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 50px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-images {
        width: 100%;
    }
    
    .main-image {
        max-width: 300px;
    }
    
    .secondary-image {
        max-width: 150px;
        left: 5%;
    }
    
    .footer-content > div {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .blog-card {
        width: 100%;
    }

    .banner-container {
        margin: 20px auto;
    }

    .banner-slider {
        height: 300px;
    }

    .banner-content h2 {
        font-size: 24px;
    }

    .banner-content p {
        font-size: 14px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

}

.section-title {
    font-size: 36px;
    margin-bottom: 40px;
}

.product-container {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

@media screen and (max-width: 480px) {

    products-section {
        padding: 50px 5%;
        margin: 20px 3%;
        border-radius: 30px;
    }
    
    .section-title {
        font-size: 30px;
        margin-bottom: 30px;
    }
    
    .product-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-image-container {
        height: 220px;
    }
    
    .product-info h4 {
        font-size: 20px;
    }

    header {
        padding: 15px 4%;
        margin: 0 20px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .cta-button {
        padding: 10px 25px;
    }
    
    .main-image {
        max-width: 250px;
    }
    
    .secondary-image {
        max-width: 120px;
    }
    
    .product-container {
        gap: 20px;
    }
    
    .product-card {
        width: 100%;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .blog-content h3 {
        font-size: 18px;
    }

    .banner-slider {
        height: 250px;
    }

    .banner-content {
        padding: 20px;
    }

    .banner-content h2 {
        font-size: 20px;
    }

    .banner-content p {
        font-size: 12px;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}