* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Professional Top Contact Bar Redesign */
.Topcontactinfo {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c4a7c 100%);
  color: white;
  padding: 8px 0;
  font-size: 14px;
  position: relative;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-info-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-1px);
}

.contact-info-item i {
  color: #ffd700;
  font-size: 14px;
  flex-shrink: 0;
}

.contact-info-item span,
.contact-info-item a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 400;
  font-size: 13px;
  transition: color 0.3s ease;
}

.contact-info-item a:hover {
  color: #ffd700;
}

.emergency-notice {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 4px 12px;
  border-radius: 15px;
  font-weight: 500;
  font-size: 12px;
  color: #ffd700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.emergency-notice i {
  font-size: 12px;
  animation: pulse 2s infinite;
}

/* Remove the old decorative elements */
.centerlime {
  display: none;
}

/* Professional Navigation Redesign */
.navbar {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 12px 0;
  border-bottom: 1px solid rgba(44, 74, 124, 0.1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar-brand img {
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  max-height: 55px;
  width: auto;
}

.navbar-brand:hover img {
  transform: scale(1.02);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #2c4a7c !important;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 18px !important;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #2c4a7c, #4a90e2);
  border-radius: 25px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
  opacity: 1;
  transform: scale(1);
}

.nav-link:hover,
.nav-link.active {
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(44, 74, 124, 0.3);
}

.nav-cta {
  margin-left: 1rem;
}

.nav-cta .btn {
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #2c4a7c;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.nav-cta .btn:hover {
  background: linear-gradient(135deg, #ffaa00, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.nav-cta .btn i {
  font-size: 12px;
}

/* Mobile Navigation */
.navbar-toggler {
  border: none;
  padding: 6px 10px;
  background: rgba(44, 74, 124, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  background: rgba(44, 74, 124, 0.2);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 74, 124, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 24px;
  height: 24px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(44, 74, 124, 0.25);
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    margin-top: 15px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(44, 74, 124, 0.1);
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .nav-link {
    width: 100%;
    text-align: left;
    padding: 12px 20px !important;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
}

/* Top Contact Bar Mobile */
@media (max-width: 768px) {
  .contact-info-wrapper {
    gap: 1rem;
    padding: 0 15px;
  }

  .contact-info-item {
    font-size: 12px;
    padding: 3px 8px;
  }

  .contact-info-item span,
  .contact-info-item a {
    font-size: 12px;
  }

  .emergency-notice {
    font-size: 11px;
    padding: 3px 8px;
  }
}

@media (max-width: 576px) {
  .contact-info-wrapper {
    flex-direction: column;
    gap: 0.5rem;
  }

  .Topcontactinfo {
    padding: 10px 0;
  }
}

/* Hero Section - Major Enhancement */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(
      135deg,
      rgba(30, 58, 95, 0.9) 0%,
      rgba(44, 74, 124, 0.8) 50%,
      rgba(26, 54, 93, 0.9) 100%
    ),
    url("./assests/heroimg.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 50%
  );
  animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.7;
  }
}

.hero-text {
  position: relative;
  z-index: 2;
  color: white;
  padding: 2rem;
  max-width: 650px;
  animation: heroSlideIn 1.2s ease-out;
}

@keyframes heroSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.welcome-text {
  display: inline-block;
  background: rgba(255, 215, 0, 0.15);
  border: 2px solid rgba(255, 215, 0, 0.4);
  color: #ffd700;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  animation: welcomePulse 3s ease-in-out infinite;
}

@keyframes welcomePulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  }
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(1.2);
  }
}

