/* CSSriables */
:root {
  /* --bs-brand-color:#3f35e3;
  --bs-brand-color:#4f46e5; */
  
  --light-theme-background-01: #fcfcfa; /* main background color */
  --light-theme-background-02: #f8f5ee;
  --light-theme-background-03: #f8f5ee;


  --bs-brand-color:#5B65DC;
  --bs-brand-soft:#EEEFFD;


  /* --bs-brand-dark-color:#4B458E;
  --bs-brand-soft-color:#9891DB; */
 
  --bs-black-color: #1f2937;
  --bs-white-color: #fff;
  --bs-white-color-dark: #f8f9fa;

  --bs-gray-color: #4b5563;
  --bs-supporting-gray-light: #dee2e6;
  --bs-supporting-gray: #ccc;
  --bs-gray-100: #eee;

  /* --bs-purple-accent: #6c56c7;
  --bs-violet-accent: #9b5de5; */


  --bs-gradient-dark: #6C63CC; /* darker & richer shade */
  --bs-gradient-light: #6C63CC;  /* lighter & softer shade */
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--light-theme-background-01);
  overflow-x: hidden;
}

@media (max-width: 767px) {
  html, body {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
  }
}
html {
  scrollbar-width: thin;
  scrollbar-color: var(--bs-brand-color) var(--bs-brand-soft);
}

.btn-gradient-background {
  background: var(--bs-brand-color);
  color: var(--bs-white-color);
} 

main {
  /* padding-top: 4.5rem; */
  padding-top: 3rem;
}

.navbar {
  /* padding: 1rem 0rem; */
}

.brand-color {
  color: var(--bs-brand-color);
}

footer {
  background:var(--bs-white-color-dark);
}

.gradient-background {
  background: var(--bs-brand-color);
  color: var(--bs-white-color);
}

.hero-title-glow {
  /* text-shadow: 0 0 10px rgba(108, 86, 199, 0.7); */
}

.rounded-pill {
  border-radius: 25px;
}

.section-spacing {
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-image {
  position: relative;
  bottom: -100px;
  max-height: 500px;
  object-fit: contain;
  border-radius: 10px;    
}
.accent-border {
  border: 1px solid var(--bs-white-color-dark);
}

/* Animation Styles */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform: translateY(20px);
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform: translateX(-50px);
}

.slide-in-left.active {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform: translateX(50px);
}

.slide-in-right.active {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

/* Custom navbar style */
.navbar-brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--bs-brand-color);
  /* purple shade */
}

.footer .logo,
.navbar-brand img {
  min-height: 20px; 
  width: 150px;
}

/* Navbar link styles */
.nav-link {
  color: var(--bs-black-color);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--bs-brand-color);
  text-decoration: none;
}

.logo {
  max-height: 30px !important;
  width: 100px !important;

}

img,
svg {
  vertical-align: middle;
}

/* icon */
.social-media-icons li {
  margin-right: 15px;
  /* Adjust spacing as needed */
}

.social-media-icons li:last-child {
  margin-right: 0;
  /* Remove margin from the last icon */
}

.social-media-icons li a {
  color:var(--bs-gray-color);
  font-size: 18px;
  /* Optional: size of the icons */
  transition: color 0.3s ease;
}

.social-media-icons li a:hover {
  color: var(--bs-brand-color);
}

.social-media-icons {
  -webkit-box-align: center;
  align-items: center;
}

.col-md-4 {
  color: rgb(0, 0, 0);
}

.col-md-4.text-g {
  font-size: 10px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: px;
  /* Adjust space between columns */
  padding: 20px;
  --bs-gutter-x: 10px;
}

.col-md-4 {
  flex: 1 1 30%;
  min-width: 200px;
}

.text-g {
  font-weight: 700;
  color: var(--bs-gray-color);
  margin-bottom: 10px;
  font-size: 18px;
}

.address p {
  color: var(--bs-gray-color);
}

.text-dark {
  font-weight: bolder;
}

