/* Dawn Eye Care Center - New Design Stylesheet */

/* Variables */
:root {
  --primary: #0d6efd;
  --primary-dark: #0a58ca;
  --primary-light: #cfe2ff;
  --dark-blue: #1a2b5b;
  --dark-blue-footer: #1a3273;
  --accent: #ff6b6b;
  --text-dark: #212529;
  /* --text-muted: #9bbafc; */
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #212529;
  background-color: #ffffff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Navigation */
.navbar {
  background-color: #ffffff !important;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-dark .navbar-brand {
  color: #03246b !important;
  font-size: 1.5rem;
  font-weight: 700;
}

.navbar-dark .navbar-brand i {
  font-size: 1.75rem;
  color: var(--primary-light);
}

.navbar-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.navbar-dark .nav-link {
  /* color: rgba(255, 255, 255, 0.9) !important; */
  color: #03246b;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.navbar-dark .nav-link:hover,
.navbar-dark .nav-link.active {
  color: #03246b !important;
}

.navbar-dark .nav-link.active {
  text-decoration: underline;
}

/* Phone Link with Animated Icon */
.phone-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.phone-link:hover {
  color: var(--primary) !important;
  transform: translateY(-2px);
}

.phone-icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.phone-icon {
  font-size: 1.25rem;
  color: var(--primary);
  animation: phoneRing 2s ease-in-out infinite;
  position: relative;
}

.phone-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.3;
  animation: phonePulse 2s ease-in-out infinite;
}

.phone-number {
  font-size: 1rem;
  font-weight: 600;
}

@keyframes phoneRing {

  0%,
  100% {
    transform: rotate(0deg);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: rotate(-10deg);
  }

  20%,
  40%,
  60%,
  80% {
    transform: rotate(10deg);
  }
}

@keyframes phonePulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0.3;
  }
}

