* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-style: normal;
}
.scroll-wrapper{
   scroll-behavior: smooth;
}
:root {

  /* Brand Colors */
  --primary-color: #2F7D32;
  --primary-dark: #245A2A;
  --primary-light: #faf6e3;

  /* Accent Colors */
  --secondary-color: #E8B008;
  --secondary-hover: #D49A00;

  /* Text Colors */
  --dark-color: #0F172A;
  --black-color: #1F2937;
  --color-grey: #6B7280;
  --light-grey: #F8FAFC;

  /* Backgrounds */
  --white-color: #FFFFFF;
  --section-bg: #F5F8F5;

  /* Border */
  --border-color: #E5E7EB;

  /* Gradient */
  --hero-gradient:linear-gradient(90deg, rgb(22, 66, 28) 0%, rgba(35, 92, 42, 0.635) 35%, rgba(35, 92, 42, 0.58) 60%, rgb(22, 66, 28) 100%);

}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--color-grey);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

hr {
  margin: 0;
  opacity: 1;
  background-color: #ddd;
}

a,
a:hover {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0;
  padding: 0;
  letter-spacing: 0px;
  font-size: 16px;
  line-height: 2;
  color: var(--black-color);
  font-weight: 400;
  margin-bottom: 10px
}

section {
  padding: 80px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading .title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 10px;
}

.section-heading .heading {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 5px;
}

.btn-theme {
  color: var(--black-color);
  border: 2px solid var(--black-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  border-radius: 8px;
  padding: 10px 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btn-theme.btn-primary {
  background-color: var(--primary-dark);
  color: #fff;
  border: 2px solid var(--primary-dark);
}

.btn-theme.btn-secondary {
  background-color: var(--secondary-color);
  color: #fff;
  border: 2px solid var(--secondary-color);
}

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

.btn-theme.btn-primary:hover {
  background-color: #fff;
  color: var(--primary-color);
}
.btn-theme.btn-white{
  border-color: var(--light-grey);
  background-color: var(--light-grey);
  color: var(--primary-dark);
}
.btn-theme.btn-white:hover{
  border-color: var(--primary-dark);
}
.owl-theme .owl-dots {
  color: #DDDDDD;
}

.owl-theme .owl-dots .owl-dot.active span {
  width: 40px;
  height: 12px;
  background-color: var(--dark-color);
  border-radius: 10;
  display: block;
}

/* Header */
.main-header {
  background-color: #f9fef8;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}
.fixed-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}

.main-header .logo-box {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: start;
  align-items: center;
  height: 100%;
}
.container-info{
  background-color: var(--primary-dark);
}
.container-info .row{
  max-width: 1380px;
  margin: auto;
}
.language-switcher{
    align-items:center;
}

.language-switcher .btn-theme{
      display: flex;
    align-items: center;
    gap: 8px;
    padding: 0px 14px 0 5px;
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    background: #fff;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    transition: all .3s ease;
}

.language-switcher .btn-theme img{
    width:30px;
    object-fit:cover;
}

.language-switcher .btn-theme:hover,
.language-switcher .btn-theme.active{
    background:var(--primary-color);
    color:#fff;
}
.main-header .logo-box a{
    position: relative;
    top: 0;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.main-header .logo-box img {
  max-width: 200px;
}

.main-header .header-contact-info,
.main-header .social-links {
  padding: 10px 0;
  height: 100%;
  display: flex;
}

.main-header .header-contact-info ul {
  display: flex;
  justify-content: start;
  align-items: center;
}

.main-header .header-contact-info li {
  margin-right: 30px;
  display: flex;
  align-items: center;
}

.main-header .header-contact-info li i {
  color: #fff;
}

.main-header .header-contact-info li a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.main-header .social-links ul {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.main-header .social-links a {
  background-color: #fff;
  width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--black-color);
  font-size: 14px;
}

.main-header .social-links a:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.main-header .nav-outer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
}

.main-header .nav-outer .main-menu .navbar-nav {
  flex-direction: row;
  gap:15px;
}

.main-header .nav-outer .navbar-nav li a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--dark-color);
  padding: 22px 0;
  display: block;
}

.main-header .nav-outer ul li.menu-item-has-children {
  position: relative;
}

.main-header .nav-outer ul li.menu-item-has-children>a {
  padding-right: 30px;
  position: relative;
}

.main-header .nav-outer ul li.menu-item-has-children>a::after {
  content: "\ea4a";
  font-family: "boxicons";
  color: #fff;
  position: absolute;
  right: 0;
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
}

.main-header .nav-outer ul li.menu-item-has-children .sub-menu {
  position: absolute;
  background-color: #fff;
  border: 5px;
  z-index: 999;
  width: 100%;
  transform: translateY(50px);
  min-width: 250px;
  opacity: 0;
  box-shadow: 0px 8px 24px 0px #959DA533;
  visibility: hidden;
  transition: all 0.3s ease;
}

.main-header .nav-outer ul li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.main-header .nav-outer ul li.menu-item-has-children .sub-menu li a {
  padding: 10px;
  display: block;
  color: #333;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  border-bottom: 1px solid #ddd;
}