.footer-link {
  color:var(--bs-gray-color);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--bs-brand-color);
}

.footer p {
  margin-bottom: 0.5rem;
}

.contact-info i,
.title {
  color: var(--bs-gray-color);
  margin-bottom: 0.3rem !important;
}

.contact-info p {
  font-size: 0.9rem;
}

.contact-info .info {
  font-weight: 500;
  color: var(--bs-gray-color);
}

/*technology section style start*/

.bg {
  --bs-bg-opacity: 1;
  background-color: var(--bs-brand-color);
}

.form-section {
  padding: 2rem;
}

.btn-primary {
  background-color: var(--bs-brand-color);
  color: var(--bs-white-color);
  font-weight: 500;
  border: none;
  transition: background 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--bs-brand-color) !important;
  color: var(--bs-white-color) !important;
  border-color: var(--bs-brand-color) !important;
}

.btn-outline-primary {
 color: var(--bs-brand-color);
 border-color: var(--bs-brand-color);
 font-weight: 500;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  background-color: var(--bs-brand-color) !important;
  color: var(--bs-white-color) !important;
  border-color: var(--bs-brand-color) !important;
}

.form-control::placeholder {
  color:var(--bs-supporting-gray-light);
}

.linkedin-icon {
  font-size: 1.5rem;
  color:var(--bs-white-color);
}

.map-section {
  margin-left: 2%;
}

.map {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  width: 600px;
  height: 600px;
}

.faq-section {
  background: #f9fbf9;
  padding: 80px 0;
}

.faq-section h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

/* Accordion Styling */
.custom-accordion .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* Question */
.custom-accordion .accordion-button {
  background: #ffffff;
  font-weight: 600;
  padding: 18px 20px;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
}

/* Hover effect */
.custom-accordion .accordion-button:hover {
  background: #f1f8f1;
}

/* Active state */
.custom-accordion .accordion-button:not(.collapsed) {
  /* background: #6C63CC; */
  color: #6C63CC;
}

/* Arrow icon fix */
.accordion-button::after {
  filter: invert(0.5);
}

.accordion-button:not(.collapsed)::after {
  filter: invert(1);
}

/* Answer */
.custom-accordion .accordion-body {
  background: #ffffff;
  color: #555;
  padding: 15px 20px;
  line-height: 1.6;
}

/* Smooth animation */
.accordion-collapse {
  transition: all 0.3s ease;
}

/* ADD FAQ BUTTON STYLE */

.accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.accordion-button:not(.collapsed) {
  box-shadow: none !important;
}

.accordion-button::after {
  display: none;
}

.accordion-button.collapsed i {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) i {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.accordion-body {
  padding-top: 0px;
}

/* faq styling end */

.mb- {
  margin-bottom: 3rem !important;
}

.head {
  color: var(--bs-brand-color);
  text-align: left !important;
  color: var(--bs-dark-primary);
}

.p-4 p {
  text-align: left !important;
  color: var(--bs-gray-color);
}

.card {
  background-color:var(--bs-white-color);
  border: 1px solid var(--bs-gray-100);
  border-radius: 20px;
  padding: 30px;
  /* text-align: center; */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card {
  transition: all 0.3s ease;
  /* other styles */
}

.card:hover .logo,
.card:hover .icon-container {
  animation: bounce 0.8s ease;
}

.logo {
  display: inline-block;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-6px);
  }

  60% {
    transform: translateY(4px);
  }

  100% {
    transform: translateY(0);
  }
}


/* Section padding */
.section-spacing {
  padding: 60px 20px;
}

.main-title {
  font-weight: 600;
}

.sub-title {
  color: var(--bs-gray-color);
}

.why-choose-us-section p {
  font-size: 1rem;
}

.why-choose-us-section img {
  height: 280px;
  width: 100%;
}

.image-wrapper {
  overflow: hidden;
  border-top-left-radius: 14px !important;
  border-top-right-radius: 14px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  height: 250px;

}

