@charset "UTF-8";

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

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-color: #f8f9fa;
}

/* Typography Standards */
h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  color: #2c3e50;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #2c3e50;
}

h4 {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: #2c3e50;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #666;
}

/* Icon Standards */
.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2c3e50, #3498db);
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-wrapper i {
  font-size: 2.2rem;
  color: white;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.icon-wrapper:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #3498db, #2c3e50);
}

.icon-wrapper:hover i {
  transform: scale(1.2);
  animation: float 3s ease-in-out infinite;
}

/* Responsive Typography */
@media (max-width: 991.98px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  h3 {
    font-size: 1.6rem;
  }
  
  h4 {
    font-size: 1.3rem;
  }
  
  p {
    font-size: 1rem;
  }
  
  .icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .icon-wrapper i {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.4rem;
  }
  
  h4 {
    font-size: 1.2rem;
  }
  
  p {
    font-size: 0.95rem;
  }
  
  .icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .icon-wrapper i {
    font-size: 1.8rem;
  }
}

.container {
  position: relative;
  z-index: 1;
}

/* Section Title Styles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #3498db;
    border-radius: 3px;
}
.section-description {
    font-size: 20px;   /* Increase as needed (e.g., 20px, 22px) */
    line-height: 1.6;  /* Improves readability */
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.background-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.05;
  background-image: 
    radial-gradient(circle at 25px 25px, var(--bs-primary) 2%, transparent 0%),
    radial-gradient(circle at 75px 75px, var(--bs-primary) 2%, transparent 0%);
  background-size: 100px 100px;
  animation: patternMove 20s linear infinite;
}

.background-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.background-shapes::before,
.background-shapes::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.1), rgba(var(--bs-primary-rgb), 0.05));
}

.background-shapes::before {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  animation: float 15s ease-in-out infinite;
}

.background-shapes::after {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  animation: float 20s ease-in-out infinite reverse;
}

@keyframes patternMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 100px;
  }
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, 20px) rotate(5deg);
  }
  50% {
    transform: translate(0, 40px) rotate(0deg);
  }
  75% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
      radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite alternate;
}

.background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero h1 {
  color: white;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.hero .hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.services {
  position: relative;
  overflow: hidden;
  background-color: #f8f9fa;
  padding: 5rem 0;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(44, 62, 80, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(52, 152, 219, 0.05) 0%, transparent 50%);
  z-index: 0;
  animation: pulse 8s ease-in-out infinite alternate;
}

.services::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, transparent 48%, rgba(44, 62, 80, 0.03) 48%, rgba(44, 62, 80, 0.03) 52%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(52, 152, 219, 0.03) 48%, rgba(52, 152, 219, 0.03) 52%, transparent 52%);
  background-size: 50px 50px;
  z-index: 0;
  opacity: 0.5;
  animation: patternMove 20s linear infinite;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-card .icon-wrapper {
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card .service-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-card .service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.service-card .service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
}

.appointment {
  position: relative;
  background-color: #e8f4f8;
  padding: 5rem 0;
}
.appointment .background-pattern {
  background-image: url("../assets/pattern3.svg");
}
.appointment .appointment-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.appointment .appointment-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.appointment .appointment-form .form-control {
  border: 1px solid #ddd;
  padding: 0.75rem;
  margin-bottom: 1rem;
}
.appointment .appointment-form .form-control:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}
.appointment .appointment-info {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.appointment .appointment-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.appointment .appointment-info h3 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
}
.appointment .appointment-info .appointment-features {
  list-style: none;
  padding: 0;
}
.appointment .appointment-info .appointment-features li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}
.appointment .appointment-info .appointment-features li i {
  color: #3498db;
  position: absolute;
  left: 0;
  top: 0.25rem;
}

