* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Oswald", sans-serif;
  background-color: #f7f7f7;
  color: #222;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}





:root {
            --primary-teal: #007f73; /* Matching the button color */
            --light-bg: #e6fcf9;      /* Matching top bar background */
            --text-dark: #333333;
            --nav-link-color: #333;
        }

      

        /* Top Bar Styling */
        .top-bar {
            background-color: var(--light-bg);
            font-size: 14px;
            color: var(--primary-teal);
            font-weight: 600;
        }

        .btn-teal {
            background-color: var(--primary-teal);
            color: white;
            font-weight: 600;
            border-radius: 20px;
            padding: 4px 16px;
            font-size: 13px;
            text-transform: lowercase;
        }
        .btn-teal:hover {
            background-color: #006b61;
            color: white;
        }

        /* Main Header Styling */
        .main-header {
            padding: 15px 0;
            background: white;
        }

        .logo-img {
            max-width: 130px;
            height: auto;
        }

        /* Search Bar Styling */
        .search-container {
            position: relative;
            width: 100%;
            max-width: 600px;
        }
        
        .search-input {
            border-radius: 50px;
            padding: 10px 20px 10px 45px;
            border: 1px solid #ddd;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        
        .search-input:focus {
            border-color: var(--primary-teal);
            box-shadow: 0 0 0 0.2rem rgba(0, 127, 115, 0.25);
        }

        .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
        }

        .clear-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
            cursor: pointer;
        }

        /* Utility Links (Rewards, Help, etc) */
        .utility-nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 14px;
            margin-left: 20px;
        }
        .utility-nav a:hover {
            color: var(--primary-teal);
        }

        /* Bottom Navbar Styling */
        .navbar-bottom {
            background-color: white;
            padding-top: 0;
            padding-bottom: 10px;
        }
        
        .nav-link {
            color: var(--text-dark);
            font-weight: 600;
            font-size: 15px;
            padding: 8px 15px !important;
        }

        .nav-link.active-teal {
            color: var(--primary-teal);
        }
        
        .nav-link:hover {
            color: var(--primary-teal);
        }
        
        .navbar-bottom .nav-link {
    white-space: nowrap;     
}


.navbar-bottom .navbar-nav {
    display: flex;
    flex-wrap: wrap;         
    justify-content: center; 
    /*gap: 10px;              */
}

        /* Mobile Adjustments */
        @media (max-width: 991px) {
            .utility-nav {
                display: none; /* Hide text links on small screens */
            }
            .mobile-icons {
                display: flex;
                gap: 15px;
            }
            .search-container {
                margin-top: 10px;
            }
            .logo-img {
                max-width: 120px;
            }
        }

        /* Mobile Side Navigation */
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }

        .mobile-nav-overlay.active {
            display: block;
            opacity: 1;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 80%;
            max-width: 400px;
            background-color: white;
            z-index: 1000;
            overflow-y: auto;
            transition: right 0.3s ease-in-out;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: flex-end;
            padding: 20px;
            border-bottom: 1px solid #e0e0e0;
        }
        .mobile-nav-header img{
            width: 38%;
            margin-right: 48%;
            margin-top: -16px;
        }

        .mobile-nav-close {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-dark);
            cursor: pointer;
            padding: 0;
            width: 40px;
            height: 65px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-nav-close:hover {
            color: var(--primary-teal);
        }

        .mobile-nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-nav-list li {
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-nav-link {
            display: block;
            padding: 16px 20px;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .mobile-nav-link:hover {
            color: var(--primary-teal);
            background-color: rgba(0, 127, 115, 0.05);
            padding-left: 25px;
        }

        .mobile-nav-link.active-teal {
            color: var(--primary-teal);
        }


/* ============= Carousel section Start Here =================== */

#carouselExampleIndicators {
    padding: 15px 100px 15px 100px;  
}

@media (max-width: 600px) {
    #carouselExampleIndicators{
        padding: 15px;
    } 

    .carousel-control-next{
        padding-right: 0px !important;
    }

    .carousel-control-prev{
        padding-left: 0px !important;
    }

}



#carouselExampleIndicators .carousel-inner {
    border-radius: 20px;  
    overflow: hidden;  
}

 
#carouselExampleIndicators .carousel-item img {
    width: 80%;
    height: auto;
    border-radius: 20px;  
    object-fit: cover;
}