.zoom-on-hover {
  transition: transform 0.5s ease;
  display: block;
}

.zoom-on-hover:hover {
  transform: scale(1.05);
}


/* Responsive Design */
@media (max-width: 991px) {
  .contact-form-container,
  .map-container {
    margin-bottom: 2rem;
  }

  .modern-map {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .contact-form-container,
  .map-container {
    padding: 1.5rem;
  }
  .modern-map {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .contact-form-container,
  .map-container {
    padding: 1rem;
  }
  .modern-map {
    height: 250px;
  }
}

.contact-border-img {
  inset-block-start: -2.5rem;
  inset-inline-end: -2.8125rem;
}

.contact-img-box,
.contact-img,
.map-wrapper {
  border-radius: 1rem;
}

.top-right-rotated {
  transform: scaleX(-1);
}

/* Optional: keep big size only for desktops */
@media (min-width: 992px) {
  .navbar-brand {
    font-size: 1.35rem;
    font-weight: 600;
  }
  .navbar-nav {
    gap: 2rem;
  }


  .contact-img-box {
    border-radius: 1rem 3.75rem 1rem 1rem;
  }

  .contact-img {
    border-radius: 1rem 3.75rem 1rem 1rem;
  }
  
  .map-wrapper {
    border-radius: 1rem 3.75rem 1rem 1rem;
  }

  .impact-details .row {
    text-align: center !important;
  }
}
/* Prevent image wrapping on iPhone SE and similar small screens */
@media (max-width: 576px) {
  .impact-box {
    /* flex-wrap: nowrap; */
  }
  .impact-box .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* Reduce padding on small screens to save space */
  .impact-box .p-4 {
    padding: 0.5rem !important;
  }
  .impact-box span {
    font-size: 0.875rem;
  }
  .impact-details .row {
    text-align: center !important;
  }
}
.gap-4 {
  gap: 1rem !important;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  opacity: 0.6;
}

.hero-section .left-side p {
  color: var(--bs-gray-color);
}
.hero-section .left-side span {
  color: var(--bs-brand-color);
}
.hero-section .left-side .btn {
  padding: 0.6rem 1.5rem;
}


@media (max-width: 767.98px) {
  .hero-section .left-side {
    padding-right: 0;
    /* or any value you want */
    /* padding: 1rem; */
  }
}

.accordion-button {
  background-color: var(--light-theme-background-01) !important;
}
.accordion-item {
  background-color: var(--light-theme-background-01);
}
/* case studis page */
.case_list_img img{
  height: 180px;
    width: 300px;
    padding-right: 20px;
}
@media (max-width: 992px) {
   .case_list_img img {
    margin-left: -14px;
  }
}
.case-studies {
  margin-bottom: 30px;
}

/* ============================
   Full Responsive Media Queries
   ============================ */

     /* Message animation  in Contact Us Section*/
    @keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Message appearance style */
#formMessage {
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#formMessage.show {
  animation: slideUp 0.5s ease forwards;
}

/* contact form set input focus outline */
.form-control:focus {
  border-color: var(--bs-brand-color) !important;
  box-shadow: none;
  outline: none;
}

/* new  css for orofix dentals */
.clinic-img{
  background-size: cover;
  height: 500px;
  width: 100px;
}

.doctor-img {
  position: relative;
  top: -100px;
  height: 450px;

}

/* Work gallery  */

.gallery-wrapper {
  overflow: hidden;
  position: relative;
}

.gallery-track {
  display: flex;
  width: calc(250px * 30);
  animation: scroll 25s linear infinite;
}

.gallery-track img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  margin: 0 10px;
  border-radius: 12px;
  transition: 0.3s;
}

.gallery-track img:hover {
  transform: scale(1.08);
}

.gallery-card {
  min-width: 300px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

#imageModal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(220, 231, 241, 0.9);
  text-align: center;
}

