


                        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /* overflow-y: hidden; */
            /* outline: 1px solid red;  */
        }

/* ===== Fixed container only on the outer section ===== */
.top-content {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  width: 100%;
}

/* Currency dropdown (in top bar) */
.top-content .custom-dropdown { position: relative; display: inline-block; }
.top-content .dropdown-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: 0; color: #fff; padding: 6px 10px;
  cursor: pointer; font: inherit;
}
.top-content .dropdown-content {
  position: absolute; top: 100%; right: 0; min-width: 140px;
  background: #fff; border-radius: 6px; padding: 6px 0;
  box-shadow: 0 8px 18px rgba(0,0,0,.15); z-index: 1300; display: none;
}
.top-content .dropdown-content a { display: block; padding: 8px 12px; color: #333; text-decoration: none; font-size: 14px; }
.top-content .dropdown-content a:hover { background: #f5f7f7; color: #5fb3b3; }
.top-content .custom-dropdown.open > .dropdown-content { display: block; }
@media (hover: hover) and (pointer: fine) {
  .top-content .custom-dropdown:hover > .dropdown-content { display: block; }
}

/* ===== Top bar ===== */
.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; gap: 16px; }
.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:12px; }

/* ===== Main nav ===== */
.top-content .main-nav { background:white; box-shadow:0 2px 10px rgba(0,0,0,0.1); position:relative; }