/* Book Appointment Button */
.btn-appointment {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-appointment:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.btn-appointment:active {
  transform: translateY(0);
}

.btn-appointment i {
  animation: calendarPulse 2s ease-in-out infinite;
}

@keyframes calendarPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

/* Hero Section - New Design */
.hero-section-new {
  background: #03246b;
  padding-top: 100px;
  padding-bottom: 60px;
  min-height: auto;
  display: flex;
  align-items: center;
}

.hero-content-new {
  color: white;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.search-box {
  display: flex;
  gap: 0.5rem;
  max-width: 500px;
}

.search-box .form-control {
  border-radius: 50px;
  padding: 1rem 1.5rem;
  border: none;
  font-size: 1rem;
}

.search-box .btn-search {
  background: var(--primary);
  color: white;
  border-radius: 50px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: all 0.3s ease;
}

.search-box .btn-search:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.hero-image-new {
  position: relative;
}

.hero-image-new img {
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stat-overlay {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--primary);
  color: white;
  padding: 2rem;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-overlay h2 {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-overlay p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Promo and Stat Cards */
.promo-card {
  background: transparent;
  padding: 1rem 0;
  border-radius: 0;
  backdrop-filter: none;
}

.stat-card-new {
  background: transparent;
  padding: 1rem 0;
  border-radius: 0;
  backdrop-filter: none;
}

.stat-card-new h2 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
}

/* Services Section - New Design */
.services-section-new {
  background: #f0f4f8;
  padding: 80px 0;
}

.section-title-new {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 1rem;
}

.service-card-new {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 4rem;
  font-weight: 800;
  color: #e9ecef;
  line-height: 1;
  z-index: 1;
}

.service-title-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.service-description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-link-new {
  color: var(--dark-blue);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.service-link-new:hover {
  color: var(--primary);
  transform: translateX(5px);
}

/* Better Visual Section */
.better-visual-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.better-visual-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.better-visual-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.feature-list li i {
  font-size: 1.5rem;
}

.video-thumbnail {
  position: relative;
  display: inline-block;
}

.video-thumbnail img {
  width: 100%;
  max-width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.play-button:hover {
  background: var(--primary-dark);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Products Section */
.products-section {
  padding: 80px 0;
  background: var(--dark-blue);
  color: white;
}

.products-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.products-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.product-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-image-wrapper {
  position: relative;
  margin-bottom: 1rem;
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.sale-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.product-rating {
  margin-bottom: 0.5rem;
}

.product-price {
  margin-top: 0.5rem;
}

.old-price {
  text-decoration: line-through;
  color: var(--text-muted);
  margin-right: 0.5rem;
}

.new-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* Appointment Section - New Design */
.appointment-section-new {
  padding: 80px 0;
  background: white;
}

.appointment-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0;
}

.appointment-title-primary {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 3rem;
}

.eye-image-center {
  text-align: center;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  width: 100%;
  /* margin-top: 180px; */
  /* margin: 0 auto; */
}

.eye-image-center img {
  max-width: 400px;
  width: 100%;
  max-height: 400px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  margin-top: 190px
}


.appointment-service-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 1rem;
  height: 280px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.appointment-service-card:hover {
  background: var(--primary-light);
  transform: translateY(-5px);
}

.appointment-service-card h4 {
  color: var(--dark-blue);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.appointment-service-card p {
  color: var(--text-muted);
  margin-bottom: auto;
  flex-grow: 1;
}

.appointment-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-top: auto;
}

.appointment-link:hover {
  color: var(--primary-dark);
}

/* About & Reviews Section */
.about-reviews-section {
  padding: 80px 0;
  background: white;
}

.doctor-image-wrapper {
  position: relative;
  display: inline-block;
}

.doctor-image-wrapper img {
  width: 100%;
  max-width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.consultation-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--primary);
  color: white;
  padding: 2rem;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.consultation-badge h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.consultation-badge p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.about-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.accordion-new .accordion-item {
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-new .accordion-button {
  background: #f8f9fa;
  color: var(--text-dark);
  font-weight: 600;
  border: none;
  padding: 1.25rem;
}

.accordion-new .accordion-button:not(.collapsed) {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.accordion-new .accordion-body {
  padding: 1.25rem;
  color: var(--text-muted);
}

.reviews-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.reviews-intro {
  color: var(--text-muted);
  font-size: 1rem;
}

.review-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 1rem;
  height: 100%;
}

.review-title {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.review-text {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #dee2e6;
  border: none;
  margin: 0 5px;
}

.carousel-indicators button.active {
  background: var(--primary);
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: #f0f4f8;
}

.gallery-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.gallery-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Contact Section - New Design */
.contact-section-new {
  min-height: 600px;
}

.contact-info-section {
  background: var(--dark-blue);
  color: white;
  padding: 80px 60px;
  display: flex;
  align-items: center;
}

.contact-info-content {
  width: 100%;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
}

.contact-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  font-size: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon-wrapper {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-wrapper i {
  font-size: 1.5rem;
  color: white;
}

.contact-link {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 0.25rem;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--primary-light);
}

.contact-footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 3rem;
}

.contact-form-section {
  background: #f8f9fa;
  padding: 80px 60px;
  display: flex;
  align-items: center;
}

.contact-form-content {
  width: 100%;
}

.form-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.consultation-form .form-control,
.consultation-form .form-select {
  border-radius: 0.5rem;
  border: 2px solid #e9ecef;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.consultation-form .form-control:focus,
.consultation-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.consultation-form .form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

/* Locations Section */
.locations-section {
  padding: 80px 0;
  background: white;
}

.locations-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.locations-description {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hours-info {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 1rem;
}

.hours-icon-wrapper {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hours-icon-wrapper i {
  font-size: 1.5rem;
  color: white;
}

.locations-footer {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.map-container-new {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container-new iframe {
  width: 100%;
  height: 500px;
  border: none;
}

/* Footer - New Design */
.footer-new {
  background: var(--dark-blue-footer);
  color: white;
  padding: 60px 0 30px;
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-logo i {
  color: var(--primary-light);
}

.footer-logo-img {
  height: 35px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.social-links-new {
  display: flex;
  gap: 1rem;
}

.social-link-new {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link-new:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: white;
}

.news-item {
  margin-bottom: 1.5rem;
}

.news-title {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.news-meta {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact i {
  color: var(--primary-light);
  margin-top: 0.25rem;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 3rem 0 2rem;
}

.copyright-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .eye-image-center img {
    max-width: 300px !important;
    margin-top: 10px !important;
  }

  .hero-title {
    font-size: 2rem;
  }

  .stat-overlay {
    width: 150px;
    height: 150px;
    padding: 1.5rem;
  }

  .stat-overlay h2 {
    font-size: 2rem;
  }

  .better-visual-title,
  .products-title,
  .gallery-title {
    font-size: 2rem;
  }

  .contact-info-section,
  .contact-form-section {
    padding: 60px 40px;
  }

  .video-thumbnail img {
    max-width: 400px;
    height: 400px;
  }

  .doctor-image-wrapper img {
    max-width: 400px;
    height: 400px;
  }
}

@media (max-width: 768px) {

  .hero-section-new {
    padding-top: 80px;
    padding-bottom: 50px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .phone-link {
    font-size: 0.9rem;
  }

  .phone-number {
    font-size: 0.9rem;
  }

  .btn-appointment {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
  }

  .btn-appointment i {
    font-size: 0.9rem;
  }

  .section-title-new {
    font-size: 2rem;
  }

  .stat-overlay {
    width: 120px;
    height: 120px;
    padding: 1rem;
    bottom: 15px;
    right: 15px;
  }

  .stat-overlay h2 {
    font-size: 1.5rem;
  }

  .stat-overlay p {
    font-size: 0.75rem;
  }

  .service-number {
    font-size: 3rem;
  }

  .contact-info-section,
  .contact-form-section {
    padding: 40px 30px;
  }

  .contact-title {
    font-size: 2rem;
  }

  .video-thumbnail img {
    max-width: 300px;
    height: 300px;
  }

  .doctor-image-wrapper img {
    max-width: 300px;
    height: 300px;
  }

  .consultation-badge {
    width: 120px;
    height: 120px;
    padding: 1.5rem;
  }

  .consultation-badge h3 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .search-box {
    flex-direction: column;
  }

  .phone-link {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .phone-number {
    font-size: 0.85rem;
  }

  .btn-appointment {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    width: 100%;
  }

  .navbar .d-flex.align-items-center {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
  }

  .search-box .btn-search {
    width: 100%;
    border-radius: 50px;
  }

  .stat-card-new h2 {
    font-size: 2.5rem;
  }

  .service-card-new {
    padding: 1.5rem;
  }

  .appointment-service-card {
    padding: 1.5rem;
    height: 250px;
  }

  .eye-image-center {
    padding: 1rem;
    height: 250px;
  }

  .eye-image-center img {
    max-width: 300px !important;
    margin-top: 0px !important;
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }
}

/* Smooth Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}