#modalImg {
  max-width: 90%;
  max-height: 80%;
  margin-top: 40px;
  border-radius: 10px;
}

.doctor-tagline {
  font-size: 16px;
  font-style: italic;
  color: #3164a5;
  font-weight: 600;
}


.team-section {
  color: #fff;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.team-card {
  background: #3164a5;
  padding: 25px 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

.team-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.team-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.team-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.teamUser {
  width: 110px;
  height: 110px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
}

.teamUser img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.doctor-tagline {
  margin-top: 20px;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 600;
  color: #3164a5;
  background: rgba(255, 255, 255, 0.9);
  display: inline-block;
  padding: 10px 18px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: relative;
}

/* Decorative quote effect */
.doctor-tagline::before {
  content: "“";
  font-size: 24px;
  color: #3164a5;
  margin-right: 5px;
}

.doctor-tagline::after {
  content: "”";
  font-size: 24px;
  color: #3164a5;
  margin-left: 5px;
}

.hero-rating {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 12px;
  margin-top: 20px;
}

.dr-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.doctor-link {
  text-decoration: none;
  color: #fff;
}

.doctor-link:hover {
  text-decoration: none;
  color: #fff;
}

.main-image{
  margin-top: 70px;
}
.hero-content{
  margin-top: 70px ;
  margin-bottom: 70px ;
}

@media (max-width: 767px) {
  .hero-image {
    max-width: 85%;
    margin: 20px auto;
    margin-top: unset;
    display: block;
    bottom: 10px;
  }
  .main-image{
    margin-top: unset;
    height: 100px;
  }
  .hero-content{
    margin-bottom: unset;
    margin-top: unset;
  }
}

.card:target {
  border: 2px solid #3164a5;
  box-shadow: 0 0 20px  rgba(	49, 100, 165);
  transform: scale(1.05);
  background-color: #EAEFF6;
}

.section-top-heading span {
  background-color: #FCFBFD;
 }

 /* key feature */
.feature-box h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.feature-box p {
  font-size: 14px;
  color: #6c7a89;
  margin: 0;
}

/* Center image circle */
.center-circle {
  width: 220px;
  height: 220px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

.center-circle img {
  width: 450px;
}

.feature-box {
  gap: 15px;
  padding-top: 70px;
}

.feature-box .icon {
  font-size: 28px;
  color: #6C63CC;
  min-width: 40px;
}

/* Mobile behavior */
@media (max-width: 992px) {
  .feature-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: unset;
  }
  .center-circle img{
    width: 150%;
  }
    .feature-box .icon {
    font-size: 24px;
    min-width: 30px;       
  }
}

/* screenshoart */

.list-group-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 10px;
  background: #f5f5f5;
  transition: 0.3s;
}

.list-group-item.active {
  background: #E1DFF4;
  color: #fff;
}

.list-group-item:hover {
  background: #E1DFF4;
}

 .operations {
    display: flex;
    gap: 40px;
    align-items: center;
  }

  .left {
    width: 40%;
  }

  .topic {
    padding: 15px;
    background: #eee;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 10px;
  }

  .topic.active {
    background: var(--bs-brand-soft);
    border-left: 5px solid var(--bs-brand-color);
  }

  .topic:hover {
    background: #ddd;
  }
  

  .content {
    margin-top: 10px;
    padding: 10px;
    display: none;
    font-size: 14px;
    color: #555;
  }

  .topic.active .content {
    display: block;
  }

  .right {
    width: 60%;
    text-align: center;
  }

.operations .right img{
    width: 100%;
    max-width: 620px;
    position: relative;
    z-index: 2;
    border-radius: 30px;
    object-fit: cover;
    background: #fff;
    padding: 14px;
    border: 1px solid rgba(91,101,220,0.12);
    box-shadow:
      0 25px 60px rgba(0,0,0,0.10),
      0 10px 25px rgba(91,101,220,0.12);
    transition: all 0.4s ease;
}

.nextBtn {
  display: none;
}


