               :root {
                   --primary-orange: #FF944D; /* soft orange */
                   --dark-orange: #CC5500;  /* dark burnt orange */
                   --light-orange: #e29747; /* light orange */
                   --accent-gold: #F6E27F; /* pastel gold/yellow */
                      --offer-bg: #c3e9ff;
               }
               * {
                   margin: 0;
                   padding: 0;
                   box-sizing: border-box;
               }
           

               /* body {
                   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif,
                       "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
               } */

               body {
                   font-family: "Montserrat", sans-serif;
               }

               /* Top Contact Bar */
               /* .top-bar {
                   background-color: #f8f9fa;
                   padding: 8px 0;
                   font-size: 14px;
                   border-bottom: 1px solid #dee2e6;
               } */

               header {
                   position: sticky;
                   top: 0;
                   background: white;
                   z-index: 1000;
               }

               .social-media {
                   display: flex;
                   gap: 19px;
               }

               .social-media i {
                   color: var(--primary-orange);
                   /* -webkit-text-stroke: 1px var(--light-orange); */
                   font-size: 20px;
                   transition: all 0.3s ease-in-out;
               }

               .social-media i:hover {
                   transform: translateY(-5px);
               }

               .top-contact {
                   display: flex;
                   justify-content: flex-end;
                   align-items: center;
                   gap: 30px;
               }

               .top-contact-item {
                   display: flex;
                   align-items: center;
                   color: #666;
                   text-decoration: none;
                   font-weight: 500;
                   font-size: 16px;
               }

               .top-contact-item:hover {
                   color: var(--dark-orange);
               }

               .top-contact-item i {
                   margin-right: 8px;
                   color: var(--primary-orange);
                   font-size: 17px;
               }

               /* Main Header */
               .header-container {
                   background-color: #ffffff;
                   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
                   padding: 0;
               }
              

               .navbar {
                   padding: 1px 0;
               }

               /* Logo Styling */
               .logo {
                   display: flex;
                   align-items: center;
                   text-decoration: none;
               }

               .logo-icon {
                   width: 55px;
                   height: 55px;
                   background: linear-gradient(135deg, #2563eb, #1e40af);
                   border-radius: 12px;
                   display: flex;
                   align-items: center;
                   justify-content: center;
                   margin-right: 15px;
                   position: relative;
                   box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
               }

               .logo-icon::before {
                   content: '';
                   width: 28px;
                   height: 28px;
                   background-color: white;
                   border-radius: 50%;
                   position: absolute;
               }

               .logo-icon .stethoscope {
                   position: absolute;
                   z-index: 2;
                   color: #2563eb;
                   font-size: 18px;
               }

               .logo-icon .house {
                   position: absolute;
                   bottom: 8px;
                   right: 8px;
                   z-index: 3;
                   color: #800000;
                   font-size: 12px;
               }

               .logo-text {
                   color: #2563eb;
                   font-weight: 700;
                   font-size: 26px;
                   line-height: 1.1;
               }

               .logo-text .health {
                   display: block;
                   font-size: 28px;
               }

               .logo-text .at-home {
                   display: block;
                   font-size: 22px;
                   margin-top: -2px;
               }

               .logo-text .at {
                   color: #800000;
                   font-weight: 600;
               }

               div#navbarNav {
                   flex-direction: column;
                   align-items: flex-end;
                   gap: 10px;
               }

               /* Navigation Styling */
               .navbar-nav .nav-link {
                   color: #374151 !important;
                   font-weight: 600;
                   font-size: 16px;
                   padding: 12px 18px !important;
                   position: relative;
                   transition: all 0.3s ease;
               }

               .navbar-nav .nav-link:hover {
                   color: var(--primary-orange) !important;
               }

               .navbar-nav .nav-link.active {
                   color: var(--primary-orange) !important;
               }
               /* Show dropdown on hover */
                .nav-item.dropdown:hover .dropdown-menu {
                  display: block;
                  margin-top: 0; /* fix small gap */
                }
                
                /* Keep the Services link highlighted when dropdown is open */
                .nav-item.dropdown:hover > .nav-link {
                  color: var(--primary-orange) !important;   /* or your --primary-orange */
                }



               .dropdown-menu {
                   border: none;
                   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
                   border-radius: 8px;
                   padding: 10px 0;
                   margin-top: 8px;
               }

               .dropdown-item {
                   padding: 10px 20px;
                   font-weight: 500;
                   transition: all 0.3s ease;
               }

               .dropdown-item:hover {
                   background-color: #f8f9fa;
                   color: var(--primary-orange) !important;
                   padding-left: 25px;
               }

               /* Call Us Button */
               .call-us-btn {
                   background: linear-gradient(var(--dark-orange) , var(--light-orange));
                   color: white !important;
                   border: none;
                   padding: 12px 25px;
                   border-radius: 25px;
                   font-weight: 600;
                   font-size: 15px;
                   text-decoration: none;
                   transition: all 0.3s ease;

                   display: flex;
                   align-items: center;
                   gap: 8px;
               }

               .call-us-btn:hover {
                    background:linear-gradient(var(--light-orange) , var(--dark-orange));
                   transform: translateY(-2px);
                   box-shadow: 0 6px 20px rgba(184, 121, 85, 0.4);
                   color: white !important;
               }

               .call-us-btn i {
                   font-size: 14px;
               }

               /* Search Icon */
               .search-btn {
                   background: none;
                   border: none;
                   color: #6c757d;
                   font-size: 18px;
                   margin-right: 15px;
                   padding: 8px;
                   border-radius: 50%;
                   transition: all 0.3s ease;
               }

               .search-btn:hover {
                   background-color: #f8f9fa;
                   color: #800000;
               }

               /* Mobile Styles */
               .navbar-toggler {
                   border: none;
                   padding: 6px 10px;
                   border-radius: 6px;
               }

               .navbar-toggler:focus {
                   box-shadow: none;
               }

               .navbar-toggler-icon {
                   background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
               }

               @media (max-width: 1024px) {
                   .nav-section {
                       flex-direction: column;
                       flex-wrap: wrap;
                       justify-content: center;
                       padding-bottom: 10px;
                   }
               }

               @media (max-width: 991.98px) {
                   /* .top-bar {
                       display: none;
                   } */

                   .logo-text .health {
                       font-size: 24px;
                   }

                   .logo-text .at-home {
                       font-size: 20px;
                   }

                   .navbar-collapse {
                       margin-top: 15px;
                       padding-top: 15px;
                       border-top: 1px solid #dee2e6;
                   }

                   .call-us-btn {
                       margin-top: 15px;
                       text-align: center;
                       display: inline-flex;
                       justify-content: center;

                   }

                   .search-btn {
                       display: none;
                   }



               }

               @media (max-width: 576px) {
                   .logo-icon {
                       width: 45px;
                       height: 45px;
                   }

                   .logo-text .health {
                       font-size: 20px;
                   }

                   .logo-text .at-home {
                       font-size: 18px;
                   }

                   .nav-section {
                       flex-direction: column;
                   }
               }


               /* landing */

               .main-landing {
                   background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                       url("landing-bg.jfif");
                   height: 300px;
                   background-position: top;
                   background-size: cover;
                   background-repeat: no-repeat;
                   display: flex;
                   align-items: center;
               }

               .landing {
                   position: relative;
                   z-index: 9999;
               }

               .landing h1 {
                   color: white;
                   font-weight: 700;
               }


               /* Hero Section */
               .hero-section {
                  background-image: 
                       url("final (2).png");
                   color: white;
                   padding: 100px 0 100px;
                   position: relative;
                   overflow: hidden;
                   background-position:top;
                   background-repeat: no-repeat;
                   background-size: cover;
               }
                .hero-section .col-lg-10{
                        padding: 20px 30px;
                        border-radius: 10px;
                        background: rgb(45 99 159 / 38%);
                }


               .hero-content {
                   position: relative;
                   z-index: 2;
               }

               .hero-title {
                   font-size: 3.5rem;
                   font-weight: 700;
                   margin-bottom: 1.5rem;
                   background: linear-gradient(45deg, #fff, var(--accent-gold));

                   background-clip: text;
               }

               .hero-subtitle {
                   font-size: 1.3rem;
                   margin-bottom: 2rem;
                   opacity: 0.9;
               }

               .btn-custom {
                   background: var(--accent-gold);
                   color: var(--primary-orange);
                   font-weight: bold;
                   padding: 12px 30px;
                   border-radius: 50px;
                   border: none;
                   transition: all 0.3s ease;
                   text-transform: uppercase;
                   letter-spacing: 1px;
               }

               .btn-custom:hover {
                   background: #ffed4a;
                   color: var(--light-orange);
                   transform: translateY(-3px);
                   box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
               }

               /* Mission Section */
               .mission-section {
                   padding: 80px 0;
                   background: white;
               }

               .section-title {
                   color: #2d639f;
                   font-size: 2.2rem;
                   font-weight: 700;
                   text-align: center;
                   margin-bottom: 3rem;
                   position: relative;
                   text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
               }

               .section-title::after {
                   content: '';
                   position: absolute;
                   bottom: -10px;
                   left: 50%;
                   transform: translateX(-50%);
                   width: 80px;
                   height: 4px;
                   background: #2d639f;
                   border-radius: 2px;
               }
               .section-title1 {
                    color: #2d639f;
                    font-weight: bold;
                    font-size: 2.2rem !important;
                    margin-bottom: 2rem !important;
                    margin-top: 0 !important;
                    text-align: center;
                    position: relative;
                }
               .section-title::after {
                   content: '';
                   position: absolute;
                   bottom: -10px;
                   left: 50%;
                   transform: translateX(-50%);
                   width: 80px;
                   height: 4px;
                   background: #2d639f;
                   border-radius: 2px;
               }
               .row{
                   row-gap: 15px;
               }

               /* Why Skin Checks Matter */
               .skin-checks-section {
                   padding: 80px 0;
                   /* background: #FFF2DFC4; */
                   background-color: #f7e8d3;
               }

               .stats-card {
                   background: white;
                   border-radius: 15px;
                   padding: 2rem;
                   text-align: center;
                   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                   transition: all 0.3s ease;
                   height: 100%;
               }

               .stats-card:hover {
                   transform: translateY(-10px);
                   box-shadow: 0 20px 40px rgba(128, 0, 0, 0.15);
               }

               .stats-number {
                   font-size: 3rem;
                   font-weight: bold;
                   color: var(--primary-orange);
                   margin-bottom: 0.5rem;
               }

               .stats-text {
                   color: #666;
                   font-size: 0.9rem;
               }

               /* Why Choose Us Section */
               .choose-us-section {
                   padding: 80px 0;
                   background: #f7e8d3;
               }

               .feature-card {
                   background: white;
                   border-radius: 15px;
                   padding: 2rem;
                   text-align: center;

                   transition: all 0.3s ease;
                   height: 100%;
                       display: flex;
                flex-direction: column;
                align-items: center;

                   /* border-top: 4px solid var(--primary-orange); */
               }

               /* .feature-card:hover {
                   transform: translateY(-5px);
                   box-shadow: 0 15px 35px rgba(128, 0, 0, 0.12);
               } */

               .feature-icon {
                   /* width: 80px;
                   height: 80px; */
                   /* background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange)); */
                   /* border-radius: 50%; */
                   display: flex;
                   align-items: center;
                   justify-content: center;
                   margin: 0 auto 1.5rem;
                   color: var(--primary-orange);
                   font-size: 3rem;

               }

               .feature-icon i {
                   color: transparent;
                   /* hide fill */
                   -webkit-text-stroke: 2px var(--primary-orange);
                   /* stroke width + color */
                   font-size: 40px;
                   /* adjust size if needed */
               }

               .feature-title {
                   color: var(--primary-orange);
                   font-size: 1.4rem;
                   font-weight: bold;
                   margin-bottom: 1rem;
               }

               .feature-text {
                   color: #666;
                   line-height: 1.6;
                       
               }


               /* Footer */
               .footer {
                   background: white;
                   color: black;
                   padding: 40px 0 20px;
                   text-align: center;
                   box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
                   /* shadow on top */
               }

               .footer-links {
                   margin-bottom: 2rem;
               }

               .footer-links a {
                   color: black;
                   text-decoration: none;
                   margin: 0 1rem;
                   transition: color 0.3s ease;
               }

               .footer-links a:hover {
                   color: var(--dark-orange);
               }

               /* Animations */
               .fade-in-up {
                   animation: fadeInUp 0.8s ease-out;
               }

               @keyframes fadeInUp {
                   from {
                       opacity: 0;
                       transform: translateY(30px);
                   }

                   to {
                       opacity: 1;
                       transform: translateY(0);
                   }
               }

               /* Responsive adjustments */
               @media (max-width: 768px) {
                   .hero-title {
                       font-size: 2.5rem;
                   }

                   .hero-subtitle {
                       font-size: 1.1rem;
                   }

                   .section-title {
                       font-size: 2rem;
                   }
                    .section-title1 {
                       font-size: 2rem;
                   }
                   

               }

               @media (min-width: 992px) {
                   .navbar-expand-lg .navbar-collapse {
                       flex-wrap: wrap;
                       justify-content: center;
                   }
               }


               .services-section {
                   background: white;
                   color: white;
                   padding: 60px 0;
                   position: relative;
                   overflow: hidden;
               }

               .services-section::before {
                   content: '';
                   position: absolute;
                   top: 0;
                   left: 0;
                   right: 0;
                   bottom: 0;
                   background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,215,0,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
                   opacity: 0.3;
               }

               .services-section .container {
                   position: relative;
                   z-index: 2;
               }

               /* .section-title {
                   text-align: center;
                   font-size: 2.5rem;
                   font-weight: 700;
                   margin-bottom: 50px;
                   color: var(--accent-gold);
                   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
               } */

               .service-category {
                   background: rgba(255, 255, 255, 0.1);
                   backdrop-filter: blur(10px);
                   /*border: 2px solid var(--light-orange);*/
                   border-radius: 15px;
                   padding: 30px;
                   margin-bottom: 30px;
                   height: 100%;
                   transition: all 0.3s ease;
                   box-shadow:0 10px 20px rgba(0, 0, 0, 0.15);

               }

               .service-category:hover {
                   transform: translateY(-10px);

                 
               }

               .service-category:hover h3 {
                   color: #2d639f;
                   border-bottom: 2px solid #2d639f;
               }



               .service-category:hover i {
                   -webkit-text-stroke: 1px #2d639f;
               }

               .service-category i {
                   color: transparent;
                   -webkit-text-stroke: 1px #2d639f;
               }

               .service-category h3 {
                   color: #2d639f;
                   font-size: 1.4rem;
                   font-weight: 700;
                   margin-bottom: 20px;
                   text-align: center;
                   border-bottom: 2px solid #2d639f;
                   padding-bottom: 10px;
               }

               .service-item {
                   background: rgba(255, 255, 255, 0.1);
                   margin-bottom: 10px;
                   padding: 12px 15px;
                   border-radius: 8px;

                   transition: all 0.3s ease;
                   cursor: pointer;
                   color: black;
               }

               /*.service-item:hover {*/
               /*    background: rgb(255 192 112 / 20%);*/
                   /*transform: translateX(5px);*/
               /*}*/

               .service-item:last-child {
                   margin-bottom: 0;
               }

               .tools-section {
                   background: white;
                   padding: 60px 0;
                   box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
               }

               .tools-title {
                   color: var(--primary-orange);
                   font-size: 2.2rem;
                   font-weight: 700;
                   margin-bottom: 40px;
                   position: relative;
               }

               .tools-title::after {
                   content: '';
                   position: absolute;
                   bottom: -10px;
                   left: 7%;
                   transform: translateX(-50%);
                   width: 80px;
                   height: 4px;
                   background: linear-gradient(90deg, var(--primary-orange), var(--accent-gold));
                   border-radius: 2px;
               }

               .tools-title1 {
                   color: var(--primary-orange);
                   font-size: 2.2rem;
                   font-weight: 700;
                   margin-bottom: 40px;
                   position: relative;
               }

               .tools-title1::after {
                   content: '';
                   position: absolute;
                   bottom: -10px;
                   left: 10%;
                   transform: translateX(-50%);
                   width: 80px;
                   height: 4px;
                   background: linear-gradient(90deg, var(--primary-orange), var(--accent-gold));
                   border-radius: 2px;
               }


               .tool-item {
                   background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
                   border: 2px solid var(--light-orange);
                   border-radius: 10px;
                   padding: 20px;
                   margin-bottom: 15px;
                   transition: all 0.3s ease;
                   cursor: pointer;
                   position: relative;
                   overflow: hidden;
               }

               .tool-item::before {
                   content: '';
                   position: absolute;
                   top: 0;
                   left: -100%;
                   width: 100%;
                   height: 100%;
                   background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
                   transition: left 0.5s;
               }

               .tool-item:hover {
                   transform: translateY(-5px);
                   box-shadow: 0 10px 25px rgba(128, 0, 0, 0.2);
                   border-color: var(--primary-orange);
               }

               .tool-item:hover::before {
                   left: 100%;
               }

               .tool-item i {
                   color: var(--primary-orange);
                   font-size: 1.5rem;
                   margin-right: 15px;
                   transition: color 0.3s ease;
               }

               .tool-item:hover i {
                   color: var(--primary-orange);
               }

               .accreditation-section {
                   background: var(--primary-orange);
                   padding: 50px 0;
                   color: white;
               }


               .find-us-btn {
                   background: var(--primary-orange);
                   color: white;
                   border: none;
                   padding: 15px 30px;
                   border: 1px solid var(--primary-orange);
                   border-radius: 50px;
                   font-weight: 700;
                   font-size: 1.1rem;
                   transition: all 0.3s ease;

               }

               .find-us-btn:hover {
                   background: white;
                   color: var(--primary-orange);
                   transform: translateY(-3px);

                   box-shadow: 0 8px 20px rgba(120, 35, 9, 0.5);
               }

               @media (max-width: 768px) {
                   .section-title {
                       font-size: 2rem;
                   }

                   .service-category {
                       padding: 20px;
                   }
               }




               .logos-section {
                   display: flex;
                   align-items: center;
                   justify-content: center;
                   padding: 20px;
               }

               .logos-slider {
                   background: rgba(255, 255, 255, 0.95);
                   border-radius: 20px;
                   padding: 40px 20px;
                   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
                   position: relative;
                   overflow: hidden;
               }

               .swiper {
                   width: 100%;
                   height: 200px;
                   padding: 20px 0;
               }

               .swiper-slide {
                   display: flex;
                   justify-content: center;
                   align-items: center;
                   background: rgba(128, 0, 0, 0.02);
                   border-radius: 15px;
                   transition: all 0.3s ease;
                   margin: 0 10px;
                   border: 2px solid transparent;
               }

               .swiper-slide:hover {
                   background: rgba(128, 0, 0, 0.08);
                   border-color: var(--primary-orange);
                   transform: translateY(-5px);
                   box-shadow: 0 10px 25px rgba(128, 0, 0, 0.15);
               }

               .logo-item {
                   display: flex;
                   justify-content: center;
                   align-items: center;
                   width: 100%;
                   height: 120px;
                   padding: 20px;
               }

               .logo-item img {
                   max-width: 180px;
                   max-height: 100px;
                   width: auto;
                   height: auto;
                   object-fit: contain;
                   filter: grayscale(0.2) brightness(1.1);
                   transition: all 0.3s ease;
               }

               .logo-item:hover img {
                   filter: grayscale(0) brightness(1.2);
                   transform: scale(1.05);
               }

               .swiper-button-next,
               .swiper-button-prev {
                   color: white;
                   background: var(--primary-orange);
                   width: 50px;
                   height: 50px;
                   border-radius: 50%;
                   box-shadow: 0 4px 15px rgba(128, 0, 0, 0.3);
                   transition: all 0.3s ease;
                   border: 1px solid var(--primary-orange);
               }

               .swiper-button-next:hover,
               .swiper-button-prev:hover {
                   background: white;
                   color: var(--primary-orange);
                   transform: scale(1.1);
                   border: 1px solid var(--primary-orange);
               }

               .swiper-button-next:after,
               .swiper-button-prev:after {
                   font-size: 18px;
                   font-weight: bold;
               }

               .swiper-pagination-bullet {
                   background: var(--primary-orange);
                   opacity: 0.5;
                   width: 12px;
                   height: 12px;
                   margin: 0 6px;
                   transition: all 0.3s ease;
               }

               .swiper-pagination-bullet-active {
                   background: var(--accent-gold);
                   opacity: 1;
                   transform: scale(1.3);
               }

               .swiper-pagination {
                   bottom: -10px;
               }

               @media (max-width: 768px) {
                   .section-title {
                       font-size: 2rem;
                       margin-bottom: 2rem;
                   }

                   .logos-slider {
                       padding: 30px 15px;
                   }

                   .logo-item img {
                       max-width: 140px;
                       max-height: 80px;
                   }

                   .swiper {
                       height: 160px;
                   }

                   .logo-item {
                       height: 100px;
                   }
               }




            
/* about page */
.content-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}

.highlight-section {
    background: #f7e8d3;
    padding: 60px 0;
}

.cta-section {
    background: white;
   
    padding: 60px 0;
    text-align: center;
}
.book-section{
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
  
}





.feature-highlight {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.feature-highlight:hover {
 
    transform: translateX(5px);
   
}


@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .content-section {
        padding: 60px 0;
    }

    .content-paragraph {
        text-align: left;
    }
}

.content-section {
    padding: 80px 0;
    background: white;
}

/*.nav-link.active {*/
  color: #ff6600 !important;   /* your custom color */
  font-weight: 600;            /* optional: make it bold */
  border-bottom: 2px solid #ff6600; /* optional underline effect */
/*}*/