.main-header .nav-outer ul li.menu-item-has-children .sub-menu li a:hover {
  background-color: var(--primary-color);
  color: #fff;
}
.main-header .nav-outer ul li.menu-item-has-children.service-menu .sub-menu{
  display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 20px;
    padding: 20px;
    min-width: 1200px;
    background: #fff;
    border: 1px solid #ddd;
    list-style: none;
    left: -500px;
}
.main-header .nav-outer ul li.menu-item-has-children.service-menu .sub-menu li a{
 background: #f7d0c317;
    border-radius: 5px;
    border: 1px solid #de3703;
    padding: 10px;
    display: block;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
}
.main-header .nav-outer ul li.menu-item-has-children.service-menu .sub-menu li a:hover{
  background-color: var(--secondary-color);
  color: #fff;
}
.main-header .nav-outer ul li.menu-item-has-children.service-menu .sub-menu li.current-menu-item a{
  background-color: var(--secondary-color);
  color: #fff;
}
.main-header .nav-outer .btn-theme {
  padding: 8px 25px;
}
.mobile-header{
  display: none;
}
.mobile-header .bx-menu{
      font-size: 36px;
}
/* home banner */
.physio-hero{
    position:relative;
    width:100%;
    height:600px;
    overflow:hidden;
    padding: 0;
}

.physio-hero .container iframe{
    position:absolute;
    top:50%;
    left:50%;
    width:177.77777778vh;
    height:56.25vw;
    min-width:100%;
    min-height:100%;
    transform:translate(-50%, -50%);
    pointer-events:none;
    border:none;
}

.physio-hero .overlay{
    position:absolute;
    inset:0;
    background:var(--hero-gradient);
    z-index:1;
}
.physio-hero .hero-content{
  position: relative;
  z-index: 1;
}
.physio-hero .section-title .sub-title{
  color: var(--primary-color);
  background-color: var(--primary-light);
}
.physio-hero .section-title .title{
  color:#fff;
  font-size: 40px;
  line-height: 1.4;
}
.physio-hero .section-title .title span{
  color: #94f457;
}
.physio-hero .section-title p{
  color: #fff;
}
.physio-hero .btn-theme.btn-primary{
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
/* footer */
.footer-section {
  background-color: var(--dark-color);
}
.footer-section iframe{
  width: 100%;
  height: 200px;
  border-radius: 10px;
}
.footer-section .footer-middle {
  padding: 50px 0;
}

.footer-section .footer-middle .footer-about .footer-logo {
  width: 300px;
  height: auto;
  display: block;
  margin-bottom: 20px;
  background-color: #fff;
  padding: 5px;
  border-radius: 8px;
}

.footer-section .footer-middle .footer-about .footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-section .footer-middle .footer-about p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 20px;
  width: 100%;
  max-width:400px;
}

.footer-section .footer-middle .footer-about .links-widget {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
}

.footer-section .footer-middle .footer-about .links-widget p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  width: auto;
  max-width: 100%;
}

.footer-section .footer-middle .footer-about .links-widget .social-links {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.footer-section .footer-middle .footer-about .links-widget .social-links a {
  background-color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--black-color);
  font-size: 16px;
}

.footer-section .footer-middle .footer-about .links-widget .social-links a:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.footer-section .footer-middle .widget-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.footer-section .footer-middle .contact-info li {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 15px;
}

.footer-section .footer-middle .contact-info li i {
  color: #fff;
  font-size: 20px;
}

.footer-section .footer-middle .contact-info li a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.footer-section .footer-links ul li a {
  color: #fff;
  font-size: 16px;
  padding: 10px;
  display: block;
}

.footer-section .footer-links ul li a:hover {
  color: var(--secondary-color);
}

.footer-copyright {
  border-top: 1px solid #fff;
  padding: 10px 0;
}

.footer-copyright p {
  color: #fff;
  font-size: 14px;
  text-align: center;
  margin: 0;
}

/* section title */
.section-title {
  margin-bottom: 40px;
}
.section-title .title-404{
  font-size: 70px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--black-color);
  margin-bottom: 10px;
}
.section-title .sub-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
     color: #fff;
    background-color:var(--primary-dark);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.section-title .title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--black-color);
  margin-bottom: 10px;
}
.section-title .title span{
  color: var(--secondary-color);
}
.section-title p {
  color: var(--color-grey);
  font-weight: 500;
}

.section-title.text-white .title,
.section-title.text-white p {
  color: #fff;
}

