@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Libre+Caslon+Display&display=swap");

body {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  position: relative;
}

a {
  text-decoration: none !important;
  color: inherit;
}

/* navber */

.custom-navbar {
  background-color: transparent;
  width: 100%;
  padding: 0;
}

.custom-navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 15px;
}

@media (max-width: 991px) {
  .custom-navbar {
    padding: 0;
  }
}

.logo img {
  border-radius: 6px;
  margin: 7px 0;
}

.custom-navbar .logo img {
  width: 120px;
}

.ftr .logo img {
  max-width: 280px;
  border-radius: 12px;
  border: 4px solid #ccc;
  box-shadow: 0 0 4px 7px #0000001a;
  padding: 10px;
  object-fit: cover;
}

.nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}

ul.nav-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
}

ul.nav-links li {
  position: relative;
}

ul.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 17px;
  padding: 20px 10px;
  display: block;
}

ul.nav-links a:hover {
  color: #333;
}

.dropdown-menu {
  position: absolute;
  top: 95%;
  left: 0;
  background: #224fa3;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: none;
  padding: 0;
  flex-direction: column;
  min-width: 250px;
  z-index: 999;
}

.dropdown-menu a {
  padding: 7px 12px !important;
  font-size: 16px !important;
  border-bottom: 1px solid #fff;
  color: #fff !important;
}

.dropdown-menu a:hover {
  background: #5907bd;
  color: #fff !important;
}

/* === DESKTOP ONLY: Show dropdown on hover === */
@media (min-width: 992px) {
  .has-dropdown:hover .dropdown-menu {
    display: flex;
  }
}

/* === MOBILE STYLES === */
@media (max-width: 991px) {
  .nav-toggle {
    display: block;
  }

  ul.nav-links {
    flex-direction: column;
    display: none;
    width: 100%;
    background-color: #fff;
    margin-top: 10px;
    gap: 0;
    max-height: 100vh;
    overflow-y: auto;
  }

  ul.nav-links.show {
    display: flex;
  }

  ul.nav-links li {
    width: 100%;
  }

  ul.nav-links a {
    padding: 12px 10px;
    border-bottom: 1px solid #ccc;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    border: none;
  }

  .dropdown-menu a {
    padding: 8px 8px 8px 23px !important;
    font-size: 16px !important;
  }

  .has-dropdown .dropdown-menu {
    display: none;
  }

  .has-dropdown.show .dropdown-menu {
    display: flex;
  }
}

/* banner */

.banner-content .banner-title {
  font-size: 5rem;
  font-weight: 500;
  /* font-style: italic; */

  font-family: "Libre Caslon Display", serif;
  color: #4a4a43;
  margin-bottom: 25px;
  /* text-shadow: 0 2px 7px rgba(0, 0, 0, 0.5); */
}

.banner-content .banner-text {
  font-size: 2.5rem;
  font-weight: 400;
  color: #1d1e20;
  margin-bottom: 30px;
  font-family: "Libre Caslon Display", serif;
  line-height: 1.5;
  font-style: italic;
  /* text-shadow: 0 2px 7px rgba(0, 0, 0, 0.5); */
}

.theme-btn {
  padding: 12px 40px;
  font-size: 1.2rem;
  border-radius: 30px;
  background-color: #5907bd;
  color: #fff;
  position: relative;
  border: 2px solid #fff;
  display: inline-block;
  transition: all 0.3s ease;
}

.theme-btn i {
  position: absolute;
  right: -15px;
  top: 50%;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #224fa3;
  border: 2px solid #fff;
  color: #fff;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.theme-btn:hover {
  background-color: #224fa3;
  color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  i {
    animation: zik-zak 1s infinite;
  }
}

@keyframes zik-zak {
  0% {
    transform: translate(0, -50%);
  }
  25% {
    transform: translate(5px, -50%);
  }
  50% {
    transform: translate(0, -50%);
  }
  100% {
    transform: translate(5px, -50%);
  }
}