/* MOBILE ONLY */
@media (max-width: 768px) {

  .operations {
    flex-direction: column;
  }

  .left, .right {
    width: 100%;
  }

  /* Only ONE topic visible */
  .topic {
    display: none;
  }

  .topic.active {
    display: block;
  }

  /* Show arrow */
  .nextBtn {
    display: block;
    margin: 15px auto;
    background: var(--bs-brand-color);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
  }
}

/* Card */
.feature-card {
  position: relative;
  border-radius: 12px;
  /* padding: 60px 20px 25px; */
  background: #fff;
  transition: 0.3s;
  height: 100%;
}

/* Hover effect */
.feature-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transform: translateY(-5px);
   /* border: 2px solid #ff6a00; */
}


/* Title */
.feature-card h5 {
  color: #5f6b7a;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Text */
.feature-card p {
  font-size: 14px;
  color: #5f6b7a;
  margin: 0;
}

/* Icon */
.icon-Workflow {
  background: var(--bs-brand-color);
  border-radius: 14px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Step badge */
.step-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  /* background: linear-gradient(135deg, var(--bs-brand-dark-color), var( --bs-brand-soft-color)); */
  background: linear-gradient(135deg, var(--bs-brand-color), var(--bs-brand-soft));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Connecting line */
.feature-row::before {
  content: "";
  position: absolute;
  bottom: 50%;
  left: 5%;
  width: 90%;
  height: 2px;
  background: var(--bs-brand-color);
  z-index: 0;
}

.feature-card {
  position: relative;
  z-index: 1;
}

/* Mobile */
@media (max-width: 991px) {
  .feature-row::before {
    display: none;
  }
}

/* ===============================
   HERO SECTION
================================= */

.hero-section {
  background: #FAFAFD;
  position: relative;
  overflow: hidden;
}

.section-padding {
  padding: 100px 0;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left Content */

.hero-content {
  flex: 1;
  max-width: 520px;
}

.hero-content h1 {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  line-height: 30px;
  color: #666;
}

/* Right Image */

.hero-image {
  flex: 1;
  position: relative;
  text-align: center;
}

.circle-bg {
  width: 440px;
  height: 460px;
  background: var(--bs-brand-soft);
  border-radius: 50%;
  position: absolute;
  top: -130px;

  left: 50%;
  transform: translateX(-50%);
}

.circle-bg::before {
  content: "";
  position: absolute;
  inset: 35px;
  border-radius: 50%;
  background: var(--bs-brand-color);
}

.doctor-img {
  position: relative;
  z-index: 2;
  max-width: 420px;
}

/* Floating Cards */

.floating-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 15px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 3;
}

.top-card {
  top: 120px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-box {
  width: 45px;
  height: 45px;
  background:var(--bs-brand-soft);
  color: var(--bs-brand-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-card h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.top-card span {
  font-size: 12px;
  color: #888;
}

.bottom-card {
  bottom: 130px;
  left: 40px;
}

.bottom-card h5 {
  font-size: 16px;
  margin-bottom: 10px;
}

.customers {
  display: flex;
  align-items: center;
}

.customers img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
}

.customers span {
  width: 38px;
  height: 38px;
  background:var(--bs-brand-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
  font-weight: 700;
}

/* Item */

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-left: 40px;

}

/* Logo */

.brand-logo {
  max-width: 120px;
  padding-right: 40px;
}

.doctor-link {
  display: inline-block;
}

.hero-contact-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
  padding-left: 100px;
  padding-right: unset;


}

/* Contact Item */

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 250px;
  position: relative;
}

/* Border Line */

.contact-item::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 45px;
  background: #ececec;
}

.contact-item:last-child::after {
  display: none;
}

/* Icon */
.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--bs-brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color:var(--bs-brand-color);
  font-size: 18px;
}

/* Text */
.contact-text small {
  display: block;
  color: #9aa0a6;
  font-size: 12px;
  margin-bottom: 4px;
  font-weight: 500;
}

