@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
:root {
  --primary-color: #2ecc71;
  --btn-color: #11953e;
  --secondary-color: #242424;
  --header-color: #e5ffee;
  --light-color: #ffffff;
  --font-size: 16px;
  --card-bg-color: #f3f3f3;
  --footer-bg-color: #e2ffeb;

  --blur-size: 30px;
  --shape-1-size: 320px;
  --shape-3-size: 280px;
  --shapes-opacity: 50%;
}

header {
  background-image: linear-gradient(
    to bottom,
    var(--header-color),
    var(--light-color)
  );
  position: relative;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.group-1 {
  left: 0;
  bottom: 5%;
}

.group-2 {
  top: 0;
  right: 0;
  z-index: 1;
}

.navbar-light .navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}
.navbar-light .navbar-nav .nav-link {
  color: var(--secondary-color);
  font-weight: 500;
}
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary-color);
  font-weight: 500;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: var(--primary-color);
  font-weight: 500;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 1.5rem;
}

.carousel-indicators {
  bottom: -50px;
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.carousel-indicators li.active [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-color);
}
.carousel-item {
    z-index: 5;
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 64.34%,
    rgba(219, 225, 223, 0.14) 69.44%,
    rgba(191, 203, 198, 0.25) 73.35%,
    rgba(157, 174, 167, 0.39) 78.23%,
    rgba(118, 142, 132, 0.54) 83.77%,
    rgba(87, 117, 105, 0.67) 88.06%,
    rgba(44, 81, 65, 0.84) 94.26%,
    #03301d 100%
  );
}

.carousel-image {
    height: 550px;/* Adjust as needed */
    object-fit: cover;
    border-radius: 16px;
}

section .section-title {
  text-align: center;
  margin-bottom: 5%;
  color: var(--btn-color);
  font-weight: 700;
}

#journey-section {
  margin-top: 10%;
}

#journey-section img {
  border-radius: 16px;
}

#journey-section h5 {
  color: var(--primary-color);
  font-weight: 600;
}

#journey-section p {
  font-weight: 400;
}

.text-custom {
  color: var(--btn-color);
}

.btn-custom {
  background-color: var(--btn-color);
  color: var(--light-color);
  border-radius: 4px;
}

.btn-custom:hover {
  background-color: var(--btn-color);
  color: var(--light-color);
  border-radius: 4px;
}

#blogs {
  margin-top: 5%;
}

img.rounded-image {
  border-radius: 16px;
}

.card-bg {
  border-radius: 16px;
  background: var(--card-bg-color);
}

a {
  text-decoration: none;
  color: var(--btn-color);
}

a:hover {
  text-decoration: none;
  color: var(--btn-color);
}

.card-title {
  font-size: 15px;
  font-weight: 500;
  display: block;
  color: #333;
}

.card-text {
  font-size: 12px;
  font-weight: 400;
}

#faqs {
  margin-top: 5%;
}

.accordion-button:not(.collapsed) {
  color: var(--btn-color);
  background-color: #e7f1ff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

#partners {
  margin-top: 5%;
}

.partner-carousel, .partner-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}


.partner-carousel img,
.partner-flex img {
  margin-top: 20px;
  max-height: 30px;
  padding: 0 20px;
  object-fit: contain;
}

.partners-wrapper {
  position: relative;
  padding: 20px 0;
}

.fade-left,
.fade-right {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
}

.fade-right {
  right: 0;
  background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
}

footer {
  background-color: var(--footer-bg-color);
  padding: 20px;
  margin-top: 10%;
  border-radius: 16px;
}

.map-location {
  border-radius: 16px;
}

.quick-link {
  color: #000; /* default black or dark */
  text-decoration: none;
}

.quick-link:hover {
  color: var(--primary-color); /* hover color */
}

.map-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#notice {
  margin-top: 5%;
}

.notice-card {
  height: 100%;
}
/*
.notices::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 5%;
  right: 5%;
  width: 90%;
  height: 120%;
  border-radius: 50%;
  background-color: rgba(0, 128, 0, 0.4);
  filter: blur(20px);
  z-index: -1;
  animation: blob ease-in 7s infinite;
  animation-delay: 4s;
} */

.notices::before {
    content: "";
    position: absolute;
    top: 4%;
    left: 15%;
    right: -13%;
    width: 71%;
    height: 91%;
    border-radius: 50%;
    background-color: rgba(0, 128, 0, 0.4);
    filter: blur(57px);
    z-index: -1;
    animation: blob ease-in 7s infinite;
    animation-delay: 4s;
}

#testimonial {
  margin-top: 5%;
}

.testimonials::before {
    content: "";
    position: absolute;
    top: 4%;
    left: 15%;
    right: -13%;
    width: 71%;
    height: 91%;
    border-radius: 50%;
    background-color: rgba(0, 128, 0, 0.4);
    filter: blur(57px);
    z-index: -1;
    animation: blob ease-in 7s infinite;
    animation-delay: 4s;
}

.person-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.person-name {
  margin-left: 10px;
}

/* media screen */
@media (max-width: 768px) {
  .group-1,
  .group-2 {
    display: none;
  }

  .carousel-image {
    height: 300px;/* Adjust as needed */
    object-fit: cover;
    border-radius: 16px;
    }
}

/* Responsive for mobile */
@media (max-width: 767px) {
  .blogs > .col-12 {
    width: 100%; /* Full width on mobile */
  }

  .blogs > .card {
    width: 100% !important; /* Ensures card takes up full width */
    height: auto; /* Adjust height automatically */
    margin-bottom: 20px; /* Space between cards */
  }

  .blogs > .card-img-top {
    height: auto; /* Ensures the image scales properly on smaller screens */
    object-fit: cover;
  }
}

/* For larger screens, cards should maintain the column layout */
@media (min-width: 768px) {
  .blogs > .card {
    width: 17rem; /* Adjust for larger screens */
    height: 100%;
  }
}

/* alumni registration form */