.team {
  position: relative;
  background-color: #f5f7fa;
  padding: 5rem 0;
}
.team .background-pattern {
  background-image: url("../assets/pattern4.svg");
}
.team .team-member {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team .team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.team .team-member .profile-image {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
}
.team .team-member .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team .team-member .profile-image .social-links {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.team .team-member .profile-image .social-links a {
  color: white;
  transition: color 0.3s ease;
}
.team .team-member .profile-image .social-links a:hover {
  color: #3498db;
}
.team .team-member h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}
.team .team-member .specialty {
  color: #3498db;
  font-weight: 500;
  margin-bottom: 1rem;
}
.team .team-member .bio {
  color: #666;
  font-size: 0.9rem;
}

.contact {
  position: relative;
  background-color: #2c3e50;
  padding: 5rem 0;
  color: white;
}
.contact .background-pattern {
  background-image: url("../assets/pattern5.svg");
}
.contact .wave-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("../assets/wave.svg") no-repeat;
  background-size: cover;
}
.contact .contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}
.contact .contact-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.75rem;
  margin-bottom: 1rem;
}
.contact .contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.contact .contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: #3498db;
  box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}
.contact .contact-info .info-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}
.contact .contact-info .info-item i {
  font-size: 1.5rem;
  color: #3498db;
  margin-bottom: 1rem;
}
.contact .contact-info .info-item h4 {
  color: white;
  margin-bottom: 0.5rem;
}
.contact .contact-info .info-item p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}
.contact .contact-info .info-item .btn-outline-primary {
  color: white;
  border-color: white;
}
.contact .contact-info .info-item .btn-outline-primary:hover {
  background: white;
  color: #6ca8e3;
}

.emergency-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}
.emergency-button .btn-danger {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(52, 152, 219, 0.5);
  transition: box-shadow 0.3s ease;
}
.emergency-button .btn-danger:hover {
  box-shadow: 0 0 25px rgba(52, 152, 219, 0.7);
}
.emergency-button .btn-danger i {
  margin-right: 0.5rem;
}

.footer {
  background-color: #1a2a3a;
  color: white;
  padding: 4rem 0 2rem;
}
.footer h3, .footer h4 {
  color: white;
  margin-bottom: 1.5rem;
}
.footer p {
  color: rgba(255, 255, 255, 0.7);
}
.footer .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer .social-links a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
.footer .social-links a:hover {
  color: #3498db;
}
.footer .footer-links {
  list-style: none;
  padding: 0;
}
.footer .footer-links li {
  margin-bottom: 0.75rem;
}
.footer .footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .footer-links li a:hover {
  color: white;
}
.footer .contact-info {
  list-style: none;
  padding: 0;
}
.footer .contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.footer .contact-info li i {
  color: #3498db;
  margin-right: 1rem;
  margin-top: 0.25rem;
}
.footer .contact-info li p {
  margin: 0;
}
.footer .footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.footer .footer-bottom p {
  margin: 0;
}
.footer .footer-bottom p a {
  color: #3498db;
  text-decoration: none;
}
.footer .footer-bottom p a:hover {
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero .lead {
    font-size: 1.25rem;
  }
  .section-title {
    font-size: 2rem;
  }
}
@media (max-width: 767.98px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero .lead {
    font-size: 1.1rem;
  }
  .hero .hero-buttons {
    flex-direction: column;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .emergency-button {
    bottom: 1rem;
    right: 1rem;
  }
  .emergency-button .btn-danger {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 0.5rem 0.8rem !important;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--bs-primary) !important;
}

.nav-link-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--bs-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover .nav-link-underline {
    width: 80%;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.4);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: white;
        padding: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .nav-link-underline {
        display: none;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 1rem !important;
    }
}

/* Forms */
.form-control {
    color: #000000;
}

.form-control option {
    color: #000000;
}

select.form-control {
    color: #000000;
}

select.form-control option {
    color: #000000;
}

/*# sourceMappingURL=style.css.map */

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-animation {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pulse {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    border-radius: 50%;
    animation: pulse 1s ease-in-out infinite;
}

.heartbeat {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: heartbeat 1s ease-in-out infinite;
}

.heartbeat::before {
    content: '❤';
    font-size: 30px;
    color: #e74c3c;
    animation: heartbeat-icon 1s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes heartbeat-icon {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Media Section Styles */
.media-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* News Card Styles */
.news-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    position: relative;
}
.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.news-card .news-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}
.news-card .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-card:hover .news-image img {
    transform: scale(1.1);
}
.news-card .news-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 188, 212, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}
.news-card .news-content {
    padding: 25px;
}
.news-card .news-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #000;
    transition: color 0.3s ease;
}
.news-card:hover .news-content h3 {
    color: #00bcd4;
}
.news-card .news-content p {
    color: #666;
    margin-bottom: 20px;
}
.news-card .news-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #888;
    font-size: 0.9rem;
}
.news-card .news-meta i {
    color: #00bcd4;
    margin-right: 5px;
}