.our-treatment {
    padding: 80px 0;
    background: radial-gradient(circle at 8% 8%, rgba(212, 167, 68, 0.08), transparent 35%),
    radial-gradient(circle at 92% 92%, rgba(20, 163, 157, 0.06), transparent 35%),
    linear-gradient(180deg, #faf8f1 0%, #fbfaf6 100%);
    overflow: hidden;
}

.our-treatment .treatment-card-3d {
    perspective: 1000px;
    height: 100%;
    margin-bottom: 30px;
    
}

.our-treatment .card-inner {
    position: relative;
    background: #fff;   
    transform-style: preserve-3d;
    height: 100%;
    padding-bottom: 50px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(20, 163, 157, 0.14);
    box-shadow: 0 10px 26px -12px rgba(20, 31, 82, 0.18);
    text-decoration: none;
    display: flex;
    flex-direction: column;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.our-treatment .treatment-card-3d:hover .card-inner {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 44px -16px rgba(20, 163, 157, 0.28);
}

/* Image Styling */
.our-treatment .image-box {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.our-treatment .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.our-treatment .treatment-card-3d:hover .image-box img {
    transform: scale(1.15);
}

.our-treatment .content-box {
    padding: 30px 20px 0;
    text-align: start;
    flex-grow: 1;
    transform: translateZ(30px); 
}

.our-treatment .content-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.our-treatment .content-box p {
    font-size: 14px;
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 0;
}
.our-treatment .read-more {
color: var(--dark-color);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    border-top: 1px dashed var(--secondary-color);
    padding: 10px 15px 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    display: inline-flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.our-treatment .treatment-card-3d:hover .read-more {
    color: var(--secondary-color);
}
.faq-section{
  background: linear-gradient(180deg, #fbfaf6 0%, #ebf8f6 100%);
}
.custom-faq-tabs {
    border-bottom: 2px solid #e5e7eb !important;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto; 
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: none;
}

.custom-faq-tabs::-webkit-scrollbar {
    display: none;
}

.custom-faq-tabs .nav-item {
    margin-bottom: -2px;
}

.custom-faq-tabs .nav-link {
    border: none !important;
    color: #4b5563 !important;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 20px;
    position: relative;
    background: transparent !important;
    transition: color 0.3s ease;
}
.custom-faq-tabs .nav-link.active {
    background: var(--secondary-color) !important;
    color: #fff !important;
}

.custom-faq-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.custom-faq-tabs .nav-link.active::after {
    transform: scaleX(1);
}
.faq-section .accordion .accordion-item {
  border: 0;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
}

.accordion-item:has(.accordion-button:not(.collapsed)) {
  border: 1px solid var(--dark-color);
}

.faq-section .accordion .accordion-item .accordion-button {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-black)
}

.faq-section .accordion .accordion-item .accordion-button:not(.collapsed) {
  color: var(--primary-color) !important;
  background: 0;
  border-top: 0;
  box-shadow: none;
  outline: none;
  font-weight: 600;
}

.accordion-button::after {
  content: "\+";
  font-family: "Font Awesome 7 Free";
  background: none;
  font-weight: 900;
  font-size: 16px;
  width: 35px;
  height: 35px;
  line-height: 1;
  background:#ececec9e;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark-color);
}

.accordion-button:not(.collapsed)::after {
  content: "\f068";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  background-image: none;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-body {
  padding-right: 40px;
  line-height: 1.8;
  color: #555;
  font-size: 16px
}

.faq-section .accordion-body p {
  color: var(--black-color);
  font-weight: 500;
}

.faq-section .accordion-body ul li {
  position: relative;
  padding-left: 20px
}

.faq-section .accordion-body ul li::before {
  content: "\ea2f";
  position: absolute;
  left: 0;
  top: 1px;
  bottom: 0;
  margin: auto;
  font-family: boxicons !important;
  font-weight: 600;
  font-size: 14px;
  height: 100%;
  color: var(--secondary-color);
}

.faq-section .card-faq {
  background-color: var(--primary-color);
  border-radius: 20px;
  text-align: start;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  padding: 40px;
      position: sticky;
    top: 20%;
}

.faq-section .card-faq h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 10px;
}

.faq-section .card-faq p {
  color: #fff;
}

.award-section {
  border-top: 1px solid #ddd;
}

.award-section .items {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 220px;
  padding: 20px;
}

.award-section .items img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.our-service {
  background-image:url(../images/section-bg-image.png);
}

.our-service .service-card {
  text-align: center;
  padding: 0;
  height: 100%;
  position: relative;
  background-color: #fff;
  box-shadow: 0 18px 44px -20px rgba(20, 31, 82, 0.20);
  border-radius:20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.our-service .service-card:hover{
      transform: translateY(-6px);
    box-shadow: 0 28px 60px -20px rgba(20, 31, 82, 0.30);
}
.our-service .service-card .image{
  width: 100%;
  height: 250px;
  overflow: hidden;
  margin: auto;
  background: #FFFFFF;
}
.our-service .service-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
    transition: all 0.3s ease;
}
.our-service .service-card:hover .image img{
    transform: scale(1.1);
}
.our-service .service-card .why-no {
  background-color: var(--secondary-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 6%;
  right: 33%;
}
.our-service .service-card .content{
  padding: 20px;
}
.our-service .service-card h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color:var(--dark-color);
  text-align: center;
  margin: 0 auto 15px;
}

.our-service .service-card p {
  margin: 0;
  font-size: 14px;
}

.blogs-section .blog-gird {
  background: #fff;
  border: 1px solid var(--secondary-color);
  box-shadow: 0px 4px 40px 0px #0000001A;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  padding: 10px;
  position: relative;
}

.blogs-section .blog-gird .big-thumb {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}

.blogs-section .blog-gird .big-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blogs-section .blog-gird .blog-content {
  padding: 20px 10px 40px;
}

.blogs-section .blog-gird .blog-content .date {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background-color: var(--secondary-color);
  padding: 5px 10px;
  border-radius: 5px;
}

.blogs-section .blog-gird .blog-content .author {
  border: 1px solid var(--secondary-color);
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: 600;
}

.blogs-section .blog-gird .blog-content h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--black-color);
  margin: 15px 0 10px;
}

.blogs-section .blog-gird .blog-content h4 a {
  display: block;
}

.blogs-section .blog-gird .blog-content h4 a:hover {
  color: var(--secondary-color);
}

.blogs-section .blog-gird .blog-content .read-btn {
  color: var(--black-color);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 2px solid var(--black-color);
  position: absolute;
  bottom: 20px;
}

.blogs-section .blog-gird .blog-content .read-btn:hover {
  color: var(--secondary-color);
}

/* blogs details */
.blog-details {
  padding: 60px 0
}

.blog-single-post {
  position: relative;
  margin-bottom: 40px
}

.blog-single-post.blog-salah .image img {
  width: auto;
  height: 500px
}

.blog-single-post .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px
}

.blog-single-post .image img {
  width: 100%;
}

.blog-single-post .lower-content {
  position: relative;
  padding: 30px;
  border: 1px solid #ebf2f3;
  border-top: 0;
  border-radius: 5px
}

.blog-single-post ul.post-meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  margin-bottom: 13px
}

