 body {
     font-family: 'Roboto', sans-serif;
 }

 h1,
 h2,
 h3,
 .navbar-nav .nav-link {
     font-family: 'Montserrat', sans-serif;
 }

 :root {
     --primary-color: #015AA0;
     --accent-color: #E57614;
 }

 .orange {
     color: var(--accent-color);
 }

 /* Header */
 .navbar-brand img {
     height: 70px;
 }

 .text-primary {
     color: var(--primary-color) !important;
 }

 .btn-secondary {
     background-color: var(--accent-color);
     border: none;
     color: #fff;
     padding: 8px 18px;
     border-radius: 20px;
     text-decoration: none;
 }

 .btn-secondary:hover {
     background-color: var(--primary-color);
     color: #fff;
 }

 .text-secondary {
     color: var(--accent-color) !important;
 }

 .book-btn {
     background-color: var(--accent-color);
     color: #fff;
     padding: 8px 18px;
     border-radius: 20px;
     text-decoration: none;
 }

 .book-btn:hover {
     background-color: var(--primary-color);
     color: #fff;

 }

 /* Hero Slider */
 .carousel-item img {
     width: 100%;
     height: 80vh;
     object-fit: cover;
 }

 .navbar-nav .nav-link {
     text-transform: uppercase;
     font-weight: 50;
     font-size: 15px;
     letter-spacing: 0.5px;
     color: var(--primary-color);
 }

 .navbar-nav .nav-link:hover {
     color: var(--accent-color);
 }

 /* Mobile Fix */
 @media (max-width: 768px) {
     .carousel-item img {
         height: 250px;
         object-fit: cover;
     }

     .book-btn {
         display: none;
     }
 }

 /* Dropdown Animation */
 .dropdown-menu {
     display: block;
     opacity: 0;
     visibility: hidden;
     transform: translateY(15px);
     transition: all 0.3s ease;
     border-radius: 8px;
     padding: 10px 0;
 }

 /* Default (hidden state for desktop animation only) */
 @media (min-width: 992px) {
     .dropdown-menu {
         display: block;
         opacity: 0;
         visibility: hidden;
         transform: translateY(15px);
         transition: all 0.3s ease;
         border-radius: 8px;
         padding: 10px 0;
     }

     .navbar .dropdown:hover .dropdown-menu {
         opacity: 1;
         visibility: visible;
         transform: translateY(0);
     }
 }

 /* Mobile fix (IMPORTANT) */
 @media (max-width: 991px) {
     .dropdown-menu {
         display: none;
         opacity: 1 !important;
         visibility: visible !important;
         transform: none !important;
     }

     .dropdown-menu.show {
         display: block;
     }
 }

 /* Dropdown Item Animation */
 .dropdown-item {
     transition: all 0.3s ease;
 }

 /* Hover Effect on Items */
 .dropdown-item:hover {
     background-color: var(--primary-color);
     color: #fff;
     padding-left: 25px;
     /* slide effect */
 }

 /* Top Header */
 .top-header {
     background: var(--primary-color);
     color: #fff;
     font-size: 13px;
     padding: 8px 0;
 }

 /* Left & Right spacing */
 .top-header span {
     margin-right: 20px;
     display: flex;
     align-items: center;
     gap: 6px;
 }

 /* Icons */
 .top-header i {
     /* color: var(--primary-color); */
     color: #fff;
 }

 .top-header i:hover {
     color: var(--accent-color);

 }

 /* Social Icons */
 .social-icons a {
     color: #fff;
     margin-left: 12px;
     font-size: 15px;
     transition: 0.3s;
     text-decoration: none;
 }

 .social-icons a:hover {
     color: var(--accent-color);
 }

 /* Mobile Fix */
 @media (max-width: 768px) {
     .top-header .d-flex {
         flex-direction: column;
         align-items: flex-start;
         gap: 5px;
     }

     .top-header span {
         margin-right: 10px;
     }

     .social-icons {
         margin-top: 5px;
     }

     .top-header {
         display: none;
     }
 }


 /* ================= HERO SLIDER ================= */

 #heroCarousel {
     position: relative;
     overflow: hidden;
 }

 /* Banner Image */
 #heroCarousel .carousel-item img {
     width: 100%;
     height: 100vh;
     object-fit: cover;
     object-position: center;
 }

 /* Overlay Optional */
 #heroCarousel::before {
     content: "";
     position: absolute;
     inset: 0;
     background: rgba(0, 0, 0, 0.15);
     z-index: 1;
 }

 /* Controls Above Overlay */
 #heroCarousel .carousel-control-prev,
 #heroCarousel .carousel-control-next {
     z-index: 2;
 }

 /* ================= LARGE SCREEN ================= */
 @media (min-width: 1400px) {

     #heroCarousel .carousel-item img {
         height: 75vh;
     }

 }

 /* ================= LAPTOP ================= */
 @media (max-width: 1199px) {

     #heroCarousel .carousel-item img {
         height: 75vh;
     }

 }

 /* ================= TABLET ================= */
 @media (max-width: 991px) {

     #heroCarousel .carousel-item img {
         height: 60vh;
     }

 }


 /* ================= ABOUT DOCTOR SECTION ================= */

 .about-doctor {
     background: #f8fbff;
     position: relative;
     overflow: hidden;
 }

 /* Left Card */
 .doctor-card {
     position: relative;
 }

 /* Main Image */
 .doctor-main-img img {
     width: 100%;
     border-radius: 30px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
     transition: 0.4s ease;
 }

 .doctor-main-img img:hover {
     transform: translateY(-5px);
 }

 /* Experience Badge */
 .experience-badge {
     position: absolute;
     top: 25px;
     left: -20px;
     background: #E57614;
     color: #fff;
     padding: 18px 22px;
     border-radius: 20px;
     text-align: center;
     box-shadow: 0 10px 25px rgba(229, 118, 20, 0.3);
 }

 .experience-badge span {
     display: block;
     font-size: 40px;
     font-weight: 700;
     line-height: 1;
 }

 .experience-badge small {
     font-size: 14px;
     font-weight: 500;
 }

 /* Floating Card */
 .floating-social-card {
     position: absolute;
     right: -20px;
     bottom: 30px;
     background: #fff;
     padding: 18px 20px;
     border-radius: 18px;
     box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
     width: 260px;
     transition: 0.3s ease;
 }

 .floating-social-card:hover {
     transform: translateY(-5px);
 }

 .social-icon {
     width: 50px;
     height: 50px;
     background: #015AA0;
     color: #fff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 14px;
     font-size: 20px;
 }

 /* Right Content Card */
 .doctor-content-card {
     background: #fff;
     padding: 40px;
     border-radius: 30px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
 }

 /* Tag */
 .doctor-tag {
     display: inline-block;
     background: rgba(1, 90, 160, 0.08);
     color: #015AA0;
     padding: 8px 18px;
     border-radius: 50px;
     font-weight: 600;
     margin-bottom: 18px;
 }

 /* Title */
 .doctor-title {
     font-size: 42px;
     font-weight: 700;
     color: #111;
     margin-bottom: 10px;
 }

 /* Subtitle */
 .doctor-subtitle {
     font-size: 18px;
     font-weight: 600;
     color: #E57614;
     margin-bottom: 25px;
 }

 /* List */
 .doctor-info-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .doctor-info-list li {
     position: relative;
     padding-left: 34px;
     margin-bottom: 18px;
     line-height: 1.8;
     color: #555;
 }

 .doctor-info-list li i {
     position: absolute;
     left: 0;
     top: 7px;
     color: #015AA0 !important;
 }

 /* Button */
 .doctor-btn {
     display: inline-flex;
     align-items: center;
     background: #015AA0;
     color: #fff;
     padding: 14px 28px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 600;
     transition: 0.3s ease;
 }

 .doctor-btn:hover {
     background: #E57614;
     color: #fff;
     transform: translateY(-3px);
 }

 /* Responsive */
 @media (max-width: 991px) {

     .doctor-title {
         font-size: 32px;
     }

     .floating-social-card {
         position: relative;
         right: 0;
         bottom: 0;
         width: 100%;
         margin-top: 20px;
     }

     .experience-badge {
         left: 15px;
         top: 15px;
     }

 }

 @media (max-width: 767px) {

     .doctor-content-card {
         padding: 25px;
     }

     .doctor-title {
         font-size: 28px;
     }

     .experience-badge span {
         font-size: 28px;
     }

 }

 /* ================= MOBILE ================= */
 @media (max-width: 767px) {

     #heroCarousel .carousel-item img {
         height: auto;
         /* min-height: 240px;
         max-height: 420px; */
         object-fit: contain;
         background: #f5f5f5;
     }

     #heroCarousel .carousel-control-prev-icon,
     #heroCarousel .carousel-control-next-icon {
         width: 1.5rem;
         height: 1.5rem;
     }

 }



 /* video */
 /* ================= HERO VIDEO SECTION ================= */

 .hero-video-section {
     position: relative;
     width: 100%;
     height: 80vh;
     overflow: hidden;
     display: flex;
     align-items: center;
 }

 /* Background Video */
 .hero-video {
     position: absolute;
     top: 50%;
     left: 50%;
     width: 100%;
     height: 100%;
     object-fit: cover;
     transform: translate(-50%, -50%);
 }

 /* Overlay */
 .hero-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to right,
             rgba(0, 0, 0, 0.8),
             rgba(0, 0, 0, 0.25));
     z-index: 1;
 }

 /* Content */
 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 700px;
     color: #fff;
 }

 /* Tag */
 .hero-tag {
     display: inline-block;
     background: rgba(229, 118, 20, 0.15);
     border: 1px solid rgba(255, 255, 255, 0.15);
     padding: 10px 22px;
     border-radius: 50px;
     font-size: 14px;
     font-weight: 600;
     margin-bottom: 25px;
     backdrop-filter: blur(10px);
 }

 /* Heading */
 .hero-content h1 {
     font-size: 44px;
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 20px;
 }

 /* Paragraph */
 .hero-content p {
     font-size: 18px;
     line-height: 1.8;
     margin-bottom: 35px;
     color: rgba(255, 255, 255, 0.85);
 }

 /* Buttons */
 .hero-btn-group {
     display: flex;
     gap: 18px;
     flex-wrap: wrap;
 }

 .hero-btn {
     padding: 15px 34px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 600;
     transition: 0.3s ease;
 }

 /* Primary */
 .primary-btn {
     background: #E57614;
     color: #fff;
 }

 .primary-btn:hover {
     background: #c95f06;
     color: #fff;
     transform: translateY(-3px);
 }

 /* Secondary */
 .secondary-btn {
     border: 2px solid #fff;
     color: #fff;
 }

 .secondary-btn:hover {
     background: #fff;
     color: #111;
 }

 /* ================= LAPTOP ================= */
 @media (max-width: 1199px) {

     .hero-content h1 {
         font-size: 52px;
     }

 }

 /* ================= TABLET ================= */
 @media (max-width: 991px) {

     .hero-video-section {
         height: 80vh;
     }

     .hero-content h1 {
         font-size: 42px;
     }

 }

 /* ================= MOBILE ================= */
 @media (max-width: 767px) {

     .hero-video-section {
         height: auto;
         padding: 80px 0;
         object-fit: cover;
     }

     .hero-overlay {
         background: rgba(0, 0, 0, 0.55);
     }

     .hero-content {
         text-align: center;
         max-width: 100%;
     }

     .hero-content h1 {
         font-size: 30px;
         line-height: 1.4;
     }

     .hero-content p {
         font-size: 15px;
     }

     .hero-btn-group {
         justify-content: center;
     }

     .hero-btn {
         width: 100%;
         text-align: center;
     }

 }




 .doctor-info-list {
     padding: 0;
     margin: 0;
     list-style: none;
 }

 .doctor-info-list li {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     margin-bottom: 18px;
     line-height: 1.2;
     color: #555;
 }

 .doctor-info-list li i {
     margin-top: 6px;
     font-size: 15px;
 }

 .exp-card {
     background: #fff;
     padding: 20px;
     border-radius: 10px;
     text-align: center;
     transition: 0.3s ease;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
 }

 .exp-card img {
     border-radius: 8px;
     margin-bottom: 15px;
 }

 .exp-card h5 {
     color: var(--primary-color);
     font-weight: 600;
     margin-bottom: 10px;
 }

 .exp-card p {
     font-size: 16px;
     color: #555;
 }

 .exp-card:hover {
     transform: translateY(-5px);
 }

 .about-doctor {
     background: #f8fbff;
 }

 .doctor-img img {
     border-radius: 12px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .about-doctor h2 {
     color: var(--primary-color);
     font-weight: 700;
 }

 .about-doctor p {
     font-size: 16px;
     color: #444;
     margin-bottom: 10px;
 }


 .awards-section {
     background: #015AA0;
     padding: 70px 0 !important;
 }

 .awards-section h2 {
     color: #fff;
     font-weight: 700;
     margin-bottom: 60px;
     text-align: center;

 }

 .award-card {
     text-align: center;
     padding: 15px;
     background: #f8fbff;
     border-radius: 10px;
     transition: 0.3s ease;
     height: 100%;
 }

 .award-card img {
     height: 60px;
     /* small logo size */
     margin-bottom: 10px;
 }

 .award-card p {
     font-size: 15px;
     color: #444;
     margin: 0;
 }

 .award-card:hover {
     transform: translateY(-5px);
 }


 .membership-section {
     background: #f8fbff;
 }

 .membership-section h2 {
     color: var(--primary-color);
     font-weight: 700;
 }

 /* Card */
 .membership-card {
     display: flex;
     align-items: flex-start;
     gap: 15px;
     background: #fff;
     padding: 18px;
     border-radius: 12px;
     transition: 0.3s ease;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
     height: 100%;
 }

 /* Icon */
 .membership-card .icon {
     min-width: 45px;
     height: 45px;
     background: var(--primary-color);
     color: #fff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 18px;
 }

 /* Text */
 .membership-card p {
     margin: 0;
     font-size: 15px;
     color: #444;
 }

 /* Hover */
 .membership-card:hover {
     transform: translateY(-5px);
 }


 .treatment-section {
     background: var(--accent-color);
 }

 .treatment-section h2 {
     color: #fff;
     font-weight: 700;
 }

 /* Card */
 .treatment-card {
     position: relative;
     overflow: hidden;
     border-radius: 12px;
     cursor: pointer;
 }

 /* Image */
 .treatment-card img {
     width: 100%;
     height: 250px;
     object-fit: cover;
     transition: transform 0.4s ease;
 }

 /* Overlay */
 .treatment-card .overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     padding: 15px;
     background: linear-gradient(to top, #11243e, transparent);
     color: #fff;
 }

 .treatment-card .overlay h5 {
     margin: 0;
     font-size: 18px;
 }

 /* Hover Effect */
 .treatment-card:hover img {
     transform: scale(1.3);
 }

 .research-section {
     background: #f8fbff;
 }

 .research-section h2 {
     color: var(--primary-color);
     font-weight: 700;
 }

 .research-section p {
     color: #666;
 }

 .publication-wrapper {
     position: relative;
     padding-left: 35px;
     border-left: 3px solid var(--primary-color);
 }

 .publication-card {
     position: relative;
     background: #fff;
     padding: 20px;
     border-radius: 12px;
     margin-bottom: 25px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
     transition: 0.3s ease;
 }

 .publication-card:hover {
     transform: translateX(8px);
 }

 .publication-card::before {
     content: "";
     position: absolute;
     left: -44px;
     top: 25px;
     width: 18px;
     height: 18px;
     background: var(--accent-color);
     border-radius: 50%;
     border: 4px solid #fff;
 }

 .pub-year {
     display: inline-block;
     background: var(--primary-color);
     color: #fff;
     padding: 6px 12px;
     border-radius: 30px;
     font-size: 13px;
     margin-bottom: 12px;
 }

 .pub-content h5 {
     font-size: 18px;
     color: var(--primary-color);
     margin-bottom: 10px;
 }

 .pub-content p {
     font-size: 15px;
     margin-bottom: 8px;
     color: #555;
 }

 .pub-content span {
     font-size: 13px;
     color: #777;
     display: block;
 }


 .faq-section {
     background: #001f47;
 }

 .faq-section h2 {
     color: var(--accent-color);
     font-weight: 700;
 }

 /* Accordion Card */
 .custom-accordion .accordion-item {
     border: none;
     margin-bottom: 15px;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
 }

 /* Button */
 .custom-accordion .accordion-button {
     background: #fff;
     font-weight: 500;
     color: #333;
     padding: 15px 20px;
     box-shadow: none;
 }

 /* Active */
 .custom-accordion .accordion-button:not(.collapsed) {
     background: var(--primary-color);
     color: #fff;
 }

 /* Icon rotate effect */
 .custom-accordion .accordion-button::after {
     transition: transform 0.3s ease;
 }

 .custom-accordion .accordion-button:not(.collapsed)::after {
     transform: rotate(180deg);
 }

 /* Body */
 .custom-accordion .accordion-body {
     background: #fff;
     font-size: 15px;
     color: #555;
     padding: 15px 20px;
 }

 .news-section {
     background: #f8fbff;
 }

 .news-section h2 {
     color: var(--primary-color);
     font-weight: 700;
 }

 .news-card {
     background: #fff;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
     transition: 0.3s ease;
 }

 .news-card img {
     width: 100%;
     height: 200px;
     object-fit: cover;
 }

 .news-content {
     padding: 15px;
 }

 .news-content .date {
     font-size: 13px;
     color: var(--accent-color);
     font-weight: 500;
 }

 .news-content h5 {
     margin: 10px 0;
     font-size: 16px;
     color: var(--primary-color);
 }

 .news-content p {
     font-size: 15px;
     color: #555;
 }

 .news-content a {
     font-size: 15px;
     color: var(--primary-color);
     text-decoration: none;
 }

 .news-card:hover {
     transform: translateY(-5px);
 }


 /* Breadcrumb */
 .page-banner {
     background: linear-gradient(rgba(0, 36, 63, 0.85), rgba(0, 73, 128, 0.85));
     background-size: cover;
     background-position: center;
     padding: 80px 0;
     color: #fff;
 }

 .page-banner h1 {
     font-size: 36px;
     font-weight: 700;
     margin-bottom: 10px;
 }

 .breadcrumb {
     background: transparent;
     margin: 0;
 }

 .breadcrumb-item a {
     color: #fff;
     text-decoration: none;
 }

 .breadcrumb-item.active {
     color: #E57614;
 }

 /* Separator */
 .breadcrumb-item+.breadcrumb-item::before {
     color: #fff;
 }

 .why-choose {
     background: #f8fbff;
 }

 .why-choose h2 {
     color: #666;
     font-size: 20px;
 }

 .clinic-title {
     color: var(--primary-color);
     font-weight: 700;
     margin-bottom: 10px;
 }

 .intro-text {
     max-width: 800px;
     margin: 0 auto;
     font-size: 15px;
     color: #555;
 }

 /* Card */
 .why-card {
     background: #fff;
     padding: 20px;
     border-radius: 12px;
     text-align: left;
     display: flex;
     gap: 15px;
     align-items: flex-start;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
     transition: 0.3s ease;
     height: 100%;
 }

 /* Icon */
 .why-card i {
     font-size: 22px;
     color: #fff;
     background: var(--accent-color);
     min-width: 45px;
     height: 45px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
 }

 /* Text */
 .why-card p {
     margin: 0;
     font-size: 15px;
     color: #444;
 }

 /* Hover */
 .why-card:hover {
     transform: translateY(-5px);
 }


 .why-card-2 {
     background: #fff;
     padding: 20px;
     border-radius: 12px;
     text-align: left;
     display: flex;
     gap: 15px;
     align-items: flex-start;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
     transition: 0.3s ease;
     height: 100%;
 }

 /* Icon */
 .why-card-2 i {
     font-size: 22px;
     color: #fff;
     background: var(--primary-color);
     min-width: 45px;
     height: 45px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
 }

 /* Text */
 .why-card-2 p {
     margin: 0;
     font-size: 15px;
     color: #444;
 }

 /* Hover */
 .why-card-2:hover {
     transform: translateY(-5px);
 }

 /* Full Section */
 .services-split {
     display: flex;
     min-height: 100vh;
 }

 /* LEFT SIDE */
 .services-left {
     width: 50%;
     background: var(--accent-color);
     display: flex;
     align-items: center;
     padding: 60px;
 }

 .services-content h2 {
     color: var(--primary-color);
     font-weight: 700;
     margin-bottom: 30px;
 }

 /* GRID */
 .services-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 15px;
 }

 /* ITEM */
 .service-item {
     background: #fff;
     padding: 14px 16px;
     border-radius: 8px;
     font-size: 15px;
     color: #333;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: 0.3s ease;
     cursor: pointer;
 }

 /* Hover */
 .service-item:hover {
     background: var(--primary-color);
     color: #fff;
     transform: translateY(-3px);
 }

 /* RIGHT SIDE */
 .services-right {
     width: 50%;
 }

 .services-right img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 @media (max-width: 992px) {
     .services-split {
         flex-direction: column;
     }

     .services-left,
     .services-right {
         width: 100%;
     }

     .services-left {
         padding: 40px 20px;
     }

     .services-right img {
         height: 300px;
     }
 }

 /* ================= VIDEO TESTIMONIAL ================= */

 .video-testimonials {
     background: #f8fbff;
 }

 .video-testimonials h2 {
     color: var(--primary-color);
     font-weight: 700;
 }

 .video-testimonials p {
     color: #666;
     font-size: 15px;
 }

 /* Card */
 .video-card-small {
     background: #fff;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
     transition: 0.3s ease;
 }

 .video-card-small:hover {
     transform: translateY(-5px);
 }

 /* Reel Size Video */
 .video-wrapper-small {
     position: relative;
     width: 100%;
     padding-bottom: 170%;
     /* Reel Ratio */
     overflow: hidden;
 }

 /* iframe */
 .video-wrapper-small iframe {
     position: absolute;
     width: 100%;
     height: 100%;
     left: 0;
     top: 0;
 }

 /* Mobile */
 @media (max-width: 768px) {

     .video-wrapper-small {
         padding-bottom: 180%;
     }

 }


 /* ================= CONTACT SECTION ================= */

 .contact-section {
     background: #f8fbff;
 }

 .contact-section h2 {
     color: var(--primary-color);
     font-weight: 700;
 }

 .contact-section p {
     color: #666;
 }

 /* LEFT BOX */
 .contact-info-box {
     background: #fff;
     padding: 35px;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
 }

 /* Contact Block */
 .contact-block {
     display: flex;
     gap: 18px;
     margin-bottom: 30px;
 }

 /* Icon */
 .contact-block .icon {
     width: 55px;
     height: 55px;
     min-width: 55px;
     border-radius: 50%;
     background: var(--primary-color);
     color: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 22px;
 }

 /* Heading */
 .contact-block h5 {
     color: var(--primary-color);
     margin-bottom: 8px;
 }

 /* Links */
 .contact-block a {
     display: block;
     text-decoration: none;
     color: #444;
     margin-bottom: 5px;
     transition: 0.3s;
 }

 .contact-block a:hover {
     color: var(--accent-color);
 }

 /* Buttons */
 .contact-buttons {
     display: flex;
     gap: 15px;
     flex-wrap: wrap;
     margin-bottom: 35px;
 }

 /* Appointment Button */
 .appointment-btn {
     background: var(--primary-color);
     color: #fff;
     padding: 12px 20px;
     border-radius: 8px;
     text-decoration: none;
     transition: 0.3s;
 }

 /* Consultant Button */
 .consult-btn {
     background: #25D366;
     color: #fff;
     padding: 12px 20px;
     border-radius: 8px;
     text-decoration: none;
     transition: 0.3s;
 }

 /* Hover */
 .appointment-btn:hover,
 .consult-btn:hover {
     transform: translateY(-3px);
     color: #fff;
 }

 /* Timing */
 .timing-box {
     background: #f8fbff;
     padding: 25px;
     border-radius: 15px;
 }

 .timing-box h5 {
     color: var(--primary-color);
     margin-bottom: 20px;
 }

 .timing-box ul {
     padding: 0;
     margin: 0;
     list-style: none;
 }

 .timing-box ul li {
     display: flex;
     justify-content: space-between;
     padding: 10px 0;
     border-bottom: 1px dashed #ddd;
     font-size: 15px;
 }


 .map-box {
     overflow: hidden;
     border-radius: 20px;
     height: 100%;
     min-height: 500px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
 }

 .map-box iframe {
     width: 100%;
     height: 100%;
 }

 /* Mobile */
 @media (max-width: 768px) {

     .map-box {
         min-height: 350px;
     }

 }


 /* ================= TREATMENT DETAILS ================= */

 .treatment-details {
     background: #f8fbff;
 }

 .treatment-details h2 {
     color: var(--primary-color);
     font-weight: 700;
 }

 .sub-text {
     color: var(--accent-color);
     font-size: 18px;
     font-weight: 500;
 }

 .intro-box {
     background: #fff;
     padding: 40px;
     border-radius: 25px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
 }

 /* Content */
 .intro-content p {
     color: #555;
     line-height: 1.9;
     margin-bottom: 18px;
 }

 /* Image */
 .intro-image {
     height: 100%;
 }

 .intro-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 20px;
 }

 /* Mobile */
 @media (max-width: 768px) {

     .intro-box {
         padding: 25px;
     }

     .intro-image img {
         height: 300px;
     }

 }

 /* Tags */
 .tags-wrap {
     margin-top: 25px;
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
 }

 .tags-wrap span {
     background: var(--primary-color);
     color: #fff;
     padding: 10px 18px;
     border-radius: 30px;
     font-size: 15px;
 }

 /* Accordion */
 .custom-accordion .accordion-item {
     border: none;
     margin-bottom: 20px;
     border-radius: 15px !important;
     overflow: hidden;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
 }

 .custom-accordion .accordion-button {
     background: #fff;
     color: var(--primary-color);
     font-weight: 600;
     padding: 22px;
     box-shadow: none;
 }

 .custom-accordion .accordion-button:not(.collapsed) {
     background: var(--primary-color);
     color: #fff;
 }

 .custom-accordion .accordion-body {
     padding: 30px;
     background: #fff;
 }

 .custom-accordion .accordion-body h5 {
     color: var(--primary-color);
     margin-bottom: 15px;
     margin-top: 20px;
 }

 .custom-accordion .accordion-body p {
     color: #555;
     line-height: 1.9;
 }

 .custom-accordion .accordion-body ul {
     padding-left: 18px;
 }

 .custom-accordion .accordion-body ul li {
     margin-bottom: 10px;
     color: #444;
     line-height: 1.8;
 }

 /* Mobile */
 @media (max-width: 768px) {

     .intro-box {
         padding: 25px;
     }

     .custom-accordion .accordion-button {
         padding: 18px;
         font-size: 15px;
     }

     .custom-accordion .accordion-body {
         padding: 22px;
     }

 }





































 /* Footer */
 footer {
     background: var(--primary-color);
     color: #fff;
     padding: 40px 0;
 }

 footer h5 {
     margin-bottom: 15px;
 }

 footer p,
 footer a {
     color: #ccc;
     text-decoration: none;
 }

 footer a:hover {
     color: #fff;
 }

 /* ================= WHATSAPP FLOAT ================= */

 .whatsapp-float {
     position: fixed;
     width: 65px;
     height: 65px;
     bottom: 25px;
     right: 25px;
     background: #25d366;
     color: #fff;
     border-radius: 50%;
     text-align: center;
     font-size: 30px;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 999;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
     transition: 0.3s ease;
     text-decoration: none;
 }

 /* Hover Effect */
 .whatsapp-float:hover {
     transform: translateY(-5px) scale(1.05);
     color: #fff;
 }

 /* Tooltip */
 .whatsapp-tooltip {
     position: absolute;
     right: 80px;
     background: #27D366;
     color: #fff;
     padding: 10px 16px;
     border-radius: 10px;
     white-space: nowrap;
     font-size: 14px;
     opacity: 0;
     visibility: hidden;
     transform: translateX(10px);
     transition: 0.3s ease;
     font-weight: 500;
 }

 /* Tooltip Arrow */
 .whatsapp-tooltip::after {
     content: "";
     position: absolute;
     top: 50%;
     right: -6px;
     transform: translateY(-50%);
     border-width: 6px;
     border-style: solid;
     border-color: transparent transparent transparent #111;
 }

 /* Show Tooltip on Hover */
 .whatsapp-float:hover .whatsapp-tooltip {
     opacity: 1;
     visibility: visible;
     transform: translateX(0);
 }

 /* Mobile */
 @media (max-width: 767px) {

     .whatsapp-float {
         width: 58px;
         height: 58px;
         font-size: 26px;
         bottom: 20px;
         right: 20px;
     }

     .whatsapp-tooltip {
         font-size: 13px;
         padding: 8px 12px;
     }

 }


 /* ======Intsgram vdo embedd========= */
 /* ================= SINGLE INSTAGRAM REEL ================= */

 .single-insta-reel {
     background: #fff;
     overflow: hidden;
 }

 /* Left Content */
 .reel-content {
     padding-right: 20px;
 }

 /* Tag */
 .reel-tag {
     display: inline-block;
     background: rgba(229, 118, 20, 0.12);
     color: #E57614;
     padding: 10px 20px;
     border-radius: 50px;
     font-weight: 600;
     margin-bottom: 20px;
 }

 /* Heading */
 .reel-content h2 {
     font-size: 30px;
     font-weight: 700;
     line-height: 1.3;
     margin-bottom: 20px;
     color: #111;
 }

 /* Paragraph */
 .reel-content p {
     color: #666;
     line-height: 1.9;
     margin-bottom: 30px;
 }

 /* Button */
 .reel-btn {
     display: inline-flex;
     align-items: center;
     background: #015AA0;
     color: #fff;
     padding: 14px 30px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 600;
     transition: 0.3s ease;
 }

 .reel-btn:hover {
     background: #E57614;
     color: #fff;
     transform: translateY(-3px);
 }

 /* Video Card */
 .reel-video-card {
     background: #fff;
     padding: 15px;
     border-radius: 30px;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
     overflow: hidden;
 }

 /* Instagram Embed */
 .instagram-media {
     min-width: 100% !important;
     max-width: 100% !important;
     margin: 0 !important;
     border-radius: 20px !important;
 }

 /* ================= TABLET ================= */
 @media (max-width: 991px) {

     .reel-content {
         text-align: center;
         padding-right: 0;
     }

     .reel-content h2 {
         font-size: 34px;
     }

 }

 /* ================= MOBILE ================= */
 @media (max-width: 767px) {

     .reel-content h2 {
         font-size: 28px;
         line-height: 1.4;
     }

     .reel-content p {
         font-size: 15px;
     }

     .reel-btn {
         width: 100%;
         justify-content: center;
     }

     .reel-video-card {
         padding: 10px;
         border-radius: 20px;
     }

 }