body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  margin: 0;
}

* {
  margin: 0;
  padding: 0;
}

:root {
  font-size: 62.5%;
  --orange: #ff7725;
  --grey: #636262;
  --white: #fff;
  --black: #000;
  --dark-blue: #060125;
  --blue: #070a52;
  --light: #f8f9fa;
  --black-light: #384349;
  --transition: all 0.3s ease;
}

a:hover,
a:focus {
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.r-g-3 {
  row-gap: 3rem;
}

.text-black {
  color: var(--black);
}

.flex-center {
  display: flex;
  align-items: center;
}

.fs14 {
  font-size: 1.4rem;
}

.fs16 {
  font-size: 1.6rem;
}

/* ===== Header ===== */
header img {
  max-width: 100%;
  max-height: 4.5rem;
}

header p {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
}

a {
  transition: all 0.3s ease;
  color: #1a4c87;
  text-decoration: none;
}

.bg-light {
  background: var(--light);
}

.banner-image {
  position: relative;
  background-image: url(../images/banner.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.flex-3 {
  flex: 3;
}

.flex-1 {
  flex: 1;
}

.otp {
  background-color: #c9c9c9;
  color: var(--white) !important;
  box-shadow: none !important;
  font-size: 1.2rem;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.banner-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(12 66 154 / 66%) 15%, #272626ba 85%);
}

.banner-logo img {
  max-height: 8rem;
  border-radius: 1rem;
}

.feat-info {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feat-info img {
  max-height: 10rem;
}

.feat-info svg {
  height: 4rem;
  width: 4rem;
  fill: var(--light);
}

.feat-info p {
  font-size: 1.6rem;
  color: var(--light);
  margin: 0.5rem 0 0;
}

.why-choose-list .item img {
  height: 5rem;
  width: 5rem;
  margin-bottom: 1rem;
}

.why-choose-list li>div {
  position: relative;
  padding: 2rem;
  background: var(--white);
  height: 100%;
  font-size: 1.6rem;
  border-radius: 1rem;
}

.top_form {
  background: var(--white);
  padding: 2rem;
  margin: 5rem auto;
  position: relative;
  width: 70%;
  border-radius: 1.6rem;
  box-shadow: 0 2rem 5rem rgb(26 76 135 / 50%);
}

.top-card {
  background: var(--orange);
  color: var(--white);
  border-radius: 1.6rem 1.6rem 0 0;
  padding: 1.2rem 2.5rem;
}

.top_form p {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey);
}

.top_form h2 {
  font-size: 2rem;
  font-weight: 600;
}

.top_form label {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.top_form .form-group {
  margin-bottom: 1.5rem;
}

.top_form .form-control {
  border: 0.1rem solid var(--grey);
  height: 4.5rem;
  border-radius: 0.4rem;
  font-size: 1.3rem;
}

.top_form .form-control::placeholder {
  color: var(--grey);
}

.top_form .form-control:focus {
  box-shadow: none;
}

.submit-btn button {
  border: 0;
  background: var(--orange);
  text-transform: uppercase;
  font-weight: 700;
  width: 80%;
  color: var(--white) !important;
  border-radius: 1rem;
  padding: 9px 24px;
  font-size: 1.8rem;
  margin: 1rem 0;
  box-shadow: 0 1.2rem 5rem rgb(237 121 36 / 42%);
}

.submit-btn button:hover {
  color: #fff;
}

.submit-btn button:focus {
  outline: 0;
  box-shadow: none;
}

.banner-title h1 {
  font-size: 5rem;
  font-weight: 700;
  margin: 0;
}

.banner-title {
  max-width: 85%;
}

.fs26 {
  font-size: 26px;
}

.fs40 {
  font-size: 40px;
}

.text-red {
  color: var(--orange);
}

.feature-icon {
  height: 5rem;
  width: 5rem;
  margin: auto;
  border-radius: 50%;
}

.feature-icon img {
  height: 4.5rem;
  width: 4.5rem;
}

.course-info svg {
  height: 1.6rem;
  width: 1.6rem;
}

.course-info span {
  font-size: 1.4rem;
}

.specialization {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  gap: 1rem;
}

.specialization span {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 3rem;
  background: var(--white);
  font-weight: 500;
}

.college-list li p {
  margin-bottom: 1rem;
  width: 98%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 1.4rem;
  font-weight: 500;
}

.college-list li img {
  height: 18rem;
  width: 100%;
  object-fit: cover;
  border-radius: 1rem 1rem 0 0;
}

.college-list li>div {
  background: var(--light);
  border-radius: 0 0 1rem 1rem;
}

.college-list li .clg-action {
  padding: 1.6rem 1rem;
}

header {
  padding: 1.4rem 0;
}

.explore-btn {
  border: 0.1rem solid var(--orange);
  color: var(--orange) !important;
  font-size: 1.2rem;
  background: transparent;
  border-radius: 0.4rem;
  display: inline-block;
  padding: 0.6rem 1rem;
  font-weight: 600;
}

section {
  padding: 3rem 0;
}

.heading h2 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 3rem;
  text-align: center;
  color: var(--blue);
}

.heading p {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0;
}

.course-list li {
  background: var(--light);
  border-radius: 2.5rem;
  padding: 2.5rem;
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
}

.partner-list li {
  background: var(--light);
  padding: 2rem 1rem;
  border-radius: 1rem;
}

.partner-list img {
  height: 4rem;
  width: 100%;
  object-fit: contain;
}

.recruiter img {
  height: 4rem;
}

.partner-list {
  text-align: center;
}

.p-clgs {
  text-align: center;
}

.counselling-grid {
  display: grid;
  justify-content: space-evenly;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.counselling-grid>div {
  padding: 2rem 1rem;
  transition: all 0.4s ease;
  border-radius: 1rem;
  background: var(--white);
}

.counselling-grid img {
  height: 4rem;
  object-fit: contain;
}

.figure-img {
  width: 6.7rem;
  position: relative;
  margin: 0 auto 2rem;
  padding: 1.2rem;
}

.figure-img::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 0.2rem solid #ff7725;
  border-radius: 0.6rem;
  transform: rotate(45deg);
}

.counselling-grid figure {
  margin-bottom: 5px;
}

.counselling-grid figcaption {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 1rem 0;
}

.counselling-grid p {
  font-size: 1.4rem;
  margin: 0;
}

footer {
  background: #2d3436;
  color: var(--white);
  padding: 2rem 0;
}

footer img {
  max-height: 5rem;
}

footer h3 {
  font-size: 1.6rem;
}

footer p {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

footer .icon {
  font-size: 2rem;
  margin-right: 1rem;
}

.footer-bottom {
  background: #2d3436;
  color: var(--white);
}

.card-features p {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
}

.card-features img {
  height: 90px;
  width: 100%;
  object-fit: contain;
}

.feature-card {
  background: transparent;
  transition: all 0.4s ease;
  border-radius: 1rem;
  padding: 2rem 1rem;
  text-align: center;
}

.feature-card:hover {
  background: var(--white);
}

.college-list {
  row-gap: 2rem;
}

/* new changes */

.container-fluid {
  width: 90%;
  margin: auto;
}