body {
  font-family: "urbanist" sans-serif;
}
.navbar-brand img {
  width: 80px;
  height: 40px;
}
.navbar,
.navbar-nav,
.nav-item {
  margin: 0;
  padding: 0;
  font-size: 17px;
  font-weight: bold;
}
.contact-btn-wrapper {
  display: inline-block;
  padding: 0;
  margin: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 14% 100%);
  background-color: #007bff;
  color: #fff !important;
  font-weight: 500;
  border: none;
  padding: 20px 70px 20px 180px;
  margin: 0;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  line-height: 1;
  text-decoration: none;
}
.contact-btn-wrapper a {
  border-radius: 25px 25px 25px 25px;
  background-color: #fff;
  padding: 20px 17px 20px 17px;
  margin: 10px 0px 10px 0px;
  text-decoration: none;
}
.contact-nav-btn a {
  text-decoration: none;
}
.contact-nav-btn:hover {
  background-color: #002733;
  color: #fff;
}
/* Hide Bootstrap default dropdown arrow */
.navbar .dropdown-toggle::after {
  display: none !important;
}
/* Ensure dropdown is wide enough */
.custom-dropdown {
  min-width: 500px;
  width: 450px;
}
/* Flex wrapper for columns */
.dropdown-columns {
  display: flex;
  gap: 2rem;
}
/* Column styling */
.dropdown-col {
  flex: 1;
}
/* Optional spacing and reset */
.dropdown-col .dropdown-item {
  padding: 0.25rem 0;
  white-space: normal;
}
.list-unstyled {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dropdown-menu {
  background-color: #fff !important;
  border-bottom-right-radius: 25px !important;
  overflow: hidden !important;
}
.dropdown-item:hover {
  background-color: #f8f9fa;
}

/* Update menu item colors */
.navbar .nav-link,
.navbar .dropdown-item {
  color: #0b173b !important;
}

/* Optional hover color */
.navbar .nav-link:hover,
.navbar .dropdown-item:hover {
  color: #084dca !important;
}

.hero-section {
  background-image: url("../images/background-img.png");
  background-repeat: no-repeat, no-repeat;
  background-position: 90% 50%, bottom right;
  background-size: 100% 100%;
  min-height: 200px;
  position: relative;
  color: white;
}
/* Responsive behavior */
@media (max-width: 992px) {
  .hero-section {
    background-image: url("../images/background-img.png");
    background-repeat: no-repeat, no-repeat;
    background-position: 90% 50%, bottom right;
    background-size: 100% 100%;
    min-height: 200px;
    position: relative;
    color: white;
  }
}
.row-cols-1 {
  font-size: 12px;
}
/* Optional: consistent heading font size on smaller screens */
.hero-heading {
  font-size: 2.7rem;
}
.text-highlight {
  color: white;
}

/*k-12 cards*/

.fixed-size-card {
  min-height: 150px;
  max-height: 180px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  overflow: hidden;
}

.fixed-size-card:hover {
  transform: translateY(-8px);
  box-shadow: rgba(0, 102, 255, 0.25) 0px 10px 25px,
    rgba(0, 0, 0, 0.08) 0px 6px 6px;
  background-color: #f8faff;
}

.card-para {
  margin-bottom: 5px;
  font-weight: 600;
  color: #0c60fa;
  font-size: 1rem;
  white-space: normal;
}

.text-wrap p {
  text-wrap: balance;
  overflow: hidden;
}

.bi {
  transition: transform 0.3s ease;
}

.fixed-size-card:hover .bi {
  transform: scale(1.2);
}

/*higher education cards*/

.fixed-size-card,
.fixed-size-card1 {
  min-height: 180px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding: 1.25rem 1rem;
  border-radius: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}

.fixed-size-card:hover,
.fixed-size-card1:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 20px;
}

.card-para {
  margin-bottom: 5px;
  font-weight: 600;
  white-space: normal;
}

.bi {
  font-size: 1.5rem;
}

.text-wrap {
  white-space: normal;
}

.no-bg-shadow {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
.features-section {
  background-color: #f5f8fc;
}
/*footer*/
footer {
  background: #002733 !important;
  color: #ffffff !important;
}
.footer-heading {
  font-weight: bold;
  margin-bottom: 1rem;
  border-bottom: 2px solid #0d6efd;
  display: inline-block;
  padding-bottom: 4px;
}
.footer-link {
  color: #dddddd;
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}
footer h6 {
  font-size: 1rem;
  text-align: center;
}
@media (max-width: 767.98px) {
  footer ul {
    padding-left: 0;
  }
  .footer-heading {
    display: block;
    text-align: center !important;
    margin: 0 auto 1rem;
  }
  .footer-link {
    display: block;
    text-align: center;
    margin-bottom: 6px;
  }
}
/* Responsive center alignment */
@media (max-width: 768px) {
  .navbar {
    align-items: center !important;
  }
  .navbar-collapse {
    justify-content: center !important;
    text-align: center;
  }
  .navbar-nav {
    flex-direction: column !important;
    align-items: center !important;
    width: 100%;
  }
  .navbar-toggler {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 10px;
  }
  .contact-btn-wrapper {
    padding: 0px 0;
    clip-path: none;
    width: 100%;
    text-align: center;
  }
  .contact-btn-wrapper a {
    padding: 15px 30px;
    display: inline-block;
    width: auto;
    margin: 10px auto;
  }
  .navbar-logo {
    text-align: center;
    width: 100%;
    margin: 10px 60px 10px 0px;
    padding: 0;
  }
  .navbar-logo a {
    display: inline-block;
  }
}

/* iPhone 16 Portrait Mode (430px to 460px) */
@media (max-width: 460px) {
  body {
    font-size: 14px;
  }

  .hero-heading {
    font-size: 2.2rem;
    text-align: center;
  }

  .hero-section {
    background-size: cover;
    padding: 2rem 1rem;
    text-align: center;
  }

  .fixed-size-card,
  .fixed-size-card1 {
    min-height: 160px;
    padding: 1rem;
  }

  .card-para {
    font-size: 0.95rem;
    text-align: center;
  }

  .navbar-logo {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .navbar-toggler {
    margin: 10px auto;
  }

  .navbar-collapse {
    text-align: center;
    padding: 0;
  }

  .contact-btn-wrapper {
    clip-path: none;
    padding: 0;
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .contact-btn-wrapper a {
    width: 90%;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .custom-dropdown {
    min-width: 100%;
    width: 100%;
  }

  .dropdown-columns {
    flex-direction: column;
    gap: 1rem;
  }

  .dropdown-item {
    text-align: left;
  }

  footer h6 {
    font-size: 0.95rem;
  }

  .footer-link {
    font-size: 0.85rem;
  }

  .footer-heading {
    font-size: 1rem;
  }
}