.hero .tagline {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-button {
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button.primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  color: #2c4a7c;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.cta-button.primary:hover {
  background: linear-gradient(135deg, #ffaa00 0%, #ffd700 100%);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
  backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
  background: white;
  color: #2c4a7c;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.feature {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 1.2rem 1.8rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  animation: featureFloat 3s ease-in-out infinite;
}

.feature:nth-child(2) {
  animation-delay: 0.5s;
}

.feature:nth-child(3) {
  animation-delay: 1s;
}

@keyframes featureFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature i {
  color: #ffd700;
  font-size: 1.4rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.feature span {
  color: white;
  font-weight: 600;
}

/* Who We Are Section - Enhanced */
.whoweare {
  margin-top: 100px;
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafe 0%, #ffffff 100%);
  position: relative;
}

.whoweare::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(44, 74, 124, 0.05) 0%,
    transparent 50%
  );
}

.whoweare .container {
  position: relative;
  z-index: 2;
}

.iconstyle {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: #ffffff;
  background: linear-gradient(135deg, #2c4a7c 0%, #4a90e2 100%);
  padding: 20px;
  height: 80px;
  width: 80px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(44, 74, 124, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.iconstyle i {
  color: #ffffff !important;
  font-size: 32px;
  line-height: 1;
  z-index: 999;
  position: relative;
}

/* .iconstyle::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
  z-index: 1;
} */

.iconstyle:hover::before {
  left: 100%;
}

.iconstyle:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(44, 74, 124, 0.4);
}

.iconstyle:hover i {
  color: #ffd700 !important;
}

.whoweareImg {
  width: 85%;
  height: 95vh;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  object-fit: cover;
  margin-left: 30px;
}

.whoweareImg:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* Section Banner - Enhanced */
.section-banner {
  width: 100%;
  height: 80vh;
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(44, 74, 124, 0.6) 100%
    ),
    url("./assests/personalizedcare.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-top: 100px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.section-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 50%
  );
  animation: bannerGlow 4s ease-in-out infinite alternate;
}

@keyframes bannerGlow {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.8;
  }
}

.section-banner h1 {
  color: #ffffff;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #fff 0%, #ffd700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-banner p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-banner .btn {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  border: none;
  border-radius: 50px;
  color: #2c4a7c;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.section-banner .btn:hover {
  background: linear-gradient(135deg, #ffaa00 0%, #ffd700 100%);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

/* Why Choose Us Section - Enhanced */
.Whychooseus {
  margin-top: 100px;
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafe 100%);
}

.personalCare {
  background: linear-gradient(135deg, #e8f2ff 0%, #d2e0fb 100%);
  /* height: auto; */
  min-height: 50vh;
  max-height: 70vh;
  padding: 1.5rem;
  border-radius: 25px;
  margin-right: 20px;
  box-shadow: 0 15px 40px rgba(44, 74, 124, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.personalCare::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2c4a7c 0%, #ffd700 100%);
}

.personalCare:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(44, 74, 124, 0.15);
}

.personalCare h4 {
  color: #2c4a7c;
  font-weight: 700;
  margin-bottom: 2rem;
}

.personalCarerow {
  /* padding: 1rem 0; */
  border-bottom: 1px solid rgba(44, 74, 124, 0.1);
  transition: all 0.3s ease;
  border-radius: 10px;
  /* margin-bottom: 0.5rem; */
}

.personalCarerow:hover {
  background-color: rgba(44, 74, 124, 0.05);
  transform: translateX(10px);
  padding-left: 1.5rem;
}

.personalCareIcon {
  color: #2c4a7c;
  font-size: 1.2rem;
}

.whychooseusImg {
  width: 100%;
  height: 80vh;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  object-fit: cover;
}

.whychooseusImg:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* Gallery Section - Enhanced */
.gallery {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafe 0%, #ffffff 100%);
}

.GalleryTitle {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 800;
  color: #2c4a7c;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #2c4a7c 0%, #4a90e2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.GalleryTitle::after {
  content: "";
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #2c4a7c 0%, #ffd700 100%);
  display: block;
  margin: 20px auto;
  border-radius: 2px;
}

.container7 {
  column-count: 4;
  column-gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.container7 figure {
  margin: 0 0 20px;
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.container7 figure:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.container7 figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  transition: all 0.4s ease;
}

.container7 figure:hover img {
  transform: scale(1.05);
}

.container7 figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(44, 74, 124, 0.3) 0%,
    rgba(255, 215, 0, 0.3) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 15px;
}

.container7 figure:hover::before {
  opacity: 1;
}

/* Modal Enhancements */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 800px;
  animation: modalZoom 0.4s ease-out;
}

@keyframes modalZoom {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-content img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close {
  position: absolute;
  top: -50px;
  right: -50px;
  color: #ffffff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: all 0.3s ease;
  user-select: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
}

.prev {
  left: -70px;
}

.next {
  right: -70px;
}

.prev:hover,
.next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

/* Professional Footer Redesign */
.footer {
  background: linear-gradient(135deg, #1a2332 0%, #2c4a7c 100%);
  color: white;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.footer-main {
  padding: 60px 0 40px;
  position: relative;
  z-index: 2;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-brand h2 {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.footer-brand h2::before {
  content: "";
  width: 4px;
  height: 40px;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  margin-right: 15px;
  border-radius: 2px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 90%;
}

.footer-section h3 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #ffd700;
  border-radius: 1px;
}

.footerlinks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footerlinks li {
  margin-bottom: 0.75rem;
}

.footerlinks a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  padding: 0.25rem 0;
  transition: all 0.3s ease;
  position: relative;
}

.footerlinks a::before {
  content: "";
  width: 0;
  height: 1px;
  background: #ffd700;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.footerlinks a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footerlinks a:hover::before {
  width: 20px;
}

.footer-contact {
  margin-top: 0;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-contact-item i {
  color: #ffd700;
  font-size: 1.1rem;
  margin-right: 12px;
  margin-top: 2px;
  width: 16px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: #ffd700;
}

.footer-social {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: #ffd700;
  color: #2c4a7c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9rem;
}

.footer-certifications {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.certification-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.certification-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.certification-badge:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
  transform: translateY(-2px);
}

/* Responsive Design Improvements */
@media (max-width: 1200px) {
  .container7 {
    column-count: 3;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .section-banner h1 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .container7 {
    column-count: 2;
  }

  .whoweareImg {
    margin-left: 0;
    margin-top: 30px;
  }

  .personalCare {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .hero-text {
    padding: 1.5rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 80%;
    max-width: 300px;
    text-align: center;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .container7 {
    column-count: 1;
  }

  .GalleryTitle {
    font-size: 2.5rem;
  }

  .section-banner h1 {
    font-size: 2.2rem;
  }

  .prev {
    left: -40px;
  }

  .next {
    right: -40px;
  }

  .close {
    top: -40px;
    right: -10px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .section-banner h1 {
    font-size: 1.8rem;
  }

  .GalleryTitle {
    font-size: 2rem;
  }

  .prev,
  .next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }
}

/* Additional smooth animations */
.whoweare,
.Whychooseus,
.gallery {
  opacity: 0;
  animation: sectionFadeIn 1s ease-out forwards;
}

.whoweare {
  animation-delay: 0.2s;
}

.Whychooseus {
  animation-delay: 0.4s;
}

.gallery {
  animation-delay: 0.6s;
}

@keyframes sectionFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading animation for images */
img {
  transition: opacity 0.3s ease;
}

img:not([src]) {
  opacity: 0;
}

/* Scroll-triggered animations */
@media (prefers-reduced-motion: no-preference) {
  .iconstyle {
    animation: iconBounce 2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.2s);
  }
}

@keyframes iconBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
}

/* About Us Page Styles */
.aboutusBanner {
  width: 100%;
  height: 80vh;
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(44, 74, 124, 0.7) 100%
    ),
    url("./assests/personalizedcare.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-radius: 30px;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.aboutusBanner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 70%
  );
  animation: aboutGlow 4s ease-in-out infinite alternate;
}

@keyframes aboutGlow {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.8;
  }
}

.aboutusBanner h1 {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #fff 0%, #ffd700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}

.aboutusBanner p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  max-width: 600px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.aboutusContent {
  margin-top: 100px;
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafe 0%, #ffffff 100%);
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.aboutusContent img {
  width: 45%;
  height: 80vh;
  border-radius: 25px;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.aboutusContent img:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
}

.aboutTitles {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #2c4a7c;
  font-weight: 800;
  background: linear-gradient(135deg, #2c4a7c 0%, #4a90e2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aboutTitles::after {
  content: "";
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #2c4a7c 0%, #ffd700 100%);
  display: block;
  margin: 20px auto;
  border-radius: 2px;
}

/* Mission and Vision Cards */
.mission-card,
.vision-card {
  background: #fff;
  border-radius: 25px;
  padding: 3rem;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.mission-card::before,
.vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
}

.mission-card::before {
  background: linear-gradient(90deg, #2c4a7c, #4a90e2);
}

.vision-card::before {
  background: linear-gradient(90deg, #ffd700, #ffaa00);
}

.mission-icon,
.vision-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mission-icon:hover,
.vision-icon:hover {
  transform: scale(1.1) translateY(-5px);
}

.mission-icon {
  background: linear-gradient(135deg, #2c4a7c, #4a90e2);
  color: #fff;
}

.vision-icon {
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #2c4a7c;
}

.mission-list,
.vision-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.mission-list li,
.vision-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1.2rem;
  background: rgba(44, 74, 124, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mission-list li {
  border-left-color: #2c4a7c;
}

.vision-list li {
  border-left-color: #ffd700;
}

.mission-list li:hover,
.vision-list li:hover {
  transform: translateX(10px);
  background: rgba(44, 74, 124, 0.1);
}

.mission-list i,
.vision-list i {
  margin-right: 1rem;
  font-size: 1.2rem;
}

.mission-list i {
  color: #2c4a7c;
}

.vision-list i {
  color: #ffd700;
}

/* Services Page Styles */
.servicescontent {
  margin-top: 100px;
  padding: 80px 0;
}

.caring {
  margin-top: 100px;
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafe 100%);
}

.caringimg {
  width: 100%;
  height: 100vh;
  border-radius: 25px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.caringimg:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.caring ul {
  list-style: none;
  padding: 0;
}

.caring ul li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: rgba(44, 74, 124, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
  border-left: 4px solid #2c4a7c;
}

.caring ul li:hover {
  transform: translateX(10px);
  background: rgba(44, 74, 124, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.caring ul li span {
  font-size: 1.2rem;
  color: #2c4a7c;
  font-weight: 700;
  margin-left: 1rem;
}

.caring ul li i {
  color: #ffd700;
  font-size: 1.4rem;
}

/* Contact Us Page Styles */
.contactCard {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.contactCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.GetinTouch {
  background: linear-gradient(135deg, #f8fafe, #e8f2ff);
  padding: 50px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  position: relative;
  overflow: hidden;
}

.GetinTouch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(135deg, #2c4a7c, #ffd700);
}

.GetinTouch h2 {
  color: #2c4a7c;
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 2.2rem;
}

.GetinTouch .iconstyle {
  margin-bottom: 1.5rem;
  animation: contactIconFloat 3s ease-in-out infinite;
}

@keyframes contactIconFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.sendusamessage {
  box-shadow: none;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  padding: 50px;
  background: linear-gradient(135deg, #ffffff, #f8fafe);
}

.sendusamessage h1 {
  margin-bottom: 2rem;
  color: #2c4a7c;
  font-weight: 700;
  font-size: 2.2rem;
}

.form-header {
  margin-bottom: 3rem;
  text-align: center;
}

.form-header .subtitle {
  font-size: 1rem;
  color: #2c4a7c;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.form-header h2 {
  font-size: 2.5rem;
  color: #1a365d;
  font-weight: 800;
  margin-bottom: 1rem;
}

.form-header .description {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}

.sendusamessage input,
.sendusamessage textarea {
  width: 100%;
  padding: 15px 20px;
  margin-top: 10px;
  border: 2px solid #e8f2ff;
  border-radius: 15px;
  background-color: #f8fafe;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.sendusamessage input:focus,
.sendusamessage textarea:focus {
  outline: none;
  border-color: #2c4a7c;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(44, 74, 124, 0.1);
  transform: translateY(-2px);
}

.sendmessagebtn {
  background: linear-gradient(135deg, #2c4a7c 0%, #1a365d 100%);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  transition: all 0.4s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(44, 74, 124, 0.3);
}

.sendmessagebtn:hover {
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  color: #2c4a7c;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.maincontactcard {
  margin-top: -90px;
  z-index: 100;
  position: relative;
}

.map {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.map:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.map iframe {
  transition: all 0.3s ease;
  border-radius: 25px;
  width: 100%;
}

/* Amenities Page Styles */
.amenities-section {
  background: linear-gradient(135deg, #f8fafe 0%, #ffffff 100%);
  padding: 100px 0;
  border-radius: 30px;
  margin: 50px 0;
}

.amenity-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafe 100%);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(44, 74, 124, 0.1);
}

.amenity-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.amenity-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2c4a7c, #ffd700);
}

.amenity-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.amenity-card:hover::after {
  left: 100%;
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2c4a7c, #1a365d);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(44, 74, 124, 0.3);
  transition: all 0.3s ease;
}

.icon-wrapper:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 12px 30px rgba(44, 74, 124, 0.4);
}

.icon-wrapper i {
  font-size: 1.6rem;
  color: #ffd700;
}

.amenity-card h3 {
  color: #2c4a7c;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.amenity-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 1rem;
}

/* FAQ Accordion Styles */
.accordion-item {
  border: none;
  margin-bottom: 1.5rem;
  border-radius: 15px !important;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.accordion-button {
  padding: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c4a7c;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafe 100%);
  border: none;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  color: white;
  background: linear-gradient(135deg, #2c4a7c, #1a365d);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button::after {
  background-size: 1.2rem;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(180deg);
}

.accordion-body {
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafe 0%, #ffffff 100%);
}

.accordion-body p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 1rem;
}

/* Enhanced Button Styles */
.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

/* Scroll-to-top button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2c4a7c, #ffd700);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