.carousel-control-next{
    padding-right: 120px;
}

.carousel-control-prev{
    padding-left: 120px;
}
       
/* ============= Carousel section End Here=================== */





/* --- Section Styling --- */
        .category-section {
            padding: 40px 0;
            position: relative;
            background-color: #fff;
        }

        .section-title {
            font-weight: 700;
            color: #333;
            margin-bottom: 30px;
            font-size: 24px;
        }

        /* --- Slider Container --- */
        .slider-wrapper {
            overflow: hidden; 
            padding: 10px 5px;
        }

        .slider-track {
            display: flex;
            gap: 20px;
            transition: transform 0.5s ease-in-out;
        }

        /* --- Card Styling --- */
        .slide-card {
            min-width: 260px; 
            height: 320px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            background-color: #f8f9fa;
            transition: all 0.3s ease; 
            border: none;
        }

        /* Image styling */
        .slide-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease; 
        }

        /* Text Overlay inside Image */
        .card-content {
            position: absolute;
            top: 20px;
            left: 0;
            width: 100%;
            text-align: center;
            z-index: 2;
            padding: 0 15px;
        }

        .card-title {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 5px;
            text-shadow: 0 2px 4px rgba(255,255,255,0.8);
        }

        .card-desc {
            font-size: 13px;
            color: #fff;
            font-weight: 500;
        }

        
        .slide-card:hover {
            box-shadow: 0 10px 20px rgba(0,0,0,0.15); 
        }

        .slide-card:hover img {
            transform: scale(1.08); 
        }

        /* --- Navigation Buttons --- */
        .nav-btn {
            position: absolute;
            top: 55%; 
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            background-color: white;
            border-radius: 50%;
            border: 1px solid #eee;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            z-index: 10;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            transition: background 0.3s;
        }

        .nav-btn:hover {
            background-color: #f1f1f1;
            color: #007f73; 
        }

        .prev-btn { left: 10px; }
        .next-btn { right: 10px; }

        @media (min-width: 1024px) {
    .prev-btn {
        left: 120px;
    }

    .next-btn {
        right: 120px;
    }
}


        /* Mobile Responsive Adjustments */
        @media (max-width: 768px) {
            .slide-card {
                min-width: 220px; /* Smaller cards on mobile */
                height: 280px;
            }
            .nav-btn {
                width: 35px;
                height: 35px;
                font-size: 12px;
            }
            .section-title {
                font-size: 20px;
            }
        }



/*========================== product section css======================== */


