* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

/* Header */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #184b94;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-bar ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.nav-bar ul li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
}

.nav-bar ul li a:hover {
  color: #f1f1f1;
  border-bottom: 2px solid #f1f1f1;
  padding-bottom: 5px;
}

.nav-bar ul li a.active {
  color: #f1f1f1;
  border-bottom: 2px solid #f1f1f1;
  padding-bottom: 5px;
}

.connect-button {
  background-color: #fff;
  color: #184b94;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

.burger-menu {
  display: none;
}

.connect-button.sidebar {
  display: none;
}
/* Connect Modal */

main {
  position: relative;
}

.connect-modal {
  position: fixed;
  top: 25%;
  left: 25%;
  width: 800px;
  height: 475px;
  background-color: #fff;
  box-shadow: 0px 0px 30px 0px #0000001a;
  color: #111827;
  display: none;
  padding: 50px;
  border-radius: 10px;
}

.connect-modal.show-modal {
  display: block;
  z-index: 1000;
}

body.modal-open {
  overflow: hidden;
}

body.modal-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 999;
}

.connect-modal h4 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.connect-modal p {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 500;
}

.form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  column-gap: 30px;
  margin: 40px 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 16px;
  font-weight: 500;
}

.form-group input,
.form-group select {
  background-color: #f6f9ff;
  padding: 10px;
  border: 1px solid #eef4ff;
  border-radius: 4px;
}

.form-group input,
.form-group option {
  font-size: 16px;
  font-weight: 500;
}

.form-group input::placeholder {
  color: #c8c8c8;
  font-weight: 500;
  font-size: 17px;
}

input[type="radio"] {
  width: 20px;
  height: 20px;
}

