/* Global Styles */
        :root {
            --primary-color: #e83e8c;
            --secondary-color: #6c757d;
            --dark-color: #343a40;
            --light-color: #f8f9fa;
            --white-color: #ffffff;
            --font-primary: 'Poppins', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family:rgb(242, 101, 6);
            color:rgb(13, 80, 59);
            padding-top: 80px; /* Space for header */
           
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
         
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .btn {
            display: inline-block;
            padding: 10px 15px;
            border-radius: 4px;
            font-weight: 500;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }

        .btn-primary {
            background-color: rgb(0, 0, 0);
            color: var(--white-color);
        }

        .btn-primary:hover {
            background-color:rgb(242, 101, 6);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary-color);
            border: 1px solid rgb(242, 101, 6);
            margin-left: 10px;
        }

        .btn-outline:hover {
            background-color: black;
            color:rgb(242, 101, 6);
        }

        /* Header Styles */
        .main-header {
            background-color: var(--white-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: transform 0.3s ease;
           
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            height: 80px;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: rgb(4, 94, 88);
            /* color: rgb(168, 126, 35); */
        }

        .main-nav ul {
            display: flex;
            align-items: center;
        }

        .main-nav li {
            margin-left: 15px;
        }

        .main-nav a {
            font-weight: 500;
            color: var(--dark-color);
            transition: color 0.3s ease;
        }

        .main-nav a:hover {
            color: rgb(13, 80, 59);
        }

        .nav-buttons {
            display: flex;
            align-items: center;
            margin-left: 15px;
        }

        #guest-btn{
           font-weight: bold; 
           border-radius: 50px;
            margin-left: 30px; 
            background-color: rgb(13, 80, 59);
            color: white;
        }
         #guest-btn-m{
           font-weight: bold; 
           border-radius: 50px;
            background-color: rgb(243, 181, 101);
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark-color);
        }

        /* Hide Header on Scroll */
        .header-hide {
            transform: translateY(-100%);
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .main-nav li {
                margin-left: 10px;
            }
            
            .btn {
                padding: 8px 12px;
                font-size: 13px;
            }
        }

        @media (max-width: 992px) {
            .main-nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }
        }

        @media (max-width: 768px) {
            .logo {
                font-size: 20px;
            }
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            max-width: 320px;
            height: 100vh;
            background-color: var(--white-color);
            z-index: 1100;
            transition: all 0.5s ease;
            overflow-y: auto;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid #eee;
        }

        .mobile-menu-header .logo {
            font-size: 20px;
        }

        .close-menu {
            font-size: 24px;
            cursor: pointer;
            color: var(--dark-color);
        }

        .mobile-nav {
            padding: 20px;
        }

        .mobile-nav ul li {
            margin-bottom: 15px;
        }

        .mobile-nav ul li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
            color: var(--dark-color);
            padding: 10px 0;
        }

        /* Mobile Dropdown Styles */
        .mobile-dropdown-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            padding-left: 15px;
        }

        .mobile-dropdown.active .mobile-dropdown-menu {
            max-height: 500px;
        }

        .mobile-dropdown-menu li {
            margin-bottom: 10px;
        }

        .mobile-dropdown-menu a {
            font-size: 14px;
            color: var(--secondary-color);
        }

        .mobile-dropdown-menu a:hover {
            color: var(--primary-color);
        }

        .mobile-buttons {
            display: flex;
            flex-direction: column;
            padding: 0 20px;
        }

        .mobile-buttons .btn {
            width: 100%;
            margin-bottom: 10px;
            text-align: center;
        }

        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }


        /* 
      ------------------------------------------------- Hero section -------------------------------------------- */

        /* Hero Slider Section */
        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
           
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            z-index: 1;
        }

        .slide.active {
            opacity: 1;
        }

        /* Slide 1 */
        .slide:nth-child(1) {
            background-image: url('R-home-1.png');
        }

        /* Slide 2 */
        .slide:nth-child(2) {
            background-image: url('R-home-2.png');
        }

        /* Overlay */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(228, 196, 157, 0.4);
            z-index: 2;
        }

        /* Content */
        .hero-content {
            position: relative;
            z-index: 3;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: rgb(0, 0, 0);
            padding: 0 20px;
           
        }

        /* Search Box */
        .search-box {
            width: 100%;
            max-width: 600px;
            margin: 30px 0;
            position: relative;
        }

        .search-box input {
            width: 100%;
            padding: 18px 30px 18px 50px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .search-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #e83e8c;
        }

        /* Book Now Button */
        .hero-btn {
            background: rgb(242, 101, 6);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(232, 62, 140, 0.4);
            position: relative;
            overflow: hidden;
        }

        .hero-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(232, 62, 140, 0.6);
            background-color: rgb(40, 54, 16);
        }

        .hero-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .hero-btn:hover::after {
            left: 100%;
        }

      
        .slide-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 4;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: #e83e8c;
            transform: scale(1.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .search-box {
                max-width: 90%;
            }

            .search-box input {
                padding: 14px 20px 14px 40px;
            }

            .search-icon {
                left: 15px;
            }

            .hero-btn {
                padding: 12px 30px;
            }
        }


        /* top concerns -------------------------------------------------------------------------------------------------------*/

        
         
        .top-concerns-container {
            font-family: var(--font-main);
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            margin-top: 100px;
        }
        
        .top-concerns-title {
            font-size: 40px;
            font-weight: bold;
            color: rgb(11, 85, 70);
            margin-bottom: 10px;
        }
        
        .top-concerns-subtitle {
            font-size: 16px;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .concerns-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .concern-category-btn {
            padding: 10px 20px;
            background-color: rgb(11, 85, 70);
            border: 1px solid orangered;
            border-radius: 20px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
            color: white;
        }
        
        .concern-category-btn:hover,
        .concern-category-btn.active {
            background-color: var(--accent-color);
            color: var(--white);
        }
        
        .concerns-content {
            display: none;
        }
        
        .concerns-content.active {
            display: block;
        }
        
        .concern-category-title {
            font-size: 20px;
            font-weight: bold;
            color: rgb(11, 85, 70);
            margin-bottom: 15px;
        }
        
        .services-count {
            font-size: 14px;
            color: var(--secondary-color);
            margin-left: 10px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
        }
        
        .service-image-container {
            width: 100%;
            height: 180px;
            overflow: hidden;
        }
        
        .service-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .service-info {
            padding: 15px;
        }
        
        .service-name {
            font-weight: bold;
            margin-bottom: 5px;
            color:rgb(11, 85, 70);
        }
        
        .service-count {
            font-size: 14px;
            color: var(--secondary-color);
        }


          /* top solutions -------------------------------------------------------------------------------------------------------*/

           /* Unique root variables */
        :root {
            --sol-primary: #07402b;
            --sol-secondary: #5c6bc0;
            --sol-accent: #07402b;
            --sol-light: #e8eaf6;
            --sol-dark: #0d47a1;
            --sol-gap: 18px;
            --sol-roundness: 10px;
            --sol-elevation: 0 6px 12px rgba(0,0,0,0.15);
        }

    /* Unique container */
        .sol-main-holder {
            max-width: 1240px;
            margin: 0 auto;
            margin-top: 100px;
            padding: 30px;
        }

        /* Unique header styles */
        .sol-page-heading {
            color: var(--sol-primary);
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .sol-page-subtext {
            color: var(--sol-secondary);
            font-size: 1.1rem;
            margin-bottom: 32px;
            line-height: 1.5;
        }

        /* Unique category filter */
        .sol-filter-row {
            display: flex;
            flex-wrap: wrap;
            gap: var(--sol-gap);
            margin-bottom: 36px;
        }

        .sol-filter-option {
            padding: 10px 20px;
            background: white;
            border: 2px solid var(--sol-secondary);
            border-radius: 50px;
            color: var(--sol-primary);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .sol-filter-option:hover {
            background: var(--sol-secondary);
            color: white;
        }

        .sol-filter-option.sol-active-option {
            background: var(--sol-accent);
            border-color: var(--sol-accent);
            color: white;
        }

        /* Unique category sections */
        .sol-category-panel {
            margin-bottom: 48px;
            display: none;
            animation: sol-fadeIn 0.6s ease-out;
        }

        @keyframes sol-fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .sol-category-panel.sol-show-panel {
            display: block;
        }

        /* Unique category title */
        .sol-category-title {
            color: var(--sol-dark);
            font-size: 1.8rem;
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 8px;
        }

        .sol-category-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--sol-accent);
            border-radius: 2px;
        }

        /* Unique solution grid */
        .sol-grid-layout {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: var(--sol-gap);
        }

        /* Unique solution card */
        .sol-treatment-card {
            background: white;
            border-radius: var(--sol-roundness);
            overflow: hidden;
            box-shadow: var(--sol-elevation);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .sol-treatment-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.2);
        }

        .sol-treatment-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-bottom: 3px solid var(--sol-accent);
        }

        .sol-treatment-name {
            padding: 16px;
            text-align: center;
            font-weight: 600;
            color: var(--sol-primary);
            font-size: 1.1rem;
        }

        /* Unique responsive adjustments */
        @media (max-width: 900px) {
            .sol-grid-layout {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .sol-filter-row {
                overflow-x: auto;
                padding-bottom: 12px;
                flex-wrap: nowrap;
            }
        }

        @media (max-width: 600px) {
            .sol-grid-layout {
                grid-template-columns: 1fr;
            }
            
            .sol-page-heading {
                font-size: 1.8rem;
            }
        }


        
    /* Hot deals------------------------------------------------------------------------------ */

    /* Hot Deals Section */
        .hot-deals {
            max-width: 1200px;
            margin: 100px auto;
            padding: 30px;
           
        }
        
        .section-heading {
            font-size: 40px;
            font-weight: 700;
            color: rgb(10, 84, 60);
            margin-bottom: 20px;
            position: relative;
            padding-left: 15px;
        }
        
        .section-heading::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            bottom: 5px;
            width: 4px;
            background: #ff4757;
            border-radius: 2px;
        }
        
        /* Deals Container */
        .deals-container {
            display: flex;
            overflow-x: auto;
            gap: 15px;
            padding-bottom: 15px;
            scroll-snap-type: x mandatory;
        }
        
        /* Hide scrollbar for cleaner look */
        .deals-container::-webkit-scrollbar {
            display: none;
        }
        
        /* Deal Card */
        .deal-card {
            flex: 0 0 280px;
            height: 350px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
            scroll-snap-align: start;
            position: relative;
        }
        
        .deal-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .deal-content {
            padding: 15px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .deal-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #333;
        }
        
        .deal-subtitle {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
        }
        
        .deal-button {
            margin-top: auto;
            background:rgb(10, 84, 60);
            color: white;
            border: none;
            padding: 10px;
            border-radius: 5px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .deal-button:hover {
            background: rgb(177, 93, 8);
        }
        
        /* Offer Badge - Now positioned on top of image */
        .offer-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgb(10, 84, 60);
            color: white;
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        /* Special style for FREE TRIAL badge */
        .free-trial {
            background: rgba(46, 204, 113, 0.9);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .section-heading {
                font-size: 24px;
            }
            
            .deal-card {
                flex: 0 0 250px;
                height: 320px;
            }
            
            .deal-image {
                height: 180px;
            }
        }
        
        @media (max-width: 480px) {
            .section-heading {
                font-size: 22px;
                margin-bottom: 15px;
            }
            
            .deal-card {
                flex: 0 0 220px;
                height: 300px;
            }
            
            .deal-image {
                height: 160px;
            }
            
            .deal-title {
                font-size: 18px;
            }
            
            .offer-badge {
                font-size: 12px;
                padding: 6px 10px;
            }
        }


         /* product section  ................................................................................... */

            /* Products Section */
         
        .products-section {
            max-width: 1200px;
            margin: 100px auto;
            padding: 40px 20px;
            
            /* border: 5px solid black; */
        }
        
        /* Header */
        .section-header {
            margin-bottom: 30px;
            margin-left: 10px;
        }
        
        .section-header h1 {
            font-size: 3rem;
            color: rgb(10, 84, 60);
            margin-bottom: 10px;
           
        
        }
        
        .section-header p {
            color: #666;
            margin-bottom: 50px;
        
        }
        
        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 35px;
            /* border: 5px solid red; */
          
        }
        
        /* Product Card - Your Design */
        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
            transition: all 0.3s;
            /* border: 5px solid green; */
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        /* Offer Badge */
        .offer-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            width: 40px;
            height: 40px;
            background: #e83e8c;
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            font-size: 0.8rem;
            z-index: 2;
        }
        
        /* Product Image */
        .product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
            object-fit: contain;
          
        }
        
        /* Cashback Tag */
        .cashback-tag {
            background: #f8e8ee;
            color:rgb(10, 84, 60);
            padding: 5px 15px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            margin: 10px 0 0 15px;
            border-radius: 4px;
        }
        
        /* Product Info */
        .product-info {
            padding: 0 15px 15px;
        }
        
        .product-title {
            font-size: 0.95rem;
            margin: 5px 0 10px;
            color: #333;
            line-height: 1.4;
            min-height: 60px;
        }
        
        /* Price Section */
        .price-section {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            flex-wrap: wrap;
            /* border: 5px soolid red; */
        }
        
        .current-price {
            color:rgb(10, 84, 60);
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .original-price {
            color: #999;
            text-decoration: line-through;
            font-size: 0.9rem;
        }
        
        .savings {
            color: #28a745;
            font-size: 0.8rem;
            flex-basis: 100%;
        }
        
        /* Action Buttons */
        .action-buttons {
            display: flex;
            gap: 10px;
        }
        
        .btne {
            flex: 1;
            padding: 8px 0;
            border-radius: 4px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
        }
        
        .btn-outline {
            border: 1px solid #e83e8c;
            color: #e83e8c;
            background: white;
        }
        
        .btn-outline:hover {
            background: #f8e8ee;
        }
        
        .btn-primary {
            background:rgb(10, 84, 60);
            color: white;
            border: 1px solid #e83e8c;
        }
        
        .btn-primary:hover {
            background:orangered;
        }
        
        /* See All Link */
        .see-all {
            text-align: center;
            margin-top: 40px;
        }
        
        .see-all a {
            color:rgb(10, 84, 60);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        
        .see-all a:hover {
            text-decoration: underline;
        }
        
       /* Category Links */
        .category-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .category-link {
            padding: 8px 20px;
            background: #f5f5f5;
            border-radius: 20px;
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .category-link:hover,
        .category-link.active {
            background:rgb(10, 84, 60);
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 20px;
               
            }
            
          
        }
        
        @media (max-width: 480px) {
            .products-grid {
                grid-template-columns: 1fr;
               
            }
            
            .action-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
            }
             
             .category-links {
                justify-content: center;
            }
        }


         /* about section ----------------------------------------------------------------------*/

        /* Transformation Section */
        .transformation-section {
            display: flex;
            max-width: 1200px;
            margin: 40px auto;
            background: rgb(100, 1, 1);
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 150px;
            /* border: 5px solid red; */
        }
        
        /* Image Box */
        .image-box {
            flex: 1;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #e0d6d0;
        }
        
        .image-container {
            width: 100%;
            height: 400px;
            background: url('https://vlcc.com/images/landing/plan.svg') center/contain no-repeat;
            /* background-color: #fff; */
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        /* Content Box */
        .content-box {
            flex: 1;
            padding: 60px;
            background: rgb(233, 230, 230);
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: black;
        }
        
        .transformation-heading {
            font-size: 2.2rem;
            margin-bottom: 20px;
            line-height: 1.3;
            font-weight: 600;
        }
        
        .transformation-text {
            font-size: 1.1rem;
            margin-bottom: 30px;
            line-height: 1.6;
            max-width: 400px;
        }
        
        .appointment-btn {
            display: inline-block;
            background: white;
            color:rgb(10, 84, 60);
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            width: fit-content;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .appointment-btn:hover {
            background: #f5f5f5;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .transformation-section {
                flex-direction: column;
                margin: 20px;
            }
            
            .image-container {
                height: 300px;
                background-size: contain;
            }
            
            .content-box {
                padding: 40px;
                text-align: center;
                align-items: center;
            }
            
            .transformation-text {
                max-width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .transformation-heading {
                font-size: 1.8rem;
            }
            
            .content-box {
                padding: 30px 20px;
            }
            
            .image-container {
                height: 250px;
            }
        }



         /* reels section -------------------------------------------------------------------*/

         :root {
            --primary: #2a7f62; 
            --accent: #ff7e33;
            --light: #fff;
        }
        
        /* body {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
        } */
        
        .reels-section-r {
            padding: 1rem 0 1rem 100px; /* 100px left space */
            margin-bottom: 200px;
        }
        
        .section-title-r {
            color: var(--primary);
            font-size: 1.8rem;
            margin: 0 0 1.5rem 0;
            font-weight: 600;
            padding-left: 10px; /* Additional padding for title */
        }
        
        .reels-container {
            display: flex;
            overflow-x: auto;
            gap: 1.2rem;
            padding-bottom: 1rem;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            padding-left: 10px; /* Additional padding for reels */
        }
        
        .reels-container::-webkit-scrollbar {
            display: none;
        }
        
        .reel {
            flex: 0 0 240px; /* Larger containers */
            height: 360px;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            scroll-snap-align: start;
            background-color: #000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            cursor: pointer;
        }
        
        .reel-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.3s ease;
        }
        
        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: var(--light);
            font-size: 3rem;
            opacity: 0.8;
            transition: all 0.3s ease;
            pointer-events: none;
        }
        
        .reel:hover .play-icon {
            opacity: 0;
        }
        
        .reel-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 0.8rem;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            display: flex;
            justify-content: flex-end;
        }
        
        .like-btn {
            color: var(--light);
            background: none;
            border: none;
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.9rem;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 12px;
        }
        
        .like-btn:hover {
            background: rgba(255,255,255,0.1);
        }
        
        .like-btn.liked {
            color: #ff4d89;
        }
        
        .like-btn.liked i {
            animation: pulse 0.3s ease;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }


        /* 
        stories container ----------------------------------------------------------*/

        .real-stories {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            overflow: hidden;
            /* border: 5px solid red; */
         
        }
        
        .section-title {
            font-size: 52px;
            font-weight: 600;
            color: rgb(10, 84, 60);
            margin-bottom: 15px;
        }
        
        .section-description {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
            max-width: 600px;
        }
        
        .category-buttons {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            flex-wrap: wrap;
            overflow-x: auto;
            padding-bottom: 10px;
        }
        
        .category-btn {
            padding: 8px 20px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 20px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
            white-space: nowrap;
            flex-shrink: 0;
        }
        
        .category-btn.active, .category-btn:hover {
            background-color:rgb(10, 84, 60);
            color: white;
            border-color: #ff6b6b;
        }
        
        .testimonials-wrapper {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            -ms-overflow-style: none;
            scrollbar-width: none;
            padding-bottom: 20px;
        }
        
        .testimonials-wrapper::-webkit-scrollbar {
            display: none;
        }
        
        .testimonials-container {
            display: inline-flex;
            gap: 20px;
            padding: 10px 5px;
            min-width: 100%;
        }
        
        .testimonial-card {
            width: 280px;
            flex-shrink: 0;
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-image {
            width: 100%;
            height: 250px;
            border-radius: 8px;
            object-fit: cover;
            margin-bottom: 15px;
        }
        
        .testimonial-text {
            font-size: 14px;
            color: #555;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .testimonial-author {
            font-size: 16px;
            font-weight: 600;
            color: #333;
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 28px;
            }
            
            .testimonial-card {
                width: 260px;
            }
        }


        /* 
        blogs ---------------------------------------------------------------------------*/

                        .blog-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            
        }
        
        .section-title {
            font-size: 42px;
            font-weight: 600;
            color: rgb(10, 84, 60);
            margin-bottom: 30px;
        }
        
        .blog-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .blog-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
        }
        
        .blog-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .blog-content {
            padding: 20px;
        }
        
        .blog-date {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
        }
        
        .blog-excerpt {
            font-size: 16px;
            color: #333;
            line-height: 1.5;
            margin-bottom: 15px;
        }
        
        .see-more {
            text-align: center;
            margin-top: 50px;
        }
        
        .see-more-link {
            display: inline-block;
            color: rgb(10, 84, 60);
            font-weight: 600;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }
        
        .see-more-link:hover {
            color: #ff4f4f;
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 28px;
            }
            
            .blog-container {
                grid-template-columns: 1fr;
            }
        }


         /* map section ------------------------------------------------------------------------------ */