/* --- General Section Styling --- */
        .product-section {
            padding: 40px 0;
           
        }
        .section-header a {
            text-decoration: none;
            color: #007f73; /* Teal color */
            font-size: 14px;
            font-weight: 600;
        }

        /* --- Slider Wrapper & Track --- */
        .product-slider-wrapper {
            position: relative;
            overflow: hidden; 
            padding: 20px 5px; 
        }

        .product-track {
            display: flex;
            gap: 20px; 
            transition: transform 0.5s ease-in-out;            
            touch-action: pan-y; 
        }

        /* --- Product Card Styling --- */
        .product-card {
            min-width: 220px; 
            background: #fff;
            border-radius: 8px;
            /* Smooth transition for hover shadow */
            transition: all 0.3s ease;
            border: 1px solid transparent; 
        }

        /* Image Container (for zoom overflow) */
        .img-container {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            height: 220px;
        }

        .img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease; /* Smooth zoom */
        }

        /* Badges (New, Sale, Limited) */
        .badge-container {
            position: absolute;
            top: 10px;
            left: 10px;
            display: flex;
            flex-direction: column;
            gap: 5px;
            z-index: 2;
        }
        .custom-badge {
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            color: white;
        }
        .badge-green { background-color: #4CAF50; }
        .badge-black { background-color: #222; }
        .badge-sale { background-color: #d32f2f; }

        /* Quick Add Icon */
        .quick-add-icon {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #007f73;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            cursor: pointer;
            z-index: 2;
        }

        /* Card Info */
        .product-info {
            padding: 15px 5px;
        }
        .product-title {
            font-weight: 700;
            font-size: 15px;
            margin-bottom: 5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .stars { color: #FFD700; font-size: 12px; }
        .price { font-weight: 600; color: #333; margin-left: 8px; }
        .price-small { font-size: 12px; color: #777; }

       
        .product-card:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.1); 
            border-color: #eee;
        }
        .product-card:hover .img-container img {
            transform: scale(1.08); 
        }

        /* --- Navigation Buttons --- */
        .prod-nav-btn {
            position: absolute;
            top: 45%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
            border: none;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        .prod-nav-btn:hover { background: #007f73; color: white; }
        .prod-prev { left: 5px; }
        .prod-next { right: 5px; }

        
        @media (max-width: 768px) {
            .product-card { min-width: 160px; } 
            .img-container { height: 160px; }
            /* .prod-nav-btn { display: none; }  */
        }







.highlight-title {
  display: inline-block;
  background: #008074;
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  padding: 8px 18px;
  border-radius: 5px;
  /* box-shadow: 3px 3px 0px #d30000; */
}
.section-main-heading {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: #007f73;
}
.section-main-heading + p,
.text-muted {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}
.about-company {
  background-color: #fff;
}

img.shadow {
  border-radius: 6px;
}

.card {
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  cursor: pointer;
}



.about-us {
    z-index: 1;
    text-align: center;
    width: 45%;
    float: left;
}

.about-us img {
    width: 100%;
    padding-right: 1.5rem;
}











/* --- Section Styling --- */
        .insta-section {
            padding: 60px 0;
            /* background-color: #fff; */
            text-align: center;
        }
        
        .insta-title {
            font-weight: 800;
            font-size: 28px;
            margin-bottom: 10px;
        }
        
        .insta-subtitle {
            color: #666;
            font-size: 15px;
            /* margin-bottom: 40px; */
        }

        /* --- Slider Wrapper --- */
        .insta-wrapper {
            position: relative;
            overflow: hidden;
            padding: 10px 0;
        }

        .insta-track {
            display: flex;
            gap: 15px;
            transition: transform 0.5s ease-in-out;
        }

        /* --- Video Card Styling --- */
        .insta-card {
            min-width: 240px; /* Square size */
            height: 240px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border-radius: 4px;  
        }

        /* The Video Element */
        .insta-card video {
            width: 100%;
            height: 100%;
            object-fit: cover; 
            transition: transform 0.5s ease;
        }

        /* Overlay (Play Icon on Hover) */
        .insta-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
        }

        .insta-overlay i {
            color: white;
            font-size: 40px;
        }

        /* --- Hover Effects --- */
        .insta-card:hover video {
            transform: scale(1.1); /* Zoom Effect */
        }
        
        .insta-card:hover .insta-overlay {
            opacity: 1;  
        }

        /* --- Navigation Buttons --- */
        .insta-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            border: none;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            z-index: 10;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }
        .insta-btn:hover { background: white; color: #007f73; }
        .insta-prev { left: 10px; }
        .insta-next { right: 10px; }
        
        .insta-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-card:hover img {
    transform: scale(1.1);
}

        /* Visit Button */
        .visit-btn {
            background-color: black;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 40px;
            display: inline-block;
            transition: opacity 0.3s;
        }
        .visit-btn:hover {
            color: white;
            opacity: 0.8;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .insta-card {
                min-width: 160px;
                height: 160px;
            }
            .insta-btn { width: 30px; height: 30px; font-size: 12px; }
        }

       
        



  /* ============================ testimonial section ===============================       */


  /* --- Section Styling --- */
        .testimonial-section {
            padding: 60px 0;
            background-color: #fff;
            text-align: center;
            position: relative;
        }

        /* Header Area */
        .testi-header h2 {
            font-weight: 300;
            font-size: 28px;
            color: #333;
            margin-bottom: 10px;
        }
        .testi-header .main-stars {
            color: gold;
            font-size: 20px;
            margin-bottom: 5px;
        }
        .testi-header p {
            color: #666;
            font-size: 14px;
        }
        .verified-badge {
            color: #00bfa5;
            margin-left: 5px;
        }

        /* --- Slider Container --- */
        .testi-wrapper {
            overflow: hidden;
            padding: 20px 0;
            margin: 0 auto;
            max-width: 1200px;  
        }

        .testi-track {
            display: flex;
            
            transition: transform 0.5s ease-in-out;
        }

        /* --- Card Styling --- */
        .testi-card {
            
            flex: 0 0 33.333%; 
            max-width: 33.333%;
            padding: 0 20px;  
            text-align: center;
            box-sizing: border-box;
        }

        .card-stars {
            color: gold;
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .card-title {
            font-weight: 700;
            font-size: 16px;
            color: #333;
            margin-bottom: 10px;
        }

        .card-review {
            font-size: 14px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 15px;
            min-height: 60px; 
        }

        .card-author {
            font-size: 13px;
            color: #999;
            margin-bottom: 15px;
            display: block;
        }

        .product-thumb {
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: 4px;
            border: 1px solid #eee;
        }

        /* --- Navigation Arrows --- */
        .nav-controls {
            margin-top: 30px;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .nav-arrow {
            background: transparent;
            border: none;
            color: #ccc;
            font-size: 24px;
            cursor: pointer;
            transition: color 0.3s;
        }
        .nav-arrow:hover {
            color: #333;
        }

        /* --- Responsive --- */
        @media (max-width: 768px) {
            .testi-card {
 
                flex: 0 0 100%;
                max-width: 100%;
            }
            .testi-header h2 { font-size: 24px; }
        }



/* ========================footer section css ================================= */

        :root {
            --primary-teal: #007f73;
            --text-dark: #333;
            --text-light: #666;
            --bg-light: #f9f9f9;
        }

       


        .footer-cta-banner {
            background-color: var(--primary-teal);
            color: white;
            padding: 30px 0;
        }
        
        .cta-text h5 {
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 18px;
        }
        .cta-text p {
            margin: 0;
            font-size: 14px;
            opacity: 0.9;
        }

        .btn-white-outline {
            background-color: white;
            color: var(--primary-teal);
            font-weight: 600;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .btn-white-outline:hover {
            background-color: #e6fcf9;
            transform: translateY(-2px);
        }

        /* --- 2. Main Footer Area --- */
        .main-footer {
            background-color: white;
            padding-top: 50px;
            color: var(--text-dark);
            border-top: 1px solid #eee;
        }

        /* Newsletter Section */
        .newsletter-box {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            margin-bottom: 40px;
            border: 1px solid #eee;
        }
        .newsletter-title {
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            font-size: 20px;
        }
        .newsletter-input-group {
            max-width: 500px;
        }
        .form-control:focus {
            border-color: var(--primary-teal);
            box-shadow: 0 0 0 0.2rem rgba(0, 127, 115, 0.25);
        }
        .btn-teal {
            background-color: var(--primary-teal);
            color: white;
            border: none;
        }
        .btn-teal:hover {
            background-color: #006b61;
            color: white;
        }

        /* Footer Columns */
        .footer-heading {
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 20px;
            text-transform: uppercase; /* As per image style */
            color: #222;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            max-height: 200px; 
            overflow-y: auto;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            text-decoration: none;
            color: var(--text-light);
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary-teal);
            padding-left: 5px; /* Small shift effect */
        }
        
        .footer-links::-webkit-scrollbar {
            width: 6px;
        }

        .footer-links::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 3px;
        }

        .footer-links::-webkit-scrollbar-thumb:hover {
            background: #999;
        }

        .about-text {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
            text-align: justify;
        }

        /* Contact Icons */
        .contact-item {
            display: flex;
            align-items: start;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 14px;
            color: var(--text-light);
        }
        .contact-item i {
            color: var(--primary-teal);
            margin-top: 4px;
        }

        .social-icons {
            margin-top: 20px;
            display: flex;
            gap: 15px;
        }
        .social-link {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background-color: #eee;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s;
        }
        .social-link:hover {
            background-color: var(--primary-teal);
            color: white;
            transform: rotate(360deg);
        }

        /* --- 3. Copyright Bottom Bar --- */
        .copyright-bar {
            margin-top: 40px;
            padding: 20px 0;
            border-top: 1px solid #eee;
            font-size: 13px;
            color: #888;
            justify-content:center;
        }
        
        .dev-credit a {
            color: var(--primary-teal);
            text-decoration: none;
            font-weight: 600;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .footer-cta-banner { text-align: center; }
            .cta-btn-wrapper { margin-top: 15px;margin-left: 90px; }
            .newsletter-box { text-align: center; }
            .newsletter-input-group { margin: 0 auto; }
        }


/*======================= newslatter css==================== */
.input-wrapper {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
}
.input {
  width: 170px;
  height: 40px;
  outline: none;
  padding-left: 15px;
  font-size: 0.7em;
  background-color: #fafaf7;
  border-radius: 6px;
  border: 1px solid #d0d7e1;
}
.Subscribe-btn {
  height: 40px;
  padding: 0 15px;
  border: none;
  border-radius: 6px;
  color: rgb(255, 255, 255);
  cursor: pointer;
  background-color: #292524;
  transition: all 0.3s;
  font-size: 0.7em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.Subscribe-btn:hover {
  color: white;
}
.Subscribe-btn:hover .arrow {
  margin-right: 0;
  animation: jello-vertical 0.9s both;
  transform-origin: left;
}

@keyframes jello-vertical {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(0.75, 1.25, 1);
  }
  40% {
    transform: scale3d(1.25, 0.75, 1);
  }
  50% {
    transform: scale3d(0.85, 1.15, 1);
  }
  65% {
    transform: scale3d(1.05, 0.95, 1);
  }
  75% {
    transform: scale3d(0.95, 1.05, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.Subscribe-btn:active {
  transform: scale(0.9);
}




/* float icon  */

@keyframes pulse-zoom {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

@keyframes wave {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);

  /* Auto animation */
  animation: pulse-zoom 2s infinite ease-in-out;
  overflow: visible;
  position: fixed;
}

/* WhatsApp Wave Effect */
.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(37, 211, 102, 0.4);
  border-radius: 50%;
  animation: wave 1.8s infinite ease-out;
  z-index: -1;
}

.joinnow-float {
  position: fixed;
  bottom: 25px;
  left: 20px;

  background-color: #000;     
  color: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  z-index: 1000;

  border: 3px solid red;     

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);

  /* Auto animation */
  animation: pulse-zoom 2s infinite ease-in-out;

  position: fixed;
  overflow: visible;
}

/* Join Us Wave Effect */
.joinnow-float::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0px;
  top: 1px;
  height: 100%;
  border-radius: 50px;
  background: rgba(255, 0, 0, 0.35);
  animation: wave 2s infinite ease-out;
  z-index: -1;
}


@media (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    right: 15px;
    font-size: 26px;
  }

  .joinnow-float {
    padding: 12px 18px;
    font-size: 16px;
    left: 15px;
  }
}







/* ============================= product details page css ================================= */
.image-text-section {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    /* font-family: Arial, sans-serif; */
    line-height: 1.6;
    
}

.side-img {
    float: left;
    width: 500px;
    margin: 0 20px 20px 0;
    border-radius: 6px;
    padding-right:20px;
}

/* Clear float when paragraph continues below image */
.image-text-section::after {
    content: "";
    display: block;
    clear: both;
}

/* Responsive: Mobile view */
@media (max-width: 768px) {
    .side-img {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }
}






/*=========================== Breadcrumb Section =================================*/

.breadcrumb-section {
    /* background-image:url("assets/banner/1597532115.jpg"); */
    width: 100%;
    padding: 60px 20px;
    background:#c7e7e4;
    background-size: cover;
    display: flex;
    justify-content: center;
}

.breadcrumb-content {
    max-width: 1200px;
    width: 100%;
}

.breadcrumb-section span {
    font-size: 32px;
    color: #0a0a0a;
    margin-bottom: 5px;
    font-weight: 900;
}

.breadcrumb-section p {
    font-size: 16px;
    color: #555;
}

.breadcrumb-section p a {
    text-decoration: none;
    color: #111;
    font-weight: 600;
}



/* =================== Contact From css ========================== */

/* Wrapper */
.contact-wrapper {
    padding: 70px 20px;
    display: flex;
    justify-content: center;
}

.contact-grid {
    max-width: 1300px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.icon-circle {
    width: 65px;
    height: 65px;
    background: #007f73;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 24px;
}

.contact-cards span {
    font-size: 20px;
    font-weight: 600;
}

/* Right Form Side */
.contact-form-area {
    background: #fff;
    padding: 35px 30px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-form-area span {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 800;
}

.contact-form-area p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form-area input,
.contact-form-area textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s ease;
    margin: 10px;
}

.contact-form-area input:focus,
.contact-form-area textarea:focus {
    border-color: #007f73;
    box-shadow: 0 0 8px rgba(52,183,247,0.3);
    outline: none;
}

textarea {
    height: 150px;
    resize: none;
}

.select{
    border-radius: 10px;
    margin: 10px;
    background-color: white;
    width:100%;
}

/* Button */
.send-btn {
    margin-top: 10px;
    background: #007f73;
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.send-btn:hover {
    background: #016258;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 147, 204, 0.35);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}





/* ================================sitemap page css ============================= */
.sitemap-section {           
            padding: 60px 0;            
        }

        .sitemap-title {
            font-weight: 700;
            font-size: 32px;
            margin-bottom: 40px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }

       
        .sitemap-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: #008074;
            margin: 10px auto 0;
            border-radius: 2px;
        }

       
        .sitemap-btn {
            display: block;
            text-decoration: none;
            color: #008074;
            font-size: 16px;
            font-weight: 600;
            padding: 15px 20px;
            border: 1px solid #007f73; 
            border-radius: 5px;
            text-align: center;
            position: relative;
            overflow: hidden; 
            transition: all 0.4s ease;
            background: rgba(255, 255, 255, 0.05); 
            margin-bottom: 20px;
        }

       
        .sitemap-btn i {
            margin-right: 8px;
            transition: transform 0.4s ease;
        }

       
        .sitemap-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #008074;
            transition: all 0.4s ease;
            z-index: 0;
            transform: skewX(-20deg);
        }

      
        .sitemap-btn span, 
        .sitemap-btn i {
            position: relative;
            z-index: 1;
        }

       
        .sitemap-btn:hover {
            color: #fff; 
            border-color: white;
            transform: translateY(-3px); 
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .sitemap-btn:hover::before {
            left: 0; 
            transform: skewX(0deg); 
            width: 150%; 
        }

        .sitemap-btn:hover i {
            transform: scale(1.2); 
        }

       
        .row-gap-custom {
            --bs-gutter-y: 10px;
        }




/* ============================ about Us page css ================================= */

:root {
            --primary-teal: #008074;
            --text-dark: #333;
            --text-gray: #666;
            --bg-light: #f9f9f9;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

       
        .about-hero-section {
            padding: 80px 0;
        }

        .about-img-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-img-wrapper img {
            transition: transform 0.5s ease;
            width: 100%;
        }

        .about-img-wrapper:hover img {
            transform: scale(1.05); 
        }

        .section-subtitle {
            color: var(--primary-teal);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            margin-bottom: 10px;
            display: block;
        }

        .section-title {
            font-weight: 800;
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .section-desc {
            color: var(--text-gray);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        
        .about-list {
            list-style: none;
            padding: 0;
        }
        .about-list li {
            margin-bottom: 10px;
            font-weight: 500;
            color: #444;
        }
        .about-list i {
            color: var(--primary-teal);
            margin-right: 10px;
        }

        
        .stats-section {
            background-color: var(--primary-teal);
            padding: 25px 0;
            color: white;
            text-align: center;
        }

        .stat-card {
            padding: 20px;
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px); 
        }

        .stat-icon {
            font-size: 40px;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
        }

        .stat-number {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 16px;
            font-weight: 500;
            text-transform: uppercase;
            opacity: 0.9;
        }

       
        .stat-divider {
            border-right: 1px solid rgba(255,255,255,0.2);
        }
        
        @media (max-width: 767px) {
            .stat-divider { 
                border-right: none; 
                border-bottom: 1px solid rgba(255,255,255,0.2); 
                padding-bottom: 20px; margin-bottom: 20px;
             }
        }

        
        .mv-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .mv-block {
            margin-bottom: 60px; 
        }

        .mv-img {
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 300px;
        }
        
       
        @media (max-width: 991px) {
            .mv-block { text-align: center; }
            .mv-text-col { margin-bottom: 30px; }
           
        }