.blog-single-post .post-meta li {
  margin-right: 15px;
  padding-right: 15px;
  font-weight: 600;
  border-right: 1px solid #ddd
}

.blog-single-post .post-meta li i {
  margin-right: 8px;
  color: var(--primary-color)
}

.blog-single-post .post-meta li:last-child {
  border-right: 0
}


.blog-single-post h1 {
  font-size: 30px;
  line-height: 44px;
  color: #3f3f3f;
  font-weight: 600;
}

.blog-single-post h3 {
  font-size: 28px;
  line-height: 42px;
  color: #3f3f3f
}

.blog-single-post .text {
  margin-bottom: 40px
}

.blog-single-post .text ul {
  padding-left: 0;
  margin-bottom: 15px;
}

.blog-single-post .text ul li {
      padding-left: 30px;
    position: relative;
    line-height: 1.8;
}

.blog-single-post .text ul li:before {
     content: "\ea51";
    color: var(--secondary-color);
    font-family: boxicons !important;
    position: absolute;
    left: 0;
    top: -2px;
    bottom: 0;
    font-size: 20px;
    display: flex;
    align-items: start;
}

.blog-single-post .text ol {
  list-style: auto
}

.blog-single-post .text ol li {
  list-style: inherit;
  margin-bottom: 15px;
  color: #3f3f3f;
  font-size: 16px
}

.blog-single-post .text b,
.blog-single-post .text strong {
  font-weight: 600;
  color: var(--color-black)
}

.blog-single-post .text h2 {
  position: relative;
  font-size: 28px;
  line-height: 44px;
  font-weight: 600;
  font-family: inherit;
  margin-bottom: 15px
}

.blog-single-post .text h3,
.blog-single-post .text h4,
.blog-single-post .text h5 {
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  font-family: inherit
}

.blog-single-post .text h3 {
  font-size: 24px
}

.blog-single-post .text h4 {
  font-size: 22px
}

.blog-single-post .text h5 {
  font-size: 20px
}

.blog-single-post .text h6 {
  position: relative;
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  font-family: inherit;
  margin-bottom: 15px
}

.blog-single-post .text table tr td,
.blog-single-post .text table tr th {
  border: 2px solid #ddd;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 500
}

.blog-single-post blockquote {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  color: #565872;
  margin-bottom: 30px
}

.blog-single-post blockquote:before {
  position: absolute;
  content: '';
  top: 0;
  width: 8px;
  bottom: 0;
  background: var(--primary-color);
  left: 0;
  border-radius: 5px
}

.widget {
  position: relative;
  margin-bottom: 50px
}

.widget_popular_post {
  position: relative;
  max-width: 350px;
  margin-left: auto
}

.widget .widget-title {
  position: relative;
  font-size: 20px;
  color: #3f3f3f;
  margin-bottom: 20px;
  font-weight: 600
}

.widget_popular_post .post-thumb {
  position: relative;
  margin-right: 15px;
  margin-bottom: 0;
  overflow: hidden
}

.widget_popular_post .post-thumb:before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgb(16 34 53/59%);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 10;
  pointer-events: none;
  transition: .3s ease-in
}

.widget_popular_post .post-thumb:hover:before {
  opacity: 1;
  width: 100%;
  height: 100%;
  border-radius: 0;
  -webkit-animation: .75s circle;
  animation: .75s circle
}

.widget_popular_post .post-thumb img {
  border-radius: 5px;
  float: left;
  height: 60px;
  width: 60px;
  object-fit: cover
}

.widget_popular_post .post {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  border: 1px solid #e3e3e3;
  padding: 14px;
  border-radius: 5px
}

.widget_popular_post .content {
  position: relative;
  width: calc(100% - 75px)
}

.widget_popular_post .content h5 {
  position: relative;
  font-size: 16px;
  margin-bottom: 3px;
  font-weight: 600;
  font-family: inherit
}

.widget_popular_post .content h5 a {
  color: #3f3f3f;
  transition: .5s
}

.widget_popular_post .content .post-info {
  font-size: 14px;
  color: #3f3f3f
}

.widget_popular_post .content .post-info i {
  margin-right: 4px;
  color: var(--primary-color)
}

.appointment-form {
  background: linear-gradient(180deg, #fbf7ee 0%, #fdf9ef 100%);
}

.appointment-form .contact__info {
  background: #fff;
  border: 1px solid #eef0f6;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}
.appointment-form .contact__info p{
  font-weight: 600;
  margin-bottom: 0;
}
.appointment-form .contact__info .social-links{
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}
.appointment-form .contact__info .social-links a{
  background-color: var(--dark-color);
  color: #fff;
  border-radius: 100px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.appointment-form .contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eef0f6;
}

.appointment-form .contact__info-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.appointment-form .contact__info-ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary-dark);
  color:var(--light-grey);
  display: grid;
  place-items: center;
  font-size: 15px;
  flex-shrink: 0;
}