/* Patient Stories Section */
.stories-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4b6181 0%, #2e779b 100%);
    color: white;
}
.story-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}
.story-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}
.story-card .story-quote {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}
.story-card .story-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
}
.story-card .story-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.story-card .story-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.story-card .story-author-info h4 {
    margin: 0;
    font-size: 1.1rem;
}
.story-card .story-author-info p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Health Tips Section */
.tips-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}
.tip-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    height: 100%;
}
.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.tip-card i {
    font-size: 2.5rem;
    color: #00bcd4;
    margin-bottom: 20px;
}
.tip-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #000;
}
.tip-card p {
    color: #666;
    margin-bottom: 20px;
}
.tip-card .tip-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #888;
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    color: white;
}
.newsletter-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}
.newsletter-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.newsletter-card p {
    margin-bottom: 30px;
    opacity: 0.9;
}
.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}
.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
}
.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.newsletter-form .btn {
    background: white;
    color: #00bcd4;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.newsletter-form .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* Stories and Newsletter Section Title Colors */
.stories-section .section-title h2,
.newsletter-section .section-title h2 {
    color: white;
}
.stories-section .section-title p,
.newsletter-section .section-title p {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Adjustments for Media Sections */
@media (max-width: 768px) {
    .media-section,
    .stories-section,
    .tips-section,
    .newsletter-section {
        padding: 40px 0;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .news-card .news-image {
        height: 200px;
    }
    .newsletter-card {
        padding: 30px;
    }
}

/* About Page Styles */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, #1a2a3a, #2c3e50);
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 188, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 151, 167, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite alternate;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(0, 188, 212, 0.1) 48%, rgba(0, 188, 212, 0.1) 52%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 151, 167, 0.1) 48%, rgba(0, 151, 167, 0.1) 52%, transparent 52%);
    background-size: 50px 50px;
    animation: patternMove 20s linear infinite;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.about-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.2s;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 100px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 10%, rgba(0, 188, 212, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(0, 151, 167, 0.2) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite alternate;
}

.mission-vision::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(0, 188, 212, 0.1) 48%, rgba(0, 188, 212, 0.1) 52%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 151, 167, 0.1) 48%, rgba(0, 151, 167, 0.1) 52%, transparent 52%);
    background-size: 30px 30px;
    animation: patternMove 15s linear infinite;
}

.mission-card, .vision-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.mission-card::after, .vision-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.05), transparent);
    z-index: -1;
    border-radius: inherit;
}

.mission-card i, .vision-card i {
    font-size: 3rem;
    color: #00bcd4;
    margin-bottom: 20px;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.mission-card p, .vision-card p {
    color: #666;
    line-height: 1.8;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 188, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 151, 167, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite alternate;
}

.team-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(0, 188, 212, 0.05) 48%, rgba(0, 188, 212, 0.05) 52%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 151, 167, 0.05) 48%, rgba(0, 151, 167, 0.05) 52%, transparent 52%);
    background-size: 40px 40px;
    animation: patternMove 20s linear infinite;
}

.team-member-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.team-member-card .icon-wrapper {
    margin-bottom: 20px;
}

.team-member-card h3 {
    margin-bottom: 10px;
}

.team-member-card p {
    margin-bottom: 15px;
}

.team-member-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.05), transparent);
    z-index: -1;
    border-radius: inherit;
}

.team-member-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

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

.team-member-card:hover .team-member-image img {
    transform: scale(1.1);
}

.team-member-info {
    padding: 25px;
    text-align: center;
}

.team-member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.team-member-info .position {
    color: #00bcd4;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member-info p {
    color: #666;
    margin-bottom: 20px;
}

.team-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.team-social-links a:hover {
    background: #00bcd4;
    color: white;
    transform: translateY(-3px);
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite alternate;
}

.values-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.05) 48%, rgba(255, 255, 255, 0.05) 52%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.05) 48%, rgba(255, 255, 255, 0.05) 52%, transparent 52%);
    background-size: 50px 50px;
    animation: patternMove 20s linear infinite;
}