.radio {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.form-button {
  background-color: #184b94;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-cancel-button {
  background-color: #fff;
  color: #184b94;
  padding: 10px;
  border: 1px solid #184b94;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 1024px) {
  .header img {
    width: 100px;
  }

  .nav-bar ul li a {
    font-size: 14px;
  }

  .connect-button {
    padding: 8px 14px;
    font-size: 14px;
  }

  .connect-modal {
    left: 12%;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header img {
    width: 100px;
  }

  .nav-bar {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    background-color: #184b94;
    width: 100%;
    padding: 20px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  }

  .nav-bar ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .nav-bar ul li a {
    padding: 10px 0;
  }

  .burger-menu {
    display: block;
  }

  .nav-bar.active {
    display: block;
  }

  .connect-button {
    display: none; /* Hide on smaller screens */
  }

  .connect-button.sidebar {
    display: block; /* Hide on smaller screens */
  }

  .connect-modal {
    left: 0%;
    top: 15%;
    height: max-content;
  }

  .form-container {
    grid-template-columns: 1fr;
  }
  .connect-button {
    display: none; /* Hide on smaller screens */
  }

  .connect-button.sidebar {
    display: block; /* Hide on smaller screens */
  }

  .connect-modal {
    left: 0%;
    top: 15%;
    height: max-content;
  }

  .form-container {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .connect-modal {
    left: 0%;
    top: 10%;
    height: max-content;
    width: 100%;
    padding: 5px;
  }

  .connect-modal h4 {
    font-size: 24px;
  }

  .form-container {
    grid-template-columns: 1fr;
  }

  .form-group input,
  .form-group select {
    padding: 8px;
  }

  .form-group label {
    font-size: 14px;
  }

  .form-group input::placeholder {
    font-size: 14px;
  }

  .form-button,
  .form-cancel-button {
    padding: 8px;
    font-size: 14px;
  }
}

/* Hero */

.carousel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 82.7vh;
  color: #fff;
  background-image: linear-gradient(
      270deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.5) 51.76%,
      rgba(0, 0, 0, 0.5) 100%
    ),
    url("https://digitalbolt.co/imucet/assets/carousel-1.svg");

  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-heading {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
}

.hero-para {
  padding: 0 300px;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-top: 16px;
  color: #cfcece;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  position: absolute;
  bottom: 20px;
}

.carousel-dot {
  height: 10px;
  width: 10px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-dot.active {
  background-color: #184b94;
}

.hero-cta-container {
  position: relative;
  height: 100vh;
}

.hero-cta {
  background-image: url("https://digitalbolt.co/imucet/assets/hero-cta.svg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 80%;
}

.cta-container {
  position: absolute;
  background-color: #000;
  box-shadow: 0px 0px 20px 0px #05050533;
  padding: 50px;
  border-radius: 10px;
  color: white;
  top: 30%;
  left: 5%;
  width: 500px;
  height: 450px;
  text-align: center;
}

.cta-container h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-container p {
  font-weight: 300;
  margin-bottom: 20px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-form input,
.cta-form select {
  padding: 10px;
  height: 44px;
  border-radius: 5px;
  border: none;
}

.cta-form input::placeholder {
  color: #000;
  font-weight: 500;
  font-size: 16px;
}

.cta-form select {
  background-color: #fff;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  padding-left: 10px;
  cursor: pointer;
}

.cta-form button {
  padding: 10px;
  border-radius: 5px;
  border: none;
  background-color: #184b94;
  color: white;
  font-weight: 500;
  font-size: 18px;
  margin-top: 20px;
}

.more-info {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background-color: #c31111;
  width: 200px;
  height: 125px;
  bottom: 6%;
  left: 576px;
  text-align: center;
}

.cta-extra {
  width: 200px;
  height: 190px;
  position: absolute;
  bottom: 24%;
  left: 570px;
}

.cta-whatsapp {
  /* width: 200px;
  height: 190px; */
  position: absolute;
  bottom: 0.5%;
  left: 49.5%;
}

@media (max-width: 1024px) {
  .more-info {
    left: 550px;
  }

  .cta-whatsapp {
    left: 71.5%;
  }
}

@media (max-width: 768px) {
  .header img {
    width: 100px;
  }

  .hero-heading {
    font-size: 18px;
  }

  .hero-para {
    font-size: 14px;
    line-height: 20px;
    padding: 0 10px;
  }

  .cta-container {
    top: 10%;
    left: 5%;
    width: 90%;
    padding: 20px;
  }

  .more-info {
    width: 100%;
    height: auto;
    bottom: 0%;
    left: 0%;
  }

  .hero-cta {
    height: 100%;
  }

  .cta-extra {
    width: 120px;
    bottom: 1%;
    left: 45%;
    display: none;
  }

  .cta-whatsapp {
    position: absolute;
    bottom: 0.5%;
    left: 64.5%;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 14px;
    text-align: center;
  }

  .hero-para {
    font-size: 12px;
  }

  .cta-container {
    top: 5%;
    padding: 15px;
  }

  .header img {
    width: 60px;
  }
}

/* Courses */

.courses h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  width: max-content;
  margin: 0 auto;
  margin-top: 50px;
}

.gradient-border {
  position: relative;
  padding-bottom: 10px; /* Space for the pseudo-element */
}

.gradient-border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2859c5 0%, #f4f9ff 100%);
  border-radius: 2px; /* Optional: Smoothens the edges */
}

.courses-container {
  background-color: #f6f6f6;
  padding: 80px;
  padding-top: 120px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
  column-gap: 140px;
  margin-top: 80px;
}

.courses-card {
  background-color: #eff4ff;
  padding: 20px 60px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0px 0px 20px 0px #05050533;
}

.courses-icon {
  padding: 20px;
  padding-top: 60px;
  border-radius: 10px;
  background-color: #102868;
  transform: translate(0, -50%);
}

.courses-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.courses-para {
  text-align: justify;
  font-weight: 400;
}

.course-title {
  color: #050505;
  font-size: 24px;
  font-weight: 600;
}

.courses-link {
  text-decoration: none;
  color: #184b94;
  font-weight: 600;
  font-size: 16px;
  margin-top: 4px;
}

@media screen and (max-width: 1440px) {
  .courses-container {
    padding: 50px;
    gap: 100px;
    padding-top: 80px;
  }

  .courses-card {
    padding: 20px 40px;
  }

  .courses-card-header {
    gap: 20px;
  }

  .courses-icon {
    padding: 20px;
    padding-top: 40px;
  }

  .course-title {
    font-size: 22px;
  }

  .course-image {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .courses-container {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 100px;
    padding-top: 30px;
  }

  .courses-para {
    text-align: left;
  }

  .courses-card {
    padding: 20px 40px;
    /* width: 65%; */
  }

  .courses-card-header {
    flex-direction: column;
    gap: 0;
  }

  .courses-card-header p {
    text-align: center;
  }

  .courses-icon {
    padding: 20px;
    padding-top: 40px;
  }

  .course-image {
    width: 100%;
  }

  .course-title {
    font-size: 22px;
    text-align: center;
  }
}

/* Questions */

.questions-title {
  font-size: 28px;
  font-weight: 300;
  text-align: center;
  font-style: italic;
  margin: 20px 0px;
}

.questions-container {
  margin: 120px 0;
  background-color: #f6f6f6;
  padding: 50px 80px;
}

.questions-card {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
}

.questions-text {
  width: 100%;
}
.questions-text h4 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 20px;
}

.questions-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.questions-list-item {
  border-radius: 10px;
  background-color: #fff;
  border-bottom: 1px solid #dadada;
  box-shadow: 0px 0px 15px 0px #05050533;
  transition: all 0.3s;
}

.questions-list-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  padding: 20px 30px;
  border-bottom: 1px solid #dadada;
  cursor: pointer;
}

.questions-list-title h5 {
  font-size: 18px;
  font-weight: 500;
  color: black;
}

.questions-list-answer {
  padding: 20px 30px;
  display: none;
}
.questions-list-answer p {
  font-weight: 500;
}

.answer-para {
  color: #949191;
  font-weight: 400 !important;
  margin-bottom: 6px;
}

.answer-list {
  color: #949191;
  font-weight: 400 !important;
  list-style: none;
}

.list-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: black;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.questions-list-steps {
  list-style: none;
  color: #949191;
  margin-top: 10px;
}

.questions-list-steps li {
  margin-bottom: 6px;
}

.navy-word {
  color: #184b94;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .questions-container {
    padding: 20px;
  }

  .question-img {
    width: 50%;
  }

  .questions-card {
    flex-direction: column;
    gap: 50px;
  }

  .questions-text {
    text-align: center;
  }

  .questions-list-steps li {
    text-align: left;
  }

  .questions-list-title {
    gap: 32px;
  }

  .questions-list-title h5 {
    text-align: left;
    font-size: 16px;
  }

  .answer-para {
    font-size: 14px;
    text-align: left;
  }
  .answer-list {
    font-size: 14px;
    text-align: left;
  }
}

/* About Us */

/* .about-us {
  padding: 24px 100px;
} */

.about-intro {
  text-align: center;
  margin-top: 60px;
  padding: 24px 100px;
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px; */
}

.about-intro h3 {
  font-size: 36px;
  font-weight: 700;
  color: #184b94;
  margin: 20px 0;
}

.about-intro h4 {
  font-size: 24px;
  font-weight: 600;
  margin: 10px 0;
}

.about-para {
  font-size: 18px;
  font-weight: 400;
  margin: 20px 0;
  line-height: 40px;
  text-align: justify;
}

.about-campus {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f6f6f6;
  gap: 50px;
  margin-top: 60px;
  padding: 64px 100px;
}

.campus-header {
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.campus-header span::after {
  content: "";
  display: block;
  width: 4px;
  height: 30px;
  background-color: #184b94;
  margin-right: 10px;
  border-radius: 4px;
}

.campus-header h5 {
  font-size: 24px;
  font-weight: 600;
  color: #184b94;
}

.about-campus-text p {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}

.get-admission {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  margin: 60px 0;
  padding: 64px 100px;
}

.get-admission-text h4 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 20px;
}

.get-admission-text p {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 12px;
}

.about-para-extra,
.about-campus-para-extra {
  display: none;
}

.about-para-extra.active,
.about-campus-para-extra.active {
  display: block;
}

.about-para-extra-button,
.about-campus-para-extra-button {
  cursor: pointer;
}

.about-para-extra-button:hover svg,
.about-campus-para-extra-button:hover svg {
  transform: rotate(180deg);
}

@media screen and (max-width: 1024px) {
  .about-intro {
    padding: 24px 50px;
  }

  .about-campus {
    padding: 64px 50px;
  }

  .get-admission {
    padding: 64px 50px;
  }
}

@media screen and (max-width: 768px) {
  .about-intro {
    padding: 20px;
  }

  .about-campus {
    flex-direction: column;
    gap: 50px;
    padding: 20px;
  }

  .about-campus img {
    width: 100%;
  }

  .about-campus-text {
    text-align: center;
  }

  .about-campus-para {
    text-align: justify;
  }

  .get-admission {
    flex-direction: column;
    gap: 50px;
    padding: 20px;
  }

  .get-admission img {
    width: 100%;
  }

  .get-admission-text {
    text-align: center;
  }
}

/* Explore */

.explore {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  padding: 64px 100px;
}

.explore h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  width: max-content;
  margin: 0 auto;
  margin-top: 50px;
}