.appointment-form .contact__info-item strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #7a8094;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 4px;
}

.appointment-form .contact__info-item span {
  display: block;
  font-size: 14px;
  color: var(--dark-color);
  font-weight: 500;
  line-height: 1.5;
}

.appointment-form .contact__info-item a {
  color:var(--dark-color);
  font-weight: 600;
}

.appointment-form .contact__info-item a:hover {
  color: var(--primary-color);
}

.appointment-form .contact__map {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(20, 31, 82, 0.08);
  border: 1px solid #eef0f6;
  background: #eef0f6;
}

.appointment-form .contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.appointment-form .form-box {
  height: 100%;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 16px 4px #0000001C;
}
.appointment-form .form-box p{
  margin: 0;
  width: 100%;
      font-size: 14px;
    font-weight: 500;
  color: inherit;
}
.appointment-form .form-box .form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--black-color);
  margin-bottom: 5px;
  display: block;
}

.appointment-form .form-box .form-control {
  border: 1px solid #ddd;
  height: 45px;
  border-radius: 10px !important;
  padding: 10px 15px 10px 50px;
  font-size: 14px;
  color: var(--black-color);
  margin-bottom: 0;
}

.appointment-form .form-box textarea.form-control {
  height: 70px;
}

.appointment-form .form-box .input-group,
.appointment-form .form-box .input-group p {
  position: relative;
  margin: 0;
}

.appointment-form .form-box .input-group .input-group-text {
  position: absolute;
  left: 0;
  top: 0;
  background-color: transparent;
  border: none;
  color: var(--color-grey);
  font-size: 16px;
  width: 45px;
  height: 45px;
  z-index: 9;
}

.testimonial {
  background-image: url(../images/testiominial-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial .google-rating {
  border: 1px solid #DDDDDD;
  box-shadow: 0px 8px 24px 0px #959DA533;
  background-color: #fff;
  border-radius: 5px;
  margin-top: 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 15px;
  gap: 12px;
}

.testimonial .google-rating .rating-box {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  padding-right: 10px;
  border-right: 1px solid #DDDDDD;
}

.testimonial .google-rating .rating-box .rating-value {
  text-align: start;
}

.testimonial .google-rating .rating-box span {
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: var(--black-color);
}

.testimonial .google-rating .rating-box .rating {
  color: #FBB204;
}

.testimonial .google-rating .rating-box .d-flex {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
}

.testimonial .google-rating .rating-box ul {
  display: flex;
  justify-content: start;
  align-items: center;
}

.testimonial .google-rating .rating-box ul li,
.testimonial .google-rating .rating-box ul li i {
  font-size: 10px;
  line-height: 1;
  color: #FBB204;
}

.testimonial .google-rating img {
  max-width: 100px;
}

.testimonial .google-rating span {
  color: var(--color-grey);
  font-weight: 600;
  font-size: 14px;
}

.testimonial .items {
  padding: 20px 15px;
}

.testimonial .textimonial-card {
  box-shadow: 0px 8px 15px 0px #959DA533;
  background-color: #fff;
  padding: 30px;
  min-height: 190px;
  height: 100%;
  border-radius: 10px;
}

.testimonial .textimonial-card ul {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.testimonial .textimonial-card ul li i {
  color: #FBB204;
  font-size: 18px;
  line-height: 1;
}

.testimonial .textimonial-card h4 {
  color: #3F3F3F;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 8px;
}

.testimonial .textimonial-card p {
  color: var(--primary-color);
  font-size: 15px;
}

.testimonial .textimonial-card .morecontent span {
  display: none;
}

.testimonial .textimonial-card p {
  margin: 0;
}

.testimonial .textimonial-card p a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: var(--secondary-color);
}

.testimonial .btn-theme {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 25px;
}

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

.image-gallery {
  background-color: #d5e1e787;
}

.image-gallery .gallery-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.image-gallery .gallery-image a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  font-size: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.image-gallery .gallery-image:hover a {
  opacity: 1;
}

.image-gallery .gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.section-banner {
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-banner .title {
  font-size: 32px;
}
.section-banner .title span{
  color: var(--secondary-color);
}
.section-banner .breadcrumb {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--primary-dark);
  padding: 8px 20px;
  border-radius: 100px;
  box-shadow: 0px 4px 16px 4px #0000001C;
  width: max-content;
  z-index: 99;
}

.section-banner .breadcrumb .breadcrumb-item,
.section-banner .breadcrumb .breadcrumb-item a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.section-banner .breadcrumb-item+.breadcrumb-item::before{
  color: #fff;
}
.section-banner .breadcrumb .breadcrumb-item.active {
  color: var(--secondary-color);
  font-weight: 600;
}

.contact-overview {
  background-color: #fbf6f2;
}

.contact-overview .section-title {
  margin: 0;
}

.contact-overview .section-title img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-top: 15px;
  border-radius: 10px;
}

.contact-overview .clinic-info {
  display: flex;
  justify-content: start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-overview .clinic-info li {
  width:30%;
  flex-grow: 1;
  background-color: #fff;
  box-shadow: 0px 4px 16px 4px #0000001C;
  border-radius: 15px;
  padding: 30px;
  position: relative;
}

.contact-overview .clinic-info li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 100%;
  width: 100%;
  background-color: var(--dark-color);
  height: 0;
  border-radius: 999px 999px 0 0;
  transition: all 0.4s ease-in-out;
  background-size: 101% 101%;
}

.contact-overview .clinic-info li:hover::before {
  top: 0;
  border-radius: 15px;
  height: 100%;
}

.contact-overview .clinic-info li svg {
  width: 70px;
  height: 70px;
  margin-bottom: 30px;
  position: relative;
  transition: all 0.4s ease-in-out;
}

.contact-overview .clinic-info li:hover svg {
  color: #fff;
}

.contact-overview .clinic-info li span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  line-height: 1.5;
  margin-bottom: 15px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
}