.value-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.value-card .icon-wrapper {
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
}

.value-card p {
    margin-bottom: 0;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 188, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 151, 167, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite alternate;
}

.stats-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(0, 188, 212, 0.05) 48%, rgba(0, 188, 212, 0.05) 52%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 151, 167, 0.05) 48%, rgba(0, 151, 167, 0.05) 52%, transparent 52%);
    background-size: 35px 35px;
    animation: patternMove 15s linear infinite;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 188, 212, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.05), transparent);
    z-index: -1;
    border-radius: inherit;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #00bcd4;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 500;
}

/* Enhanced Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

/* Enhanced Hover Effects */
.mission-card:hover, .vision-card:hover,
.team-member-card:hover, .value-card:hover,
.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 188, 212, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .mission-card, .vision-card,
    .team-member-card, .value-card,
    .stat-card {
        margin-bottom: 30px;
    }
    
    .team-member-image {
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .about-hero-content p {
        font-size: 1rem;
    }
    
    .mission-card, .vision-card,
    .team-member-card, .value-card,
    .stat-card {
        padding: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Hero Section - Deep Blue Gradient */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, #1a2a3a, #2c3e50);
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Mission & Vision Section - Light Blue Gradient */
.mission-vision {
    padding: 100px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    position: relative;
    overflow: hidden;
}

/* Team Section - Soft Gray Gradient */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    position: relative;
    overflow: hidden;
}

/* Values Section - Dark Blue Gradient */
.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Stats Section - Light Blue Gradient */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

/* Enhanced Card Styles with Section-Specific Colors */
.mission-card, .vision-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.team-member-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.value-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 188, 212, 0.1);
    position: relative;
    overflow: hidden;
}

/* Section-Specific Hover Effects */
.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.15);
    border-color: rgba(0, 188, 212, 0.3);
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 188, 212, 0.3);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.15);
    border-color: rgba(0, 188, 212, 0.3);
}

/* Section-Specific Text Colors */
.mission-vision h2,
.mission-vision h3,
.mission-vision p {
    color: #2c3e50;
}

.team-section h2,
.team-section h3,
.team-section p {
    color: #2c3e50;
}

.values-section h2,
.values-section h3,
.values-section p {
    color: white;
}

.stats-section h2,
.stats-section h3,
.stats-section p {
    color: #2c3e50;
}

/* Section-Specific Icons */
.mission-card i, .vision-card i {
    color: #00bcd4;
}

.team-member-info .position {
    color: #00bcd4;
}

.value-card i {
    color: #00bcd4;
}

.stat-number {
    color: #00bcd4;
}


.contact-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form .form-group {
  margin-bottom: 25px;
  position: relative;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #2c3e50;
  font-weight: 500;
  font-size: 1rem;
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 12px 20px;
  height: 50px;
  font-size: 1rem;
  color: #2c3e50;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 1);
  border-color: #3498db;
  box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.1);
  outline: none;
}

.contact-form textarea.form-control {
  height: 120px;
  resize: none;
}