.explore h4 {
  color: #050505;
  font-size: 24px;
  font-weight: 600;
}

.programmes-container {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.programme {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  padding-right: 0;
  border-radius: 10px;
  border: 5px solid #fff;
  box-shadow: 0px 0px 20px 0px #05050533;
}

.programme p {
  color: #050505;
  font-size: 18px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .explore {
    padding: 20px;
  }

  .explore h2 {
    font-size: 30px;
  }

  .programmes-container {
    width: 100%;
  }

  .programme {
    padding: 0 12px;
  }

  .programme img {
    width: 100%;
  }

  .programme p {
    font-size: 16px;
  }
}

@media screen and (max-width: 440px) {
  .explore h2 {
    font-size: 24px;
  }
}

/* Faculty */

.faculty {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  padding: 64px 100px;
}

.faculty h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  width: max-content;
  margin: 0 auto;
  margin-top: 50px;
}

.faculties-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 60px;
}

.faculty-card {
  padding: 32px;
  border-radius: 10px;
  box-shadow: 0px 0px 20px 0px #05050533;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.last-faculty-card {
  grid-column: 2;
}

.faculty-info {
  width: 100%;
  text-align: center;
}

.faculty-info h4 {
  color: #184b94;
  font-weight: bold;
  margin-top: 12px;
}

