html,
body {
	overflow-x: clip;
	max-width: 100vw;
}

html {
	scroll-behavior: smooth;
}

.hero-parallax {
	background-image: url("../images/hero-bg.jpg");
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	height: 100vh;
	position: relative;
	z-index: 1;
}

.hero-parallax::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: -1;
}

.hero-parallax .container {
	position: relative;
	z-index: 2;
}

.navbar-brand {
	font-weight: bold;
	font-size: 1.5rem;
}
section {
	padding-top: 60px;
	padding-bottom: 60px;
}
section h2 {
	margin-bottom: 40px;
}

.card-img-top {
  height: 100%;
  object-fit: cover;
}

.service-strip img {
  max-width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

.service-strip {
  padding: 1.5rem 0;
}

.service-strip:nth-child(even) {
  background-color: #f8f9fa;
}

@media (max-width: 768px) {
  .service-strip .row {
    flex-direction: column !important;
  }

  .service-strip img {
    margin-bottom: 1.5rem;
  }
}

.doctor-scroll-wrapper {
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.doctor-scroll {
  gap: 1rem;
  flex-wrap: nowrap;
  padding-bottom: 0.5rem;
}

.doctor-card {
  flex: 0 0 auto;
  width: 250px;
}

.team-card {
  background: white;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #0d6efd;
  margin: 0 auto;
}

.doctor-scroll-wrapper::-webkit-scrollbar {
  height: 10px;
}

.doctor-scroll-wrapper::-webkit-scrollbar-track {
  background: #e9ecef; 
  border-radius: 10px;
}

.doctor-scroll-wrapper::-webkit-scrollbar-thumb {
  background-color: #0d6efd; 
  border-radius: 10px;
  border: 2px solid #e9ecef; 
}

.glass-contact-section {
  background: url('../images/bg-blur.jpg') center/cover no-repeat;
  position: relative;
  color: white;
}

.glass-form {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.glass-form .form-control {
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.glass-form .form-control::placeholder {
  color: #151515;
}

.glass-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.footer-section {
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.footer-section .footer-link {
  color: rgba(0, 0, 0, 0.85);
}

.footer-section .footer-link:hover {
  color: #2cabff;
}

.footer-section h6 {
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-section .social-icons i {
  font-size: 1rem;
  transition: color 0.3s;
}

.footer-section .social-icons i:hover {
  color: #d1e9ff;
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #fff;
}

.newsletter-form .form-control::placeholder {
  color: rgba(82, 82, 82, 0.7);
}

.newsletter-form .btn {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: background-color 0.3s;
}

.newsletter-form .btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}