.contact-form .btn-primary {
  background: linear-gradient(135deg, #2c3e50, #3498db);
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.contact-form .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(52, 152, 219, 0.4);
}

.contact-form .btn-primary i {
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.contact-form .btn-primary:hover i {
  transform: translateX(5px);
}

.contact-form .form-control::placeholder {
  color: #95a5a6;
  opacity: 0.8;
}

.contact-form .form-control:focus::placeholder {
  opacity: 0.5;
}

/* Contact Info Cards */
.contact-page .contact-page-info {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-page .contact-page-info:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-page .contact-page-info .icon-wrapper {
    margin-bottom: 20px;
}

.contact-page .contact-page-info h3 {
    margin-bottom: 15px;
}

.contact-page .contact-page-info p {
    margin-bottom: 10px;
}

/* Hours Card Styles */
.contact-page .hours-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-page .hours-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-page .hours-card .icon-wrapper {
    margin-bottom: 20px;
}

.contact-page .hours-card h3 {
    margin-bottom: 20px;
}

.contact-page .hours-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-page .hours-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.contact-page .hours-card ul li:before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

/* Animations */
@keyframes float {
  0%, 100% {
      transform: translateY(0) scale(1.2);
  }
  50% {
      transform: translateY(-15px) scale(1.2);
  }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .contact-page .contact-page-info, .contact-page .hours-card {
      margin-bottom: 30px;
  }
  
  .contact-page .contact-page-info .icon-wrapper, 
  .contact-page .emergency-contact .icon-wrapper, 
  .contact-page .hours-card .icon-wrapper {
      width: 70px;
      height: 70px;
      margin-bottom: 20px;
  }
  
  .contact-page .contact-page-info i, 
  .contact-page .emergency-contact i, 
  .contact-page .hours-card i {
      font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .contact-page .contact-form, 
  .contact-page .emergency-contact {
      padding: 30px;
  }

  .contact-page .contact-form .form-control {
      height: 45px;
      font-size: 0.95rem;
  }

  .contact-page .contact-form textarea.form-control {
      height: 100px;
  }

  .contact-page .contact-form .btn-primary, 
  .contact-page .emergency-contact .btn-danger {
      padding: 10px 25px;
      font-size: 1rem;
  }

  .contact-page .office-hours {
      grid-template-columns: 1fr;
  }
  
  .contact-page .contact-page-info .icon-wrapper, 
  .contact-page .emergency-contact .icon-wrapper, 
  .contact-page .hours-card .icon-wrapper {
      width: 60px;
      height: 60px;
      margin-bottom: 15px;
  }
  
  .contact-page .contact-page-info i, 
  .contact-page .emergency-contact i, 
  .contact-page .hours-card i {
      font-size: 1.8rem;
  }
}

/* Appointment Types */
.appointment-type {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.emergency-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.emergency-icon i {
    font-size: 2.2rem;
    color: white;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.emergency-contact:hover .emergency-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.emergency-contact:hover .emergency-icon i {
    transform: scale(1.2);
    animation: float 3s ease-in-out infinite;
}

.emergency-info {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.emergency-info p {
    color: #2c3e50;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.emergency-info p i {
    color: #e74c3c;
}

/* Team Section Styles */
.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Team Card Styles */
.team-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    position: relative;
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.team-card .team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}
.team-card .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.team-card:hover .team-image img {
    transform: scale(1.1);
}
.team-card .team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.team-card:hover .team-overlay {
    transform: translateY(0);
}
.team-card .team-info {
    padding: 20px;
    text-align: center;
}
.team-card .team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #000;
}
.team-card .team-info p {
    color: #666;
    margin-bottom: 15px;
}
.team-card .team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}
.team-card .team-social a {
    color: #00bcd4;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.team-card .team-social a:hover {
    color: #0097a7;
    transform: translateY(-3px);
}

/* Team Values Section */
.values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4b6181 0%, #2e779b 100%);
    color: white;
}
.values-section .section-title h2 {
    color: white;
}
.values-section .section-title p {
    color: white;
}
.value-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}
.value-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}
.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}
.value-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* Join Team Section */
.join-team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}
.join-team-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.join-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.join-team-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #000;
}
.join-team-card p {
    color: #666;
    margin-bottom: 30px;
}
.join-team-card .btn {
    background: #00bcd4;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.join-team-card .btn:hover {
    background: #0097a7;
    transform: translateY(-3px);
}

/* Responsive Adjustments for Team Section */
@media (max-width: 768px) {
    .team-section {
        padding: 40px 0;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .team-card .team-image {
        height: 250px;
    }
    .value-card {
        margin-bottom: 30px;
    }
    .join-team-card {
        padding: 30px;
    }
}

/* Gallery Section Styles */
.gallery-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
}

/* Gallery Card Styles */
.gallery-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery-card:hover img {
    transform: scale(1.05);
}
.gallery-card .card-body {
    padding: 20px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
}
.gallery-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #000;
}
.gallery-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #333;
}

/* Gallery Section Title Styles */
.gallery-section .section-title {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}
.gallery-section .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    position: relative;
    display: inline-block;
}
.gallery-section .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #00bcd4;
    border-radius: 3px;
}
.gallery-section .section-title p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #333;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

/* Video Gallery Styles */
.video-gallery-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.video-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.video-gallery-item h3 {
    color: #000;
    padding: 20px;
    margin: 0;
}
.video-gallery-item p {
    color: #333;
    padding: 0 20px 20px;
    margin: 0;
}