.contact-overview .clinic-info li a {
  color: var(--color-grey);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  display: block;
  position: relative;
  transition: all 0.4s ease-in-out;
}

.contact-overview .clinic-info li strong {
  font-weight: 600;
  color: var(--primary-color);
}

.contact-overview .clinic-info li a:hover {
  color: var(--secondary-color);
}

.contact-overview .clinic-info li:hover span,
.contact-overview .clinic-info li:hover a,
.contact-overview .clinic-info li:hover strong {
  color: #fff;
}

.appointment-form.contact-form {
  background-color: #fff;
}

.appointment-form.contact-form .row-box {
  height: 100%;
  background-color: var(--dark-color);
  border-radius: 10px;
  box-shadow: 0px 4px 16px 4px #0000001C;
  overflow: hidden;
}

.appointment-form.contact-form .clinic-map {
  height: 100%;
  border-radius: 0;
}
.appointment-form.contact-form .clinic-map iframe{
  width: 100%;
  height: 100%;
}
.appointment-form.contact-form .row-box .form-box {
  box-shadow: none;
  padding: 30px 15px;
  background-color: var(--dark-color);
}

.appointment-form.contact-form .row-box .form-box h4 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 25px;
}

.appointment-form.contact-form .row-box .form-box .form-label {
  margin-left: 10px;
  color: #fff;
}

.appointment-form.contact-form .row-box .form-box .form-control {
  height: 55px;
  border-radius: 50px !important;
  background-color: #fff9f7;
  border: 1px solid #9c9c9c;
  padding-left: 60px;
}

.appointment-form.contact-form .row-box .form-box textarea.form-control {
  border-radius: 20px !important;
  height: 100px;
}

.appointment-form.contact-form .row-box .form-box .input-group-text {
  height: 55px;
  left: 10px;
}

.health-tips-video .health-tips-box .image {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  position: relative
}

.health-tips-video .health-tips-box .image img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border: 1px solid #ddd;
  transform: scale(1)
}

.health-tips .health-slider .owl-stage {
  display: flex
}

.health-tips-video .health-slider .items {
  padding: 10px;
  height: 100%
}

.health-tips-video .health-tips-box {
  display: flex;
  flex-direction: column
}

.health-tips-video .health-slider .owl-stage-outer .owl-stage .owl-item.center .health-tips-box {
  transform: scale(1.1)
}

.health-tips-video .health-tips-box .title a {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
  border-radius: 100px;
  width: fit-content;
  padding: 6px 10px 6px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: Poppins, sans-serif;
  line-height: 1;
  transition: .4s ease-in
}

.health-tips-video .health-tips-box .title a .bx-play {
  background: var(--secondary-color);
  border-radius: 100%;
  height: 34px;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  padding-left: 3px
}

.health-tips-video .health-slider .health-tips-box .title a:hover {
  background: var(--secondary-color);
  color: #fff
}

.practitioner-container .image {
  width: 100%;
  height: 100%;
  max-width: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.practitioner-container .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.practitioner-container .content-box h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--black-color);
}

.practitioner-container .content-box h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--secondary-color);
  display:block;
  margin-bottom: 10px;
}

.treatContent-area #contenttab {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 rgba(0,0,0,.05);
    border: 1px solid #ddd;
    display: flex;
    gap: 10px;
    margin-top: 50px;
    width: 100%;
    max-width: 320px;
    position: sticky;
    top: 20%;
}

.treatContent-area #contenttab a {
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fbfbfb;
    padding: 14px
}

.treatContent-area #contenttab a.active {
    background: var(--secondary-color);
    border: 1px solid transparent;
    transition: background .3s ease-in-out
}

.treatContent-area .scrollspy-example h4 {
    margin-top: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.treatContent-area .scrollspy-example img {
    margin: 0
}

.treatContent-area .scrollspy-example .content-box {
    border-bottom: 1px solid #ccc;
    padding: 10px 0
}

.treatContent-area .scrollspy-example .content-box p {
    line-height: 1.8;
    margin-bottom: 15px
}

.treatContent-area .scrollspy-example .content-box:last-child {
    border-bottom: 0;
    padding-bottom: 0
}

.treatContent-area .scrollspy-example .content-box ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 15px;
    padding-left: 10px
}

.treatContent-area .scrollspy-example .content-box ul li {
    padding-left: 30px;
    position: relative;
    line-height: 1.8;
}

.treatContent-area .scrollspy-example .content-box ul li::before {
    content: "\ea51";
    color: var(--secondary-color);
    font-family: boxicons !important;
    position: absolute;
    left: 0;
    top: -2px;
    bottom: 0;
    font-size: 20px;
    display: flex;
    align-items: start
}

.treatContent-area .scrollspy-example .content-box hr {
    margin: 20px 0
}
.mobile-sticky-footer {
        display: none;
    }