@media (max-width: 768px) {
  .banner-content .banner-title {
    font-size: 3.5rem;
  }

  .banner-content .banner-text {
    font-size: 1.5rem;
    color: #777;
  }

  .theme-btn {
    padding: 10px 30px;
    font-size: 1rem;
  }
}

/* doctor profile */

/* Doctor Profile Section */
.doctor-profile {
  padding: 30px 12px 40px;
  background: linear-gradient(135deg, #5907bd 43%, #224fa3 77%);
  color: white;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}

.doctor-profile::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  transform: rotate(45deg);
}

.doctor-profile::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  clip-path: polygon(0 100%, 100% 100%, 85% 0, 15% 0);
}

.profile-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.doctor-img-container {
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
}

.doctor-img {
  width: 350px;
  height: 350px;
  border-radius: 60%;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.3);
  background-color: #fff;
  box-shadow: inset 0 0 35px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 2;
}

.doctor-img:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: inset 0 0 35px rgba(0, 0, 0, 0.3), 0 25px 50px rgba(0, 0, 0, 0.4);
}

.img-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 370px;
  height: 370px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 2px solid #ffffff;
  border-right: 2px solid transparent;
}

.doctor-profile .doctor-name {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.doctor-education {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 12px 12px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.doc-text {
  height: 100%;
  background-color: #f6f6f6;
  border-radius: 10px;
  padding: 15px;
}

.doc-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: #224fa3;
  margin-bottom: 15px;
}

.doc-text h5 {
  font-size: 20px;
  font-weight: 500;
  color: #5907bd;
  margin-bottom: 15px;
}

.doc-text p {
  font-size: 18px;
  font-weight: 400;
  color: #444;
  margin-bottom: 12px;
  line-height: 30px;
}

.doc-exp {
  position: absolute;
  bottom: -40px;
  right: 50%;
  transform: translateX(50%);
  width: 250px;
  background-color: #ffffffba;
  backdrop-filter: blur(3px);
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  padding: 8px 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  z-index: 5;
}

@media (max-width: 767px) {
  .doc-exp {
    /* width: 300px; */

    justify-content: center;
  }
}

.doc-exp h3 {
  font-size: 32px;
  color: #224fa3;
  font-weight: 800;
  margin: 0 10px 0 0;
}

.doc-exp p {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  margin: 0;
  text-align: start;
  line-height: 25px;
}

@media (max-width: 768px) {
  .doc-text h2 {
    font-size: 28px;
  }

  .doc-text h5 {
    font-size: 18px;
    line-height: 26px;
  }

  .doc-text p {
    font-size: 16px;
  }
}

/* services */

.custom-card {
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.image-overlay {
  position: relative;
  overflow: hidden;
}

.image-overlay img {
  transition: transform 0.3s ease;
  width: 100%;
  aspect-ratio: 5/4;

  object-fit: cover;
}

.image-overlay:hover img {
  transform: scale(1.1);
}

.card-img-overlay-custom {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

/* Hide all content initially */
.slide-content {
  opacity: 1;
  transform: translateY(85%);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Show all content on hover */
.custom-card:hover .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.hid-text {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-card:hover .hid-text {
  opacity: 1;
}

.card-title {
  color: white;
  font-weight: bold;
  margin-bottom: 0;
  font-size: 1.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-text {
  color: white;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-custom {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  align-self: flex-start;
}

.btn-custom:hover {
  background: white;
  color: #333;
  transform: translateY(-2px);
}

.section-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.section-heading h2::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  width: 150px;
  height: 4px;
  background: linear-gradient(135deg, #224fa3, #5907bd);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .section-heading h2 {
    font-size: 1.8rem;
    text-transform: capitalize;
  }

  .section-heading h2::before {
    width: 100px;
    height: 3px;
  }
}

.video-section {
  padding: 60px 0;
}

.video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  cursor: pointer;
}

.video-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;

  left: 50%;
  font-size: 3rem;
  color: white;
  transform: translate(-50%, -50%);
  /* background: rgba(0, 0, 0, 0.4); */
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s;

  i {
    color: #fff;
    position: relative;
    z-index: 1;
  }
}

/* Modal iframe */
.modal-video iframe {
  width: 100%;
  height: 400px;
}

@media (max-width: 768px) {
  .video-section {
    padding: 40px 0;
  }

  .modal-video iframe {
    height: 250px;
  }
}

/* prework experience */

.experience-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.header-section {
  background: linear-gradient(45deg, #7519e5, #224fa3);
  color: white;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.header-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 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.1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.main-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-section {
  padding: 30px 20px;
}

.profile-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 20px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profile-image {
  border-radius: 15px;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  margin-bottom: 0;
}

.timeline-container {
  position: relative;
  padding-left: 30px;
}

.timeline-line {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #7519e5, #224fa3);
  border-radius: 2px;
}

.experience-item {
  position: relative;
  margin-bottom: 20px;
  padding: 15px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-left: 20px;
  border-left: 4px solid transparent;
}

.experience-item {
  border-left-color: #5907bd;
  background: linear-gradient(135deg, #5907bd11 0%, #224fa310 100%);
}

.timeline-dot {
  position: absolute;
  left: -46px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  border: 4px solid #7519e5;
  box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.2);
}

.position-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0;
  line-height: 1.4;
}

.institution {
  font-size: 1rem;
  font-weight: 500;
  color: #5907bd;
  line-height: 20px;
  margin-bottom: 5px;
}

.location {
  font-size: 0.9rem;
  color: #7f8c8d;
  display: flex;
  align-items: center;
  gap: 8px;
}

.experience-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .content-section {
    padding: 30px 0;
  }

  .timeline-container {
    padding-left: 0;
  }

  .timeline-line {
    display: none;
  }

  .experience-item {
    margin-left: 10px;
    padding: 10px;
  }

  .timeline-dot {
    display: none;
  }

  .header-section {
    padding: 20px 12px;
  }

  .main-title {
    font-size: 1.5rem;
  }
}

/* gallery */

/* Event Glimpses Section */
.event-glimpses {
  padding: 40px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-image {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay i {
  color: white;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.gallery-item:hover .overlay i {
  transform: scale(1.2);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
}

.lightbox-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.lightbox-image.loaded {
  opacity: 1;
  transform: scale(1);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.close-btn:hover {
  color: #ff6b6b;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  padding: 15px 20px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.prev-btn {
  left: 30px;
}

.next-btn {
  right: 30px;
}

.image-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 16px;
  backdrop-filter: blur(10px);
  font-weight: 500;
}

.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-btn {
    padding: 10px 15px;
    font-size: 20px;
    width: 50px;
    height: 50px;
    top: 80%;
  }

  .prev-btn {
    left: 15px;
  }

  .next-btn {
    right: 15px;
  }

  .close-btn {
    font-size: 30px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .lightbox-content {
    padding: 10px;
  }

  .nav-btn {
    padding: 8px 12px;
    font-size: 18px;
    width: 45px;
    height: 45px;
  }
}

/* appoinment form */

.appointment-section {
  padding: 50px 0;
  background: #fff;
}

.appointment-subhead {
  color: #5907bd;
  font-size: 20px;
  font-weight: 600;
}

.appointment-title {
  font-size: 42px;
  font-weight: 500;
  color: #333;
  line-height: 1.2;
  margin-bottom: 20px;
}

.form-sub-head {
  font-size: 16px;
  color: #444;
}

.feature-icon {
  color: #5907bd;
  margin-right: 12px;
  font-size: 1.2em;
}

.booking-form-card {
  box-shadow: 0 0 36px 0px rgba(56, 34, 117, 0.08);
  border-radius: 18px;
  padding: 38px 32px;
  background: #fff;
}

.btn-book {
  background: #224fa3;
  color: #fff;
  border-radius: 8px;
  font-weight: bold;
  padding: 12px 0;
  width: 100%;
  font-size: 18px;
  margin-top: 8px;
  border: none;
  transition: background 0.2s;
}

.btn-book:hover {
  background: #5907bd;
  color: #fff;
}

.form-control:focus {
  box-shadow: none;
  border-color: #5907bd;
}

.list-unstyled li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.no-spinner {
  padding: 12px;
}

textarea.no-spinner {
  padding: 10px 12px;
  min-height: 120px;
}

/* Hide number input spinners for Chrome, Safari, Edge */
.no-spinner::-webkit-outer-spin-button,
.no-spinner::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide number input spinners for Firefox */
.no-spinner[type="number"] {
  -moz-appearance: textfield;
}

.form-check-label {
  margin-left: 5px;
}

@media (max-width: 767px) {
  .booking-form-card {
    padding: 18px 10px;
  }

  .appointment-section {
    padding: 28px 0;
  }
}

/* google map cards  */

.location-section {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  padding: 60px 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.location-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.3);
  aspect-ratio: 1/1;
  position: relative;
}

.map-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #e5e7eb36 0%, #d1d5db 100%);
  background-image: repeating-linear-gradient(
      45deg,
      rgba(156, 163, 175, 0.1) 0px,
      rgba(156, 163, 175, 0.1) 10px,
      transparent 10px,
      transparent 20px
    ),
    radial-gradient(
      circle at 30% 40%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 50%
    );
}

.map-background iframe {
  aspect-ratio: 1/1;
  width: 100%;
}

.location-card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.location-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* background: linear-gradient(transparent 0, rgba(0, 0, 0, 0.7) 100%); */
  color: white;
  padding: 12px 12px 12px;
  z-index: 2;
}

.location-name {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0px;
  line-height: 1.3;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.location-address {
  font-size: 0.9rem;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .location-section {
    padding: 50px 0;
  }

  .location-overlay {
    padding: 12px;
  }

  .location-pin {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .location-name {
    font-size: 1.1rem;
  }

  .location-address {
    font-size: 0.85rem;
  }
}

/* Map grid pattern overlay */
.map-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
}

/* breadcrumb  */

.breadcrumb-section {
  background: linear-gradient(135deg, #00205c 10%, #224fa3 100%);
  color: white;
  padding: 50px 0;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .breadcrumb-section {
    padding: 30px 0;
  }
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100' height='100' fill='%2333c89e' fill-opacity='0.1' transform='rotate(45 50 50)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  z-index: 0;
}

.breadcrumb-content {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  font-size: 16px;
  font-weight: 500;
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb-item a i {
  font-size: 14px;
  height: 25px;
  width: 25px;
  display: inline-flex;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #fff;
  color: #224fa3;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
  color: #d4f6ec;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffffffcc;
  margin: 0;
}

.breadcrumb-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.breadcrumb-subtitle {
  font-size: 16px;
  color: #d9f4eb;
}

/* footer  */

.footer {
  background: #224fa3;
  color: white;
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="0.3" fill="white" opacity="0.08"/><circle cx="50" cy="10" r="0.4" fill="white" opacity="0.06"/><circle cx="10" cy="60" r="0.3" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>')
    repeat;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.section-title {
  font-weight: 600;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.3));
  border-radius: 2px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.9);
  padding: 8px;
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.footer-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: rgba(255, 255, 255, 0.1);
  transition: width 0.4s ease;
  border-radius: 8px;
}

.footer-link:hover {
  color: white;
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.05);
  padding-left: 1rem;
}

.footer-link:hover::before {
  width: 100%;
}

.footer-link i {
  width: 18px;
  margin-right: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-link:hover i {
  transform: scale(1.2);
  color: #f8f9fa;
}

.company-logo {
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 1.5rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.company-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: white;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-contact-item i {
  width: 20px;
  margin-right: 8px;
  color: #f8f9fa;
  font-size: 1.1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 1rem;
  line-height: 1.5;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  border: 2px solid #fff;
  background: transparent;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.social-link i {
  font-size: 20px;
  margin: 0;
  color: #fff;
}

.social-link:hover {
  background: #fff;
  i {
    color: #224fa3;
  }
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem 12px 1rem;
  margin-top: 3rem;
  text-align: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.1);
  border-radius: 15px 15px 0 0;
}

.copyright p {
  font-size: 20px;
  .small {
    font-size: 16px;
    color: inherit;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 3rem;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}
.fade-in:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