/* Responsive Adjustments for Gallery */
@media (max-width: 768px) {
    .gallery-section {
        padding: 40px 0;
    }
    .gallery-section .section-title h2 {
        font-size: 2rem;
    }
    .gallery-card img {
        height: 200px;
    }
    .gallery-grid {
        gap: 20px;
        padding: 10px;
    }
}

/* Investment Section Styles */
.investment-details {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.investment-item {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.investment-item:last-child {
    border-bottom: none;
}

.investment-item:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateX(10px);
}

.investment-item h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.investment-item p {
    color: #3498db;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Responsive Adjustments for Investment Section */
@media (max-width: 768px) {
    .investment-details {
        padding: 30px;
    }
    
    .investment-item {
        padding: 15px;
    }
    
    .investment-item h3 {
        font-size: 1.2rem;
    }
    
    .investment-item p {
        font-size: 1.1rem;
    }
}

/* Franchise Form Styles */
.franchise-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.franchise-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.franchise-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 12px 20px;
    height: 50px;
    font-size: 1rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.franchise-form .form-control:focus {
    background: rgba(255, 255, 255, 1);
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.1);
    outline: none;
}

.franchise-form textarea.form-control {
    height: 120px;
    resize: none;
}

.franchise-form .btn-primary {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.franchise-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.4);
}

.franchise-form .btn-primary i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.franchise-form .btn-primary:hover i {
    transform: translateX(5px);
}

.franchise-form .form-control::placeholder {
    color: #95a5a6;
    opacity: 0.8;
}

.franchise-form .form-control:focus::placeholder {
    opacity: 0.5;
}

/* Responsive Adjustments for Franchise Form */
@media (max-width: 768px) {
    .franchise-form {
        padding: 30px;
    }
    
    .franchise-form .form-control {
        height: 45px;
        font-size: 0.95rem;
    }
    
    .franchise-form textarea.form-control {
        height: 100px;
    }
    
    .franchise-form .btn-primary {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

/* Requirement Card Icon Animation */
.requirement-card .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.requirement-card .icon-wrapper i {
    font-size: 2.2rem;
    color: white;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.requirement-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #3498db, #2c3e50);
}

.requirement-card:hover .icon-wrapper i {
    transform: scale(1.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1.2);
    }
    50% {
        transform: translateY(-15px) scale(1.2);
    }
}

/* Responsive Adjustments for Requirement Card Icons */
@media (max-width: 768px) {
    .requirement-card .icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .requirement-card .icon-wrapper i {
        font-size: 2rem;
    }
}

/* Appointment Page Styles */
.appointment-page {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Appointment Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .floating-illustration {
    animation: float 6s ease-in-out infinite;
}

.hero .floating-illustration img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Appointment Types Section */
.appointment-type {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(52, 152, 219, 0.1);
    height: 100%;
    text-align: center;
}

.appointment-type:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.appointment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.appointment-icon i {
    font-size: 2.2rem;
    color: white;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.appointment-type:hover .appointment-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #3498db, #2c3e50);
}

.appointment-type:hover .appointment-icon i {
    transform: scale(1.2);
    animation: float 3s ease-in-out infinite;
}

.appointment-type h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.appointment-type p {
    color: #666;
    margin-bottom: 20px;
}

.appointment-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.appointment-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.appointment-features li i {
    color: #3498db;
    position: absolute;
    left: 0;
    top: 0.25rem;
}

.appointment-duration {
    color: #3498db;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Appointment Form Section */
.appointment-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 15px;
}

.form-header h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
}

.appointment-form .form-group {
    margin-bottom: 25px;
}

.appointment-form label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

.appointment-form .input-group {
    position: relative;
}

.appointment-form .input-group-text {
    background: #3498db;
    border: none;
    color: white;
    width: 45px;
    justify-content: center;
}

.appointment-form .form-control {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 15px;
    height: 50px;
    font-size: 1rem;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.appointment-form .form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.1);
}

.appointment-form textarea.form-control {
    height: 120px;
    resize: none;
}

.appointment-form .btn-primary {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.appointment-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.4);
}

.appointment-form .btn-primary i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.appointment-form .btn-primary:hover i {
    transform: translateX(5px);
}