.cta-section {
    background: linear-gradient(90deg, #531785 0%, #002164 100%);
    border-radius: 15px;
    margin: 20px 0;
}
.cta-section .cta-heading {
    color: #fff;
    font-weight: 700;
    font-size: 26px;
}

.cta-section .cta-text {
    color: #fff;
}
.cta-section .btn-theme.btn-primary{
  background-color: #fff;
  border: 1px solid #fff;
  color: #333;
}

.cta-section .btn-theme.btn-primary:hover{
  background-color: #333;
  color: #fff;
}
/* condition page */
.condition-grid {
    padding: 60px 0;
}
.condition-content ul li {
   padding-left: 30px;
    position: relative;
    line-height: 1.8;
    margin-bottom: 15px;
}

.condition-content ul li::before {
  content: "\ea51";
    color: var(--secondary-color);
    font-family: boxicons !important;
    position: absolute;
    left: 0;
    top: -2px;
    bottom: 0;
    font-size: 20px;
    display: flex;
    align-items: start;
}

.card-ourdoctor {
    background-color:#fff;
    border-radius: 20px;
    position: sticky;
    top: 25%;
    max-width: 320px;
    margin-left: auto;
        box-shadow: 0px 3.23px 11.29px 0px #00000026;
}

.card-ourdoctor h3 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
}

.card-ourdoctor h3 span{
  color: var(--secondary-color);
}

.card-ourdoctor .content {
    padding: 15px 15px;
}

.card-ourdoctor .ourdoctor-content {
    width: 100%;
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
}

.card-ourdoctor .ourdoctor-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-ourdoctor .owl-theme .owl-dots {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    z-index: 9;
    margin-top: 0;
}
.getintouch-section {
    background: var(--dark-color);
    padding: 20px 0;
}

.getintouch-section ul {
    display: flex;
    justify-content: start;
    align-items: stretch;
    gap: 20px;
}

.getintouch-section ul li {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
}

.getintouch-section ul li i {
    background: #FFFFFF;
    border-radius: 100px;
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.getintouch-section ul li p {
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    margin: 0;
}

.getintouch-section ul li a {
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
}
.getintouch-section ul li a:hover{
  color: var(--secondary-color);
}
.tracking-wider {
  letter-spacing: 0.05em;
}

.transition-all {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.col-lg-6 .btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* Glassmorphism Highlight Hover */
div[style*="border-left"] {
  cursor: default;
}
div[style*="border-left"]:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  transform: translateX(4px);
}
.referral-inner-box .referral-body{
  box-shadow: 0px 0px 13px 1px #00000021;
    border-radius: 10px;
    padding: 20px;
    background: #fff7f796;
    border: 1px solid #761c00;
    margin-bottom: 30px;
}
.referral-inner-box .referral-heading{
      background: var(--primary-color);
    padding: 20px;
    border-radius: 10px 10px 0 0;
    
}
.referral-inner-box .referral-heading h6{
  color: #fff;
    font-size: 20px;
}
.referral-inner-box .form-control{
      border: 2px solid #ddd;
    height: 50px;
    border-radius: 5px !important;
    padding: 15px;
    font-size: 16px;
    color: var(--black-color);
    margin-bottom: 0;
}
.referral-inner-box .form-control::placeholder{
  font-size: 16px;
    color: var(--black-color);
}
.referral-inner-box textarea.form-control{
  height: 100px;
}
.referral-inner-box .form-check{
  padding: 0;
}
.referral-inner-box .referral-checkbox label,
.referral-inner-box .form-check label{
      display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 600;
}
.referral-inner-box .referral-checkbox label input[type="checkbox"],
.referral-inner-box .form-check label input[type="checkbox"]{
      width: 20px;
    height: 20px;
}
.youtubebtn{
  display: flex;
    background: #de3703;
    padding: 6px 30px;
    border-radius: 10px;
    width: max-content;
    font-size: 40px;
    margin: auto;
    position: absolute;
    right: 0;
    left: 0;
}

/* CTA bar — dark navy contrast at the end */
.cta_box .row{
  padding: 26px 32px;
  background: linear-gradient(120deg, #141f52 0%, #1e2a6e 100%);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}

.cta_box .row::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 167, 68, 0.30), transparent 65%);
  pointer-events: none;
}
.cta_box .section-title .title{
      display: block;
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}
.cta_box .section-title p{
  font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
    margin: 0;
}
.cta_box .cta-buttons{
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
  height: 100%;
}
.cta_box .cta-buttons .btn-theme{
  border-radius: 100px;
}
.cta_box .cta-buttons .btn-theme.btn-cta{
  color: #fff;
  border-color: #fff;
}
.cta_box .cta-buttons .btn-theme.btn-cta:hover{
  background-color: var(--secondary-color);
}

.overview-home{
  background: linear-gradient(180deg, #ebf8f6 0%, #fbfaf6 100%);
  position: relative;
  overflow: hidden;
}
.overview-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  box-shadow: 0 28px 60px -25px rgba(20, 31, 82, 0.4);
}

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

.overview-img .why-r__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(20, 31, 82, 0.25);
}

.overview-img .why-r__badge strong {
  font-size: 22px;
  color: var(--dark-color);
  font-weight: 800;
  line-height: 1;
}

.overview-img .why-r__badge i {
  color: #d4a744;
  font-size: 14px;
}

.overview-img .why-r__badge span {
  font-size: 11.5px;
  color: #5a6478;
  font-weight: 600;
}