.contact-text h6 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
}

/* Responsive */

@media (max-width: 991px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    margin: auto;
  }

  .hero-content h1 {
    font-size: 42px;
  }

}

@media (max-width: 575px) {
  .hero-content h1 {
    font-size: 34px;
  }

  .doctor-img {
    max-width: 100%;
    position: relative;
    top: 30px;
  }

  .bottom-card {
    bottom: 10px;
    left: -40px;
  }

  .top-card {
    top: 230px;
    right: -40px;

  }

  .circle-bg {
    width: 330px;
    height: 330px;
    top: 10px;
  }

  .floating-card {
    transform: scale(0.9);
  }
}

@media (max-width: 991px) {

  .contact-info-box {
    padding: 30px 25px;
    position: relative;
    top: -150px;
  }

  .info-item {
    margin-bottom: 25px;
  }

  .brand-logo {
    max-width: 150px;
    padding-right: unset;
  }
}

@media (max-width: 575px) {

  .contact-info-box {
    padding: 25px 20px;
    border-radius: 14px;
  }

  .info-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding-left: unset;
  }

  .info-text span {
    line-height: 26px;
  }
}

@media (max-width: 991px) {

  .contact-item::after {
    display: none;
  }
}

@media (max-width: 575px) {

  .hero-contact-box {
    padding: 20px;
    padding-left: 20px;
  }

  .contact-item {
    min-width: 100%;
  }
}

/*================================
   SERVICES SECTION
================================*/

.services-section {
  background: #ffffff;
}

.section-padding {
  padding: 100px 0;
}

/* Service Card */

.service-card {
  background: #f8f9fa;
  border: 1px solid var(--bs-brand-soft);
  border-radius: 12px;
  padding: 29px 20px;
  text-align: center;
  transition: .3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* Icon */
.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--bs-brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 28px;
  color:var(--bs-brand-color);
}

/* Content */

.service-card h5 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  line-height: 26px;
  color: #666;
  margin-bottom: 0;
}

/* Responsive */

@media (max-width: 991px) {

  .section-padding {
    padding: 80px 0;
  }
  .service-card {
    padding: 30px 18px;
  }
}

@media (max-width: 575px) {

  .section-padding {
    padding: 70px 0;
  }

  .service-card {
    padding: 25px 15px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i {
    font-size: 24px;
  }

  .service-card h5 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
    line-height: 22px;
  }

  .services-section .col-6 {
    width: 100%;
  }
}

.bg-light {
  background-color: #FAFAFD !important;
}

/*================================
    TESTIMONIAL SECTION
================================*/

.testimonial-section {
  background: #fff;
}

.section-padding {
  padding: 100px 0;
}

/* Card */

.testimonial-card {
  background: #fff;
  border: 1.5px solid var(--bs-brand-color);
  border-radius: 28px;
  padding: 35px 30px;
  position: relative;
  transition: .4s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Quote */

.quote-icon {
  position: absolute;
  top: 20px;
  right: 25px;
}

.quote-icon i {
  font-size: 60px;
  color: #bdbdbd;
  opacity: .5;
}

/* User */

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 25px;
}

.testimonial-user img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #111;
}

.user-info span {
  font-size: 14px;
  color: #888;
}

/* Text */

.testimonial-card p {
  font-size: 15px;
  line-height: 28px;
  color: #666;
  margin-bottom: 0;
}

/* Responsive */

@media (max-width: 991px) {

  .section-padding {
    padding: 80px 0;
  }

}

@media (max-width: 575px) {

  .section-padding {
    padding: 70px 0;
  }

  .testimonial-card {
    padding: 30px 22px;
  }

  .quote-icon i {
    font-size: 48px;
  }

  .testimonial-user {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-card p {
    text-align: center;
  }
}

/* FAQ Contact Card */
.faq-contact-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: left;
  height: 100%;
}

.faq-profile-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 25px;
}

.faq-contact-card h5 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1e293b;
}