/* Logo */
.top-content .logo { font-size:28px; font-weight:bold; color:#5fb3b3; text-decoration:none; display:flex; align-items:center; gap:10px; }

/* Search */
.top-content .search-container { position:relative; flex:1; max-width:720px; }
.top-content .search-form { display:flex; border:1px solid #529892; border-radius:15px; overflow:hidden; background:white; }
.top-content .search-form > * { border:0!important; outline:none; margin:0; background:transparent; }
.top-content .category-dropdown {
  flex: 0 0 clamp(140px, 18vw, 220px);
  max-width: 220px; width: auto; padding: 12px 20px; cursor: pointer;
  font-weight: 500; font-family: 'Poppins', sans-serif; letter-spacing: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  -webkit-appearance: none; appearance: none;
}
.top-content .search-input { flex:1 1 auto; min-width:0; }
.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:#050505; cursor:pointer; white-space:nowrap; font-family:'Poppins',sans-serif; font-weight:400; flex:0 0 auto; }

/* Desktop nav links */
.top-content .nav-menu { display:flex; list-style:none; align-items:center; gap:40px; margin:0; padding:0; }
.top-content .nav-menu a { text-decoration:none; color:#333; font-weight:600; transition:color .3s; font-family:'Manrope',sans-serif; }
.top-content .nav-menu a:hover, .top-content .nav-menu a.active { color:#5fb3b3; }

/* Desktop dropdown behavior */
.top-content .nav-item.dropdown .dropdown-menu { display:none; }
.top-content .nav-item.dropdown .dropdown-menu {
  margin: 0;                
}
.top-content .nav-item.dropdown.show > .dropdown-menu { display:block; }
.top-content .dropdown-menu { z-index:1055; }
.top-content .dropdown-submenu { position:relative; }
.top-content .dropdown-submenu > .dropdown-menu {
  top: 0;                    /* no vertical gap */
  left: calc(100% - 4px);    /* overlap by 4px so pointer never leaves */
  margin: 0;                 /* kill the .25rem margin that adds a gap */
  display: none;
  z-index: 1060;
}
.top-content .dropdown-submenu > .dropdown-menu.show { display:block; }
@media (min-width: 1200px) {
  .top-content .dropdown-submenu:hover > .dropdown-menu { display:block; }
}

/* Icons */
.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 .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; }

/* Mobile toggle */
.top-content .mobile-toggle {
  background-color:transparent; color:#343333; border:none; border-radius:2px; width:44px; height:44px;
  opacity:1; padding:0; display:flex; align-items:center; justify-content:center; transition:.2s;
  position: relative; z-index: 1400; /* keeps on top of search pill */
}
.top-content .mobile-toggle:hover { background:#ececec; }

/* ===== Mobile drawer (scrollable) ===== */
.top-content .mobile-menu {
  background:white; border-top:1px solid #e0e0e0;
  max-height: 0; opacity: 0; overflow: hidden;
  transform: translateY(-10px);
  transition: transform .25s ease, opacity .25s ease, max-height .25s ease;
  z-index: 1200;
}
.top-content .mobile-menu.show {
  max-height: calc(100vh - 110px);
  opacity: 1; transform: translateY(0);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.top-content .mobile-menu .nav-menu {
  display:flex; flex-direction:column; align-items: stretch; gap:0;
  list-style:none; margin:0; padding:.5rem 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%; padding:12px 16px; text-decoration:none; color:#333; font-weight:600; font-size:16px; }

/* Accordion toggles + panels */
.top-content .mobile-subtoggle {
  width:100%; padding:12px 16px; background:#fff; border:0; text-align:left;
  font-size:16px; display:flex; justify-content:space-between; align-items:center;
}
.top-content .mobile-submenu {
  max-height:0; overflow:hidden; transition:max-height .25s ease; background:#fafafa;
  list-style:none; margin:0; padding:0;
}
.top-content .mobile-submenu a { display:block; padding:10px 18px; font-size:15px; }
/* Hide Bootstrap's auto-caret only for the currency dropdown */
.top-content .custom-dropdown > .dropdown-toggle::after {
  display: none !important;
  content: none !important;
}

/* ===== Mobile layout: match the proposed design ===== */
@media (max-width: 768px) {
  /* Slimmer top bar */
  .top-content .top-header { padding: 6px 0; }
  .top-content .top-header .container { gap:10px; }
  .top-content .shipping-info span { font-size: 10px; }
  .top-content .phone-number span { font-size: 10px; }
  .top-content .dropdown-toggle { padding: 4px 8px; }

  /* Single line top bar (shipping left, phone middle/right, currency at far right) */
  .top-content .top-header .container { flex-wrap: nowrap; }
  .top-content .shipping-info { flex: 1 1 auto; min-width: 0; }
  .top-content .header-right { flex: 0 0 auto; gap: 12px; }

  /* Main row: logo | search (flex, center) | icons + toggle (right) */
  .top-content .main-nav .container > .main-row {
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap: nowrap;     /* keep in one line like the design */
  }

  .top-content .logo { width: 64px; height: auto; flex: 0 0 auto; }

  .top-content .search-container {
    order: 2;
    flex: 1 1 auto;        /* take the middle space */
    min-width: 0;          /* allow shrinking */
    margin: 0 4px;
  }

  .top-content .header-icons {
    order: 3;
    flex: 0 0 auto;
    gap: 16px;
    margin-left: 6px;      /* little spacing from search */
  }

  .top-content .mobile-toggle {
    order: 4;
    flex: 0 0 auto;
    margin-left: 6px;
  }

  /* tighten the search pill */
  .top-content .search-form { border-radius: 20px; }
  .top-content .search-input { padding: 10px 14px; font-size: 13px; }
  .top-content .search-btn { padding: 10px 12px; }
  .top-content .category-dropdown { display: none; } /* hide category select on mobile like your layout */
}

/* Even narrower phones */
@media (max-width: 420px) {
  .top-content .shipping-info span,
  .top-content .phone-number span { font-size: 12px; }
  .top-content .icon-link { font-size: 18px; }
  .top-content .search-input { font-size: 12.5px; }
}


































        .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: 60px; 
    height: 60px; 
    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: 30px; 
    color: white;
  }



  @media (max-width: 576px) {

    .whatspp-icon{
        width: 40px;
        height: 40px;
    }
    .whatspp-icon i{
        font-size: 25px;
    }
    
  }