:root {
  --primary-blue: #4054b2;
  --primary-gradient: linear-gradient(45deg, #4753bf, #506cd7);
  --navy-blue: #0b0b45;
  --text-gray: #666;
  --light-bg: #f8f9ff;
}

body {
  background-color: #f3f3ff;
  border: none;
  padding: none;
}

.navbar {
  padding: 15px 30px;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: bold;
  font-size: 24px;
  color: #000;
}

.nav-link {
  color: #333 !important;
  margin: 0 10px;
  font-size: 16px;
}

.nav-link.active {
  color: var(--primary-blue) !important;
  border-bottom: 2px solid var(--primary-blue);
}

.phone-number {
  display: flex;
  align-items: center;
  margin-right: 20px;
  border-radius: 20px;
  border: 1px solid #e1e1e1;
  background-color: #ffffff;
  outline: none;
}

.flag-icon {
  width: 20px;
  margin-right: 8px;
}

.get-started-btn {
  background: var(--primary-gradient);
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.get-started-btn:hover {
  background-color: #334293;
  color: white;
}

.dropdown-toggle::after {
  margin-left: 8px;
}

.banner-section {
  padding: 50px 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.welcome-text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-blue);
  font-size: 18px;
  margin-bottom: 20px;
}

.welcome-text img {
  width: 24px;
  height: 24px;
}

.main-heading {
  font-size: 48px;
  color: var(--navy-blue);
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
}

.alternative-text {
  color: var(--primary-blue);
  position: relative;
}

.alternative-text::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-gradient);
}

.subheading {
  color: var(--text-gray);
  font-size: 18px;
  margin-bottom: 40px;
}

.search-container {
  margin-bottom: 30px;
}

.search-title {
  font-size: 20px;
  color: var(--navy-blue);
  font-weight: bold;
  margin-bottom: 20px;
}

.search-box {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  background: #ffffff;
  padding: 10px;
  border-radius: 50px;
  /* border: 2px solid; */
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.search-input {
  flex: 1;
  position: relative;
}

.search-input input,
.search-input select {
  width: 100%;
  padding: 12px 40px;
  border: none;
  outline: none;
  border-radius: 5px;
  font-size: 16px;
}

.search-input img {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.search-button {
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  width: 56px;
  height: 56px;
  font-size: 20px;
}

.tags-container {
  margin-top: 20px;
}

.tag {
  display: inline-flex;
  align-items: center;
  background: #f5f5f5;
  padding: 8px 15px;
  border-radius: 20px;
  margin-right: 10px;
  margin-bottom: 10px;
  color: var(--text-gray);
}

.tag i {
  margin-left: 8px;
  color: #ff4444;
  cursor: pointer;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.google-rating img {
  width: 20px;
  height: 20px;
}

.stars {
  color: #ffd700;
}

.rating-text {
  color: var(--text-gray);
}

.stats-bar {
  background-color: var(--navy-blue);
  color: white;
  padding: 20px 0;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.8;
}

.floating-icons {
  position: absolute;
  right: 20%;
  top: 10%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.floating-icon {
  width: 40px;
  height: 40px;
  color: var(--primary-blue);
}

.about-section {
  padding: 80px 0;
  background-color: #fff !important;
}

.about-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-blue);
  font-size: 16px;
  margin-bottom: 20px;
}

.about-tag i {
  color: var(--primary-blue);
  font-size: 20px;
}

.section-title {
  font-size: 40px;
  color: var(--navy-blue);
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 25px;
}

.description {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.feature-content h3 {
  font-size: 18px;
  color: var(--navy-blue);
  margin-bottom: 10px;
}

.feature-content p {
  color: var(--text-gray);
  font-size: 14px;
  margin: 0;
  max-width: 368px;
}

.image-section {
  position: relative;
  padding-left: 30px;
}

.main-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.video-card {
  position: absolute;
  top: 30px;
  left: 0;
  background: white;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 250px;
}

.video-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.video-card p {
  color: var(--navy-blue);
  font-weight: bold;
  margin: 0;
  text-align: center;
}

.doctors-wrapper {
  padding: 0 20px;
  background: white;
}
.doctors-wrapper-cover {
  padding: 50px 0;
  border-radius: 50px;
  background-color: var(--light-bg);
}

.doctors-section-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-blue);
  font-size: 16px;
  justify-content: center;
  margin-bottom: 20px;
}

.doctors-section-title {
  font-size: 40px;
  color: var(--navy-blue);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.doctors-section-description {
  text-align: center;
  color: var(--text-gray);
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.doctors-card {
  margin-bottom: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.doctors-card-image {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  object-fit: cover;
}

.doctors-rating {
  position: absolute;
  top: 15px;
  left: 15px;
  background: white;
  padding: 5px 10px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.doctors-rating i {
  color: #ffd700;
}

.doctors-social-links {
  display: flex;
  justify-content: center;
  gap: 35px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.doctors-social-links a {
  color: var(--primary-blue);
  text-decoration: none;
  font-size: 20px;
}

.doctors-info-container {
  padding: 20px;
}

.doctors-name {
  color: var(--navy-blue);
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  margin-bottom: 5px;
}

.doctors-specialty {
  color: var(--text-gray);
  text-align: center;
  font-size: 14px;
  margin-bottom: 15px;
}

.doctors-hospital-info {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 10px;
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 8px;
}

.doctors-hospital-info i {
  color: var(--primary-blue);
  font-size: 20px;
}

.doctors-view-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.docter_crad_location_wrapper{
    display: inline-flex;
    flex-direction: column;
}
.docter_card_content{
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: white;
    border-radius: 20px;
    margin-top: -60px;
}