.faculty-info img {
  margin-top: 12px;
}

@media screen and (max-width: 768px) {
  .faculty {
    padding: 20px;
  }

  .faculties-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faculty-card {
    padding: 20px;
  }

  .last-faculty-card {
    grid-column: 1;
  }
}

/* Contact */

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  padding: 32px 150px;
  background-color: #f6f6f6;
}

.contact h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  width: max-content;
  margin: 0 auto;
  margin-top: 50px;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-item {
  display: flex;
  gap: 30px;
}

.contact-icon svg {
  padding: 10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #fff;
}

.contact-text h5 {
  color: #5f687b;
  font-size: 20px;
  font-weight: 600;
}

.contact-text {
  color: #949cac;
}

iframe {
  width: 100%;
  height: 400px;
  border: none;
}

@media screen and (max-width: 1024px) {
  .contact {
    padding: 32px 100px;
  }

  .contact h2 {
    font-size: 30px;
  }

  .contact-container {
    gap: 50px;
  }

  .contact-container p {
    font-size: 14px;
  }

  .contact-icon svg {
    width: 30px;
    height: 30px;
  }

  .contact-text h5 {
    font-size: 16px;
  }

  .location-img {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .contact {
    padding: 20px;
  }

  .contact h2 {
    font-size: 30px;
  }

  .contact-container {
    flex-direction: column;
    gap: 50px;
  }
  .contact-container p {
    font-size: 14px;
  }

  .contact-icon svg {
    width: 30px;
    height: 30px;
  }

  .contact-text h5 {
    font-size: 16px;
  }

  .location-img {
    width: 100%;
  }
}

/* Footer */

footer {
  background-color: #184b94;

  margin-top: 80px;
  color: #fff;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  padding: 50px 100px;
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
  font-size: 14px;
  font-weight: 400;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.about-links,
.explore-links {
  margin-left: 200px;
}

.copy-right {
  margin-top: 40px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  padding: 40px 100px;
  border-top: 1px solid #fff;
}

.copy-right p {
  margin-top: 20px;
  font-weight: 400;
}

.footer-logo {
  width: 37%;
}

.about-links,
.explore-links {
  width: 33%;
}

.footer-link {
  text-decoration: none;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .footer-container {
    gap: 0;
    padding: 42px 34px;
  }
}

@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 50px;
    padding: 20px;
    font-size: 14px;
  }

  .footer-logo,
  .about-links,
  .explore-links {
    width: 100%;
  }

  .footer-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 24px 0;
  }

  .footer-container h4 {
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-contact {
    margin-top: 0;
    text-align: center;
  }

  .footer-list {
    margin-top: 0;
    text-align: center;
  }

  .about-links,
  .explore-links {
    margin-left: 0;
  }

  .copy-right {
    padding: 20px;
    font-size: 12px;
    display: flex;
    flex-direction: column;
  }
}