/* Emergency Contact Section */
.emergency-contact {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(231, 76, 60, 0.1);
    text-align: center;
}

.emergency-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.emergency-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.emergency-icon i {
    font-size: 2.2rem;
    color: white;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.emergency-contact:hover .emergency-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.emergency-contact:hover .emergency-icon i {
    transform: scale(1.2);
    animation: float 3s ease-in-out infinite;
}

.emergency-contact .btn-danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.emergency-contact .btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.4);
}

.emergency-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.emergency-info p {
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
}

.emergency-info p i {
    color: #e74c3c;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .appointment-type,
    .appointment-form,
    .emergency-contact {
        margin-bottom: 30px;
    }
    
    .emergency-info {
        gap: 20px;
    }
}

@media (max-width: 767.98px) {
    .appointment-type,
    .appointment-form,
    .emergency-contact {
        padding: 30px;
    }
    
    .appointment-form .form-control {
        height: 45px;
        font-size: 0.95rem;
    }
    
    .appointment-form textarea.form-control {
        height: 100px;
    }
    
    .appointment-form .btn-primary,
    .emergency-contact .btn-danger {
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    .emergency-info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Gallery video styles */

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* media news card style */

.dow-card{
    display: block;
    text-decoration: none;
    color: inherit;
}

/* ===== Home Page Hero Background ===== */
.home-hero-bg {
    position: relative;
    width: 100%;
    min-height: 80vh; /* adjust as needed */
    padding: 0 20px;
    gap: 40px;
    background:
        linear-gradient(
            135deg,
            rgba(10, 92, 140, 0.85),
            rgba(33, 150, 243, 0.8)
        ),
        ;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    color: #ffffff;
}

/* Mobile fix */
@media (max-width: 768px) {
    .home-hero-bg {
        min-height: auto;
        padding: 80px 15px;
        background-attachment: scroll;
    }
}

/* ===== Pattern Overlay ===== */
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255,255,255,0.05) 0%, transparent 20%);
    pointer-events: none;
    z-index: 1;
}

/* ===== Floating Icons ===== */
.floating-icons {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.floating-icon {
    position: absolute;
    color: rgba(255,255,255,0.12);
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    from {
        transform: translateY(0) rotate(0deg);
    }
    to {
        transform: translateY(-900px) rotate(360deg);
    }
}

/* ===== Hero Content ===== */
.hero-content-wrapper {
    position: relative;
    z-index: 5;
    max-width: 700px;
}

.hero-content-wrapper h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content-wrapper p {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

.review-section {
    padding: 60px 20px;
    background: #f5f9fc;
}

.review-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #0a5c8c;
    margin-bottom: 30px;
}

.review-wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

.review-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
}

.review-container::-webkit-scrollbar {
    display: none;
}

.review-card {
    min-width: 300px;
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.review-name {
    font-size: 15px;
    font-weight: 600;
    color: #0a5c8c;
    margin: 0;
}

/* Scroll Buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0a5c8c;
    color: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 10;
}

.scroll-btn.left {
    left: -20px;
}

.scroll-btn.right {
    right: -20px;
}

.scroll-btn:hover {
    background: #0871aa;
}

/* Mobile */
@media (max-width: 768px) {
    .scroll-btn {
        display: none;
    }
}

/*review section style*/
.google-review-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.review-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #202124;
    margin-bottom: 30px;
}

.google-review-wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

.google-review-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
}

.google-review-container::-webkit-scrollbar {
    display: none;
}

.google-review-card {
    min-width: 340px;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    flex-shrink: 0;
}

/* Header */
.review-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 8px;
}

.review-header img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.review-header h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    color: #202124;
}

.google-label {
    font-size: 12px;
    color: #5f6368;
}

/* Stars */
.stars {
    color: #fbbc04;
    font-size: 16px;
    margin: 6px 0 10px;
}

/* Review Text */
.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #3c4043;
    margin: 0;
}

/* Scroll Buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid #dadce0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: #202124;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.scroll-btn.left {
    left: -20px;
}

.scroll-btn.right {
    right: -20px;
}

.scroll-btn:hover {
    background: #f1f3f4;
}

/* Mobile */
@media (max-width: 768px) {
    .scroll-btn {
        display: none;
    }
}