.location-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
          
           
        }
        .city-selector {
            flex: 1;
            min-width: 300px;
        }
        .map-section {
            flex: 2;
            min-width: 300px;
        }
        .map-header {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 10px;
        }
        .map-container {
            height: 500px;
        }
        #location-map {
            height: 100%;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        .explore-btn {
            background-color: rgb(10, 84, 60);
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
        }
        .clinic-list {
            margin-top: 20px;
        }
        .clinic-card {
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 0 5px rgba(0,0,0,0.1);
            transition: transform 0.2s;
        }
        .clinic-card:hover {
            transform: translateY(-5px);
        }
        .location-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            .location-container {
                flex-direction: column;
            }
            .map-container {
                height: 400px;
            }
        }


        /* footer ----------------------------------------------------------------------------------------------*/

         footer {
            background-color: #222;
            color: white;
            padding: 50px 20px 30px;
            width: 100%;
            margin-top: 200px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .footer-about {
            grid-column: 1 / -1;
        }
        
        .footer-logo {
            font-size: 28px;
            font-weight: bold;
            color: #ff6b6b;
            margin-bottom: 20px;
        }
        
        .footer-description {
            font-size: 14px;
            line-height: 1.6;
            color: #bbb;
            margin-bottom: 20px;
            max-width: 600px;
        }
        
        .book-btn {
            display: inline-block;
            background-color: #ff6b6b;
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            margin-bottom: 30px;
            transition: background-color 0.3s;
        }
        
        .book-btn:hover {
            background-color: #ff5252;
        }
        
        .footer-links h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #ff6b6b;
        }
        
        .footer-bottom {
            grid-column: 1 / -1;
            border-top: 1px solid #444;
            padding-top: 30px;
            margin-top: 30px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }
        
        .copyright {
            font-size: 14px;
            color: #bbb;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .social-links a:hover {
            color: #ff6b6b;
        }
        
        .contact-info {
            margin-top: 20px;
            font-size: 14px;
            color: #bbb;
            line-height: 1.6;
        }
        
        .contact-info strong {
            display: block;
            color: #fff;
            margin-bottom: 5px;
            font-size: 16px;
        }
        
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
            
            .footer-about {
                grid-column: 1 / -1;
            }
            
            .footer-bottom {
                flex-direction: column;
            }
        }
        
        @media (max-width: 480px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
        }

         /* --------- pop up concerns  ------------------------------------------------------------------------ */

        

         .service-trigger-text {
            color: #ff6b6b;
            text-decoration: underline;
            cursor: pointer;
            font-weight: 600;
        }
        
        /* First Popup Overlay */
        .concern-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0,0,0,0.5);
            display: none;
            justify-content: flex-end;
            z-index: 1000;
        }
        
        .concern-popup-overlay.active {
            display: flex;
        }
        
        /* Second Popup Overlay */
        .solution-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0,0,0,0.5);
            display: none;
            justify-content: flex-end;
            z-index: 1001;
        }
        
        .solution-popup-overlay.active {
            display: flex;
        }
        
        /* Popup Container Styles */
        .concern-popup-container, .solution-popup-container {
            width: 450px;
            height: 100vh;
            background-color: white;
            padding: 40px 30px;
            overflow-y: auto;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            position: relative;
        }
        
        .concern-popup-overlay.active .concern-popup-container,
        .solution-popup-overlay.active .solution-popup-container {
            transform: translateX(0);
        }
        
        /* Popup Header Styles */
        .popup-header-area {
            margin-bottom: 25px;
            position: relative;
        }
        
        .popup-main-heading {
            font-size: 28px;
            color: #333;
            margin-bottom: 10px;
        }
        
        .popup-subtext {
            font-size: 16px;
            color: #666;
            position: relative;
            padding-bottom: 15px;
        }
        
        .popup-subtext:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #ff6b6b;
        }
        
        /* Close Button */
        .popup-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            color: #999;
            font-weight: bold;
        }
        
        .popup-close-btn:hover {
            color: #ff6b6b;
        }
        
        /* Content Grid Styles */
        .services-grid-layout {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 20px;
        }
        
        .service-card-item {
            background-color: #f9f9f9;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }
        
        .service-card-item:hover {
            background-color: #fff5f5;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .service-card-image {
            width: 100%;
            height: 120px;
            object-fit: cover;
        }
        
        .service-card-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            padding: 15px;
            text-align: center;
        }
        
        /* Back Button */
        .popup-back-btn {
            display: flex;
            align-items: center;
            color: #ff6b6b;
            font-weight: 600;
            margin-bottom: 20px;
            cursor: pointer;
        }
        
        .popup-back-btn svg {
            margin-right: 8px;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .concern-popup-container, .solution-popup-container {
                width: 85%;
            }
            
            .services-grid-layout {
                grid-template-columns: 1fr;
            }
            
            .service-card-image {
                height: 150px;
            }
        }
  

       /* pop up solutions ----------------------------------------------------------------------------------*/

         .trigger-text {
            color: #ff6b6b;
            text-decoration: underline;
            cursor: pointer;
            font-weight: 600;
        }
        
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0,0,0,0.5);
            display: none;
            justify-content: flex-end;
            z-index: 1000;
        }
        
        .main-popup, .solution-popup {
            width: 450px;
            height: 100vh;
            background-color: white;
            padding: 30px;
            overflow-y: auto;
            position: absolute;
            right: 0;
            transition: transform 0.3s ease;
        }
        
        .main-popup {
            transform: translateX(100%);
            z-index: 1001;
        }
        
        .solution-popup {
            transform: translateX(100%);
            z-index: 1002;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        }
        
        .popup-overlay.active .main-popup,
        .popup-overlay.active .solution-popup {
            transform: translateX(0);
        }
        
        .popup-header {
            margin-bottom: 25px;
            position: relative;
        }
        
        .popup-title {
            font-size: 28px;
            color: #333;
            margin-bottom: 10px;
        }
        
        .popup-subtitle {
            font-size: 16px;
            color: #666;
            position: relative;
            padding-bottom: 15px;
        }
        
        .popup-subtitle::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #ff6b6b;
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .content-item {
            background-color: #f9f9f9;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }
        
        .content-item:hover {
            background-color: #fff5f5;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .content-image {
            width: 100%;
            height: 120px;
            object-fit: cover;
        }
        
        .content-name {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            padding: 15px;
            text-align: center;
        }
        
        .back-btn {
            display: flex;
            align-items: center;
            color: #ff6b6b;
            font-weight: 600;
            margin-bottom: 20px;
            cursor: pointer;
        }
        
        .back-btn svg {
            margin-right: 8px;
        }
        
        .close-btn {
            position: absolute;
            top: 0;
            right: 0;
            font-size: 24px;
            cursor: pointer;
            color: #999;
            font-weight: bold;
        }
        
        .close-btn:hover {
            color: #ff6b6b;
        }
        
        /* Hide solution popups by default */
        .solution-content {
            display: none;
        }
        
        @media (max-width: 768px) {
            .main-popup, .solution-popup {
                width: 85%;
            }
            
            .content-grid {
                grid-template-columns: 1fr;
            }
            
            .content-image {
                height: 150px;
            }
        }

/* Book now -----------------------------------------------------------------------------*/

 