


                        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /* overflow-y: hidden; */
            /* outline: 1px solid red;  */
        }


      .top-content {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: 100%;
}

.top-content .top-header {
    background: #529892;
    color: white;
    padding: 10px 0;
    line-height: 150%;
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    font-weight: 200;
}

.top-content .top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-content .shipping-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-content .shipping-info i {
    font-size: 18px;
}

.top-content .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-content .phone-number {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-content .language-currency {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-content .dropdown-toggle {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-content .dropdown-toggle:hover {
    opacity: 0.8;
}

.top-content .main-nav {
    background: white;
    /* padding: 15px 0; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-content .logo {
    font-size: 28px;
    font-weight: bold;
    color: #5fb3b3;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-content .search-container {
    position: relative;
    flex: 1;
    max-width: 500px;
}

.top-content .search-form {
    display: flex;
    border: 1px solid #529892;
    border-radius: 15px;
    overflow: hidden;
    background: white;
}

.top-content .category-dropdown {
    background: transparent;
    border: none;
    padding: 12px 20px;
    outline: none;
    cursor: pointer;
    min-width: 140px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
}

.top-content .search-input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    outline: none;
    font-size: 14px;
    min-width: 0;
    font-family: 'Poppins', sans-serif;
}

.top-content .search-input::placeholder {
    color: #999;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.top-content .search-btn {
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: rgb(5, 5, 5);
    cursor: pointer;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.top-content .nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.top-content .mobile-menu .nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 2rem;
}

.top-content .mobile-menu .nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s;
    font-family: 'Manrope', sans-serif;
}

.top-content .nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
    font-family: 'Manrope', sans-serif;
}

.top-content .nav-menu a:hover,
.top-content .nav-menu a.active {
    color: #5fb3b3;
}

.top-content .header-icons {
    display: flex;
    align-items: center;
    gap: 40px;
}

.top-content .icon-link {
    color: #333;
    font-size: 20px;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.top-content .icon-link:hover {
    color: #5fb3b3;
}

.top-content .cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #5fb3b3;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.top-content .custom-dropdown {
    position: relative;
    display: inline-block;
}

.top-content .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 120px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 1000;
    top: 100%;
    right: 0;
}

.top-content .dropdown-content a {
    color: #333;
    padding: 8px 12px;
    text-decoration: none;
    display: block;
    font-size: 13px;
}

.top-content .dropdown-content a:hover {
    background-color: #f1f1f1;
    color: #5fb3b3;
}

.top-content .custom-dropdown:hover .dropdown-content {
    display: block;
}


.top-content .mobile-menu {
    background: white;
    border-top: 1px solid #e0e0e0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-10px);
    transition: all 1s ease;
}

.top-content .mobile-menu.show {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

.top-content .mobile-menu .nav-menu {
    flex-direction: column;
    gap: 0;
}

.top-content .mobile-menu .nav-menu li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
}

.top-content .mobile-menu .nav-menu a {
    display: block;
    width: 100%;
}

@media (max-width: 1200px) {
    .top-content .top-header {
        font-size: 12px;
        padding: 8px 0;
    }

    .top-content .header-right {
        gap: 10px;
    }

    .top-content .main-nav {
        padding: 10px 0;
    }

    .top-content .logo {
        font-size: 24px;
        flex-shrink: 0;
    }

    .top-content .search-container {
        flex: 1;
        max-width: none;
        margin: 0 15px;
    }

    .top-content .category-dropdown {
        display: none;
    }

    .top-content.search-input {
        padding: 10px 15px;
        font-size: 13px;
    }

    .top-content .search-btn {
        padding: 10px 15px;
    }

    .top-content .search-btn span {
        display: none;
    }

    .top-content .header-icons {
        gap: 15px;
        flex-shrink: 0;
    }

    .top-content .navbar-toggler {
        border: none;
        padding: 4px 6px;
        background: none;
        flex-shrink: 0;
    }

    .top-content .navbar-toggler:focus {
        box-shadow: none;
    }

    .top-content .mobile-toggle {
        background-color: transparent;
        color: rgb(52, 51, 51);
        border: none;
        border-radius: 2px;
        width: 50px;
        opacity: 1;
        padding: 5px;
        transition: 1s;
    }

    .top-content .mobile-toggle:hover {
        background-color: #cdcfcf;
    }

    .top-content .navbar-toggler-icon {
        width: 30px;
        height: 20px;
    }

    .top-content .desktop-nav {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .top-content .search-container {
        flex: 1;
        max-width: 300px;
    }

    .top-content .logo {
        width: 55px;
    }

    .top-content .shipping-info span {
        margin: 0px;
        font-size: 8px;
    }

    .top-content .shipping-info img {
        margin: 0px;
        height: 13px;
    }

    .top-content .language-currency {
        gap: 5px;
    }

    .top-content .header-icons {
        gap: 5px;
    }

    .top-content .main-nav .header-icons {
        gap: 15px;
    }

    .top-content .header-right img {
        display: none;
    }

    .top-content .search-container {
        width: 100px;
    }

    .top-content .header-right .phone-number span {
        font-size: 9px;
    }
}

 
        






































        .blog-section {
            padding: 14rem 0;
            font-family: 'Arial', sans-serif;
            /* background: linear-gradient(135deg, #f8fffe 0%, #e8f6f5 100%); */
            color: #333;
        }

        .blog-section .section-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        /* .blog-section .section-header::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #529892, #7db3ae);
            border-radius: 2px;
        } */

        .blog-section .section-title {
            font-size: 3.8rem;
            font-weight: 1000;
            color: #529892;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            font-family: 'Manrope', sans-serif;

        }

        .blog-section .section-subtitle {
            font-size: 1.2rem;
            color: #666;
            opacity: 0.9;
        }

.blog-section .blog-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(82, 152, 146, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    height: 100%;
    border: none;
    transform: translateZ(0); 
   
    z-index: 1;
}



        
        

        .blog-section .blog-card:hover {
    transform: translateY(-8px) scale(1.03); /* More lift and slight zoom */
    box-shadow: 0 25px 60px rgba(82, 152, 146, 0.25);
    z-index: 10; /* Bring above other cards */

}

        .blog-section .blog-image {
            height: 320px;
            width: 100%;
            background: linear-gradient(135deg, #529892 0%, #7db3ae 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            object-fit: cover;
            border: none;
        }

        /* .blog-section .blog-image::after {
            content: '💎';
            font-size: 3rem;
            opacity: 0.3;
        } */

        .blog-section .blog-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .blog-section .blog-category {
            background: rgba(82, 152, 146, 0.1);
            color: #529892;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 500;
            font-size: 0.8rem;
        }

        .blog-section .blog-date {
            color: #999;
        }

        .blog-section .blog-section.blog-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .blog-section .blog-card:hover .blog-title {
            color: #529892;
        }

        .blog-section .blog-excerpt {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .blog-section .read-more {
            color: #529892;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .blog-section .read-more:hover {
            gap: 12px;
            color: #3d726b;
        }

        /* .blog-section .read-more::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .blog-section.read-more:hover::after {
            transform: translateX(4px);
        } */

        .blog-section .featured-post {
            margin-bottom: 3rem;
        }

        .blog-section .featured-image {
            background: linear-gradient(135deg, #529892 0%, #7db3ae 100%);
            position: relative;
            overflow: hidden;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* .blog-section .featured-image::after {
            content: '✨';
            font-size: 4rem;
            opacity: 0.3;
        } */

        .blog-section .featured-content {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 400px;
        }

        .blog-section .featured-title {
            font-size: 2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .blog-section .featured-excerpt {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .blog-section .newsletter-section {
            text-align: center;
            padding: 60px 30px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(82, 152, 146, 0.1);
            position: relative;
            overflow: hidden;
            margin-top: 4rem;
        }

        .blog-section .newsletter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(82, 152, 146, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
        }

        .blog-section .newsletter-content {
            position: relative;
            z-index: 1;
        }

        .blog-section .newsletter-title {
            font-size: 2rem;
            font-weight: 700;
            color: #529892;
            margin-bottom: 15px;
        }

        .blog-section .newsletter-text {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 30px;
        }

        .blog-section .newsletter-input {
            border: 2px solid #e0e0e0;
            border-radius: 50px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }

        .blog-section .newsletter-input:focus {
            outline: none;
            border-color: #529892;
            box-shadow: 0 0 0 3px rgba(82, 152, 146, 0.1);
        }

        .blog-section .newsletter-btn {
            background: linear-gradient(135deg, #529892 0%, #7db3ae 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .blog-section .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(82, 152, 146, 0.3);
            background: linear-gradient(135deg, #3d726b 0%, #529892 100%);
        }

        /* Animation classes */
        .blog-section .fade-in-up {
            animation: fadeInUp 0.6s ease forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .blog-section .fade-in-up:nth-child(2) { animation-delay: 0.1s; }
        .blog-section .fade-in-up:nth-child(3) { animation-delay: 0.2s; }
        .blog-section .fade-in-up:nth-child(4) { animation-delay: 0.3s; }
        .blog-section .fade-in-up:nth-child(5) { animation-delay: 0.4s; }
        .blog-section .fade-in-up:nth-child(6) { animation-delay: 0.5s; }

        /* Responsive adjustments */
        @media (max-width: 991px) {
            /* Medium screens - stacked layout */
            .blog-section .featured-image {
                height: 300px;
            }
            
            .blog-section .featured-content {
                height: auto;
                min-height: 300px;
                padding: 30px;
            }
            
            .blog-section .featured-title {
                font-size: 1.8rem;
                margin-bottom: 15px;
            }
            
            .blog-section .featured-excerpt {
                font-size: 1rem;
                margin-bottom: 20px;
            }
        }

        @media (max-width: 767px) {
            .blog-section .section-title {
                font-size: 2.2rem;
            }
            
            /* Stack the featured post vertically on mobile */
            .blog-section .featured-image {
                height: 250px;
            }
            
            .blog-section .featured-content {
                height: auto;
                min-height: auto;
                padding: 25px 20px;
            }
            
            .blog-section .featured-title {
                font-size: 1.5rem;
                margin-bottom: 12px;
            }
            
            .blog-section .featured-excerpt {
                font-size: 0.95rem;
                margin-bottom: 18px;
            }
            
            .blog-section .newsletter-section {
                padding: 40px 20px;
                margin-top: 3rem;
            }
            
            .blog-section .newsletter-title {
                font-size: 1.6rem;
            }
            
            .blog-section .blog-card {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 575px) {

            .blog-section{
                padding-top: 9rem;
            }
            .blog-section .section-title {
                font-size: 1.8rem;
            }
            
            .blog-section .blog-title {
                font-size: 1.2rem;
            }
            
            .blog-section .blog-section {
                padding: 60px 0;
            }
            
            /* Extra small screens - ensure all content is visible */
            .blog-section .featured-image {
                height: 200px;
            }
            
            .blog-section .featured-content {
                padding: 20px 15px;
            }
            
            .blog-section .featured-title {
                font-size: 1.3rem;
                margin-bottom: 10px;
            }
            
            .blog-section .featured-excerpt {
                font-size: 0.9rem;
                margin-bottom: 15px;
            }
            
            .blog-section .blog-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }
































         /* footer????????????????????????????????????????/ */

        .footer{
            background-color: #225D58;
            font-family: 'Outfit', sans-serif;
        }

.footer .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgb(248, 247, 247);
    border-radius: 50%;
    text-decoration: none;
    color: white; 
    background-color: transparent;
    transition: all 0.3s ease;
}

.footer .social a:hover {
    background-color: white; 
    color: black; 
}



.footer-column h6 {
    margin-bottom: 1rem;
    line-height: 1.8; 
  }

  .footer-column ul li {
    margin-bottom: 0.5rem; 
    color: grey;

  }

  .footer-column a {
    line-height: 1.8;
    display: inline-block;
    transition: color 0.2s ease-in-out;
    color: rgb(165, 164, 164);
  }

  .footer-column a:hover {
    color: #fdfcfb; 
  }



  .whatspp-icon{
    position: fixed; 
    right: 20px; 
    top: 50%; 
    transform: translateY(-50%); 
    width: 80px; 
    height: 80px; 
    background-color: #25D366; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    z-index: 1000;
    text-decoration: none;
  } 


  .whatspp-icon i{
    font-size: 40px; 
    color: white;
  }



  @media (max-width: 576px) {

    .whatspp-icon{
        width: 40px;
        height: 40px;
    }
    .whatspp-icon i{
        font-size: 25px;
    }
    
  }