.overview-img .why-r__badge-2 {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
}
.why-choose-card{
  height:100%;
    background: #fff;
    border: 1px solid rgba(212, 167, 68, 0.25);
    border-radius: 18px;
    padding: 20px 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-choose-card:hover{
      transform: translateY(-4px);
    border-color: var(--dark-color);
    box-shadow: 0 18px 38px -12px rgba(20, 163, 157, 0.25);
}
.why-choose-card .icon{
      width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background:var(--primary-color);
    color: #fff;
    font-size: 24px;
    padding: 12px;
    box-shadow: 0 10px 24px rgba(20, 163, 157, 0.3);
}
.why-choose-card .icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(0) brightness(10);
}
.why-choose-card .content h4{
  color: var(--dark-color);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 10px;
  min-height: 45px;
}
.why-choose-card .content p{
  color: rgba(0, 0, 0, 0.78);
  margin-bottom: 0;
  font-size: 12.5px;
}
.cta-pitch .container{
  max-width: 1250px;
}
.cta-pitch .row{
  padding: 36px 40px;
  background: linear-gradient(
310deg, var(--dark-color) 0%, #1e3690 60%, #1e0041 100%);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.cta-pitch .section-title{
  margin: 0;
}
.cta-pitch .section-title .sub-title{
  background-color: var(--secondary-color);
}
.cta-pitch .section-title .title{
  color: #fff;
  font-size: 28px;
  font-weight: 800;
      letter-spacing: -0.5px;
}
.cta-pitch .section-title p{
      font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
}
.cta-pitch .cta-btn{
   width: 100%;
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   gap: 20px;
}
.cta-pitch .cta-btn .btn-theme{
  border-radius: 100px;
}
.cta-pitch .cta-btn .btn-theme.btn-pitch{
  background-color: transparent;
}
.cta-pitch .cta-btn .btn-theme.btn-pitch:hover{
  background-color: #fff;
}
.about-banner .section-title .sub-title{
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.mission-vision-section{
    background:#f8faf8;
}

.mission-vision-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border:1px solid #d6e6d6;
    border-radius:50px;
    color:var(--primary-color);
    background:#fff;
    font-weight:600;
}

.mission-vision-heading{
    font-size:56px;
    font-weight:800;
    color:var(--dark-color);
    line-height:1.1;
}

.mission-vision-heading span{
    color:var(--primary-color);
}

.mission-vision-description{
    font-size:18px;
    color:var(--color-grey);
    max-width:600px;
    margin-top:20px;
}

.mission-vision-image{
    border-radius:25px;
}

.mission-vision-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-bottom:5px solid var(--primary-color);
}

.mission-vision-card-header{
    display:flex;
    gap:20px;
    align-items:flex-start;
}

.mission-vision-icon{
    min-width:90px;
    width:90px;
    height:90px;
    background:#eef8ef;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary-color);
    font-size:35px;
}

.mission-vision-card h3{
    font-size:30px;
    font-weight:700;
    color:var(--dark-color);
    margin-bottom:15px;
}

.mission-vision-card p{
    color:var(--color-grey);
    line-height:1.8;
}

@media(max-width:991px){

    .mission-vision-heading{
        font-size:40px;
    }

    .mission-vision-card-header{
        flex-direction:column;
    }

    .mission-vision-icon{
        width:70px;
        height:70px;
        min-width:70px;
        font-size:28px;
    }
}
/* ===========================
   Benefits Section
=========================== */

.benefits-section{
    background:#f8faf8;
}

.benefit-card{
    background:#fff;
    border-radius:20px;
    padding:35px 30px;
    height:100%;
    text-align:center;
    transition:.35s;
    border:1px solid #e9ecef;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
}

.benefit-card:hover{
    transform:translateY(-8px);
    border-color:var(--primary-color);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.benefit-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:var(--primary-color);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:32px;
    margin-bottom:25px;
}

.benefit-card h4{
    font-size:20px;
    font-weight:700;
    color:var(--dark-color);
    margin-bottom:10px;
}

.benefit-card p{
    color:var(--color-grey);
    line-height:1.8;
    margin:0;
}

@media(max-width:991px){

.benefits-title{
font-size:36px;
}

}
.modal .modal-body p{
  margin: 0;
  width: 100%;
      font-size: 14px;
    font-weight: 500;
  color: inherit;
}
.modal .modal-body .form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--black-color);
  margin-bottom: 5px;
  display: block;
}

.modal .modal-body .form-control {
  border: 1px solid #ddd;
  height: 45px;
  border-radius: 10px !important;
  padding: 10px 15px 10px 50px;
  font-size: 14px;
  color: var(--black-color);
  margin-bottom: 0;
}

.modal .modal-body textarea.form-control {
  height: 150px;
}

.modal .modal-body .input-group,
.modal .modal-body .input-group p {
  position: relative;
  margin: 0;
}

.modal .modal-body .input-group .input-group-text {
  position: absolute;
  left: 0;
  top: 0;
  background-color: transparent;
  border: none;
  color: var(--color-grey);
  font-size: 16px;
  width: 45px;
  height: 45px;
  z-index: 9;
}
.modal .modal-body .title{
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--primary-dark);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--primary-color);
}
.modal .btn-close{
  position: absolute;
  right: -40px;
  background-color:#fff;
  opacity: 1;
  z-index: 2;
  padding: 10px;
}