.faq-contact-card p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 25px;
}

/*Why Choos us Card Styling */
.choos-card {
  background-color:var(--bs-white-color);
  border: 1px solid var(--bs-gray-100);
  border-radius: 14px;
  transition: all 0.4s ease;
  padding: 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* Heading */
.choos-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--bs-black-color);
}
.choos-card h5{
  /* width: 350px; */
}

/* Paragraph */
.choos-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--bs-gray-color);
}

.card:target {
  border: 2px solid #3164a5;
  box-shadow: 0 0 20px  rgba(	49, 100, 165);
  transform: scale(1.05);
  background-color: #EAEFF6;
}

/*  */

.impact-box {
  display: flex;
  align-items: flex-end;
}

.impact-box h3 {
  font-weight: 600;
  font-size: 2rem;
}

/* ================= BENEFITS & SECURITY ================= */

/* Benefits */

.benefits-list{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-card{
    display: flex;
    align-items: start;
    gap: 22px;
    background: #fff;
    padding: 28px;
    border-radius: 22px;
    transition: 0.3s ease;
    border: 1px solid #ececec;
}

.benefit-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.benefit-icon{
    min-width: 65px;
    height: 65px;
    background: var(--bs-brand-soft);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i{
    color:var(--bs-brand-color);
    font-size: 26px;
}

.benefit-card h5{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-card p{
    color: #777;
    line-height: 1.8;
    margin: 0;
}

/* Right Side */

.security-wrapper{
    position: relative;
    padding: 40px;
}

.security-main-card{
    background: var(--bs-brand-color);
    border-radius: 30px;
    padding: 45px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(91,101,220,0.25);
}

/* Top */

.security-top{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.security-icon{
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-icon i{
    font-size: 34px;
}

.security-top h4{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
}

.security-top p{
    opacity: 0.9;
    margin: 0;
}

/* Progress */

.progress-item{
    margin-bottom: 30px;
}

.progress-text{
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 600;
}

.progress-line{
    width: 100%;
    height: 12px;
    background: rgba(255,255,255,0.18);
    border-radius: 30px;
    overflow: hidden;
}

.progress-fill{
    height: 100%;
    border-radius: 30px;
    background: #fff;
}

.fill-1{
    width: 98%;
}

.fill-2{
    width: 99%;
}

.fill-3{
    width: 95%;
}

/* Floating Cards */

.floating-security-card{
    position: absolute;
    background: #fff;
    border-radius: 20px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    min-width: 260px;
}

.floating-security-card i{
    width: 55px;
    height: 55px;
    background: var(--bs-brand-soft);
    color:var(--bs-brand-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.floating-security-card span{
    color: #777;
    font-size: 14px;
}

/* Positions */

.card-1{
    top: 0;
    right: -20px;
}

.card-2{
    bottom: 0;
    left: 0;
}

/* Responsive */

@media(max-width:991px){

    .section-heading h2{
        font-size: 38px;
    }

    .security-wrapper{
        padding: 20px 0;
    }

    .floating-security-card{
        position: relative;
        margin-top: 20px;
        right: auto;
        left: auto;
        top: auto;
        bottom: auto;
    }
}

@media(max-width:576px){

    .benefits-security-section{
        padding: 80px 0;
    }

    .section-heading h2{
        font-size: 30px;
    }

    .benefit-card{
        flex-direction: column;
    }

    .security-main-card{
        padding: 30px 24px;
    }

    .security-top{
        flex-direction: column;
        align-items: start;
    }

    .security-top h4{
        font-size: 24px;
    }

    .floating-security-card{
        min-width: 100%;
    }
}

/* heading star */
.heading-top {
    text-transform: uppercase;
    color: var(--my-primary);
    font-weight: 500;
    line-height: 1.5em;
    letter-spacing: 0.2em;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
    margin-bottom: 16px;
    display: inline-block;
}

.heading-top::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-image: url("../assets/img/star.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}