@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@100..900&display=swap');

body {
  font-family: 'Urbanist', sans-serif;
}

.top-bar {
  font-size: 14px;
  background-color: #05397F;
  height: 53px;
}

.btn.btn-booknow.btn-primary {
  background-color: #F6E500 !important;
  border: 1px solid #F6E500;
  border-radius: 5px;
  color: #05397F;
}

.top-bar .vr {
  height: 18px;
  width: 1px;
  background-color: white;
}

.mr-4 {
  margin-right: 30px;
}

.top-bar-icons a {
  font-size: 16px;
}

@media (max-width: 576px) {
  .top-bar {
    text-align: center;
  }

  .top-bar .vr {
    display: none;
  }

  .top-bar-icons {
    margin-top: 5px;
    justify-content: center;
    width: 100%;
  }
}

.nav-link.active {
  color: #F6E500 !important;
}

.nav-link {
  color: #ffffff;
}

.mynavbar {
  background-color: #05397F;
  color: #ffffff;
  height: 85px;
}

.hero-section {
  position: relative;
  background-image: url("../images/banner_image.png");
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  background-size: cover;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  min-height: 400px;
}

.navbar-collapse.collapse.show {
  background-color: #05397F;
  z-index: 222;
}

.hero-buttons {
  gap: 20px;
}

.custom-toggle::after {
  display: none !important;
}

.hero-buttons .btn-primary {
  margin-right: 15px;
}

.nav-link:hover {
  color: #F6E500 !important;
}

.doctor-image {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 80%;
    margin-bottom: 10px;
  }
}

.hero-section img {
  position: relative;
  top: 41px;
  width: 100%;
  height: 100%;
}

.btn.btn-white {
  color: #05397F;
  background-color: #ffffff;
}

.hero-text h2 {
  font-size: 42px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .navbar .nav-item {
    text-align: center;
  }

  .hero-section img {
    height: 100%;
    object-fit: cover;
  }
}

.info-card {
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  padding: 20px 20px 30px;
  margin-bottom: 30px;
  overflow: hidden;
}

.info-card .corner-shape {
  position: absolute;
  top: -48px;
  left: -10px;
  width: 100px;
  height: 100px;
  background-color: #F6E500;
  border-radius: 50%;
  /* border-bottom-right-radius: 40px; */
  z-index: 1;
}

.info-card .card-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: #003C8F;
  color: white;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 2;
}

.info-card h5 {
  font-size: 22px;
  font-weight: 600;
  color: #003C8F;
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 16px;
  color: #5F5F5F;
  position: relative;
  z-index: 2;
}

/* about us */
.about-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #fff 30%, #f7f6fa 100%);
}

.about-section h6 {
  color: #003C8F;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-section h2 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.about-section h5 {
  font-weight: 500;
  color: #5a5a5a;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 30px;
}

.about-btn {
  background-color: #05397F;
  color: #fff;
  border-radius: 8px;
  padding: 10px 25px;
  border: none;
  transition: 0.3s;
  text-decoration: none;
}

.about-btn:hover {
  background-color: #05397F;
}

@media (max-width: 768px) {
  .about-section h2 {
    font-size: 1.5rem;
  }

  .about-section p {
    font-size: 0.95rem;
  }
}

/*country section*/
.country-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.country-section h2{text-align: center;}
.country-card:hover {
  transform: scale(1.03);
}

.country-image {
  height: 180px;
  object-fit: cover;
}

.flag-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 10px;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/*Service section*/
.service-section {
  background-color: #003366;
  color: white;
}

.service-card {
  border-radius: 12px;
  background-color: #fff;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.service-number {
  width: 40px;
  height: 40px;
  background-color: #05397F;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.service-title {
  font-weight: bold;
  color: #0d6efd;
  font-size: 16px;
}

.service-text {
  font-size: 14px;
  color: #555;
}

.read-more {
  color: #0d6efd;
  font-weight: 500;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/*Testmonial Section*/
.testimonial-card {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  padding: 20px;
  height: 100%;
}

.quote-icon {
  font-size: 32px;
  color: #0d6efd;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.testimonial-footer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-role {
  font-size: 13px;
  color: #777;
}

.contact-box {
  background-color: #05397F;
  color: white;
  padding: 30px;
  border-radius: 10px;
}

.contact-box i {
  font-size: 24px;
  margin-bottom: 10px;
}

.carousel-indicators button {
  background-color: #05397F;
  height: 6px;
  width: 20px;
  border-radius: 10px;
}

.bi.bi-telephone-fill {
  color: #05397F;
}

.testimonial-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-data h6,
h2 {
  text-align: left;
}

.telephone-icon {
  background: #ffffff;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.envelope-icon {
  background: #ffffff;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.geo-icon {
  background: #ffffff;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.telephone-icon img {
  width: 40px;
  height: 40px;
}

.envelope-icon img {
  width: 40px;
  height: 40px;
}

.geo-icon img {
  width: 40px;
  height: 40px;
}

.contact-info {
  display: flex;
  align-items: center;
}

.contact-text {
  margin-left: 15px;
  text-align: left;
}

/* Countries Dropdown CSS Start */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.dropdown-menu {
  transition: all 0.3s ease;
  display: none;
}
/* Countries Dropdown CSS End */

/* About Us Screen CSS Start */
.about-banner {
  position: relative;
  background: url('/assets/images/about-banner.jpeg') center/cover no-repeat;
  color: white;
  padding: 120px 0;
  text-align: center;
  z-index: 1;
}

.about-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  z-index: -1;
}

.value-checklist li::before {
  content: "\2713";
  color: #0d6efd;
  margin-right: 10px;
}
/* About Us Screen CSS End */

/* Contact Us Screen CSS Start */
.contact-banner {
  position: relative;
  background: url('/assets/images/contact-banner.jpeg') center/cover no-repeat;
  color: white;
  padding: 120px 0;
  text-align: center;
  z-index: 1;
}

.contact-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  z-index: -1;
}

.value-checklist li::before {
  content: "\2713";
  color: #0d6efd;
  margin-right: 10px;
}

.contact-icon {
  font-size: 1.2rem;
  margin-right: 10px;
  color: #0d6efd;
}
.map-responsive iframe {
  width: 100%;
  height: 400px;
  border: 0;
}
/* Contact Us Screen CSS End */

/* Gallery Screen CSS Start */
.gallery-banner {
  position: relative;
  background: url('/assets/images/gallery-banner.jpeg') center/cover no-repeat;
  color: white;
  padding: 120px 0;
  text-align: center;
  z-index: 1;
}

.gallery-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  z-index: -1;
}

.value-checklist li::before {
  content: "\2713";
  color: #0d6efd;
  margin-right: 10px;
}

.contact-icon {
  font-size: 1.2rem;
  margin-right: 10px;
  color: #0d6efd;
}
.map-responsive iframe {
  width: 100%;
  height: 400px;
  border: 0;
}
/* Gallery Screen CSS End */


/* Countries Screen CSS Start */
.country-sidebar { min-width: 180px; }
.faq-question { cursor: pointer; }
.faq-answer { display: none; }
.university-card img { height: 180px; object-fit: cover; }
.checklist li::before {
  content: "✔️";
  margin-right: 8px;
  color: blue;
}
/* Countries Screen CSS End */

.universities-bottom-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: absolute;
  bottom: 10px;
  left: 10px;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

  /* Default logo size (mobile/tablet) */
  #mainLogo {
    height: 40px;
  }

  /* Desktop logo size */
  @media (min-width: 992px) {
    #mainLogo {
      height: 60px;
    }
  }
