@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Figtree", sans-serif;
  user-select: none;
}
main {
  margin-bottom: 80px;
}
.container>i{
  display: none;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
nav {
  height: 72px;
  background-color: #fff;
  padding-left: 81px;
  padding-right: 81px;
}
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.logo > img {
  width: 194px;
  height: 61px;
}
.nav-items > ul {
  display: flex;
  gap: 40px;
}
.nav-items > ul > li {
  list-style: none;
}
.nav-items > ul > li > a {
  color: black;
  text-decoration: none;
  font-size: 18px;
  font-weight: 350;
  cursor: pointer;
}
.nav-items > ul > li > #hover::after {
  display: block;
  content: "";
  margin: auto;
  width: 0%;
  height: 3px;
  border-radius: 4px;
  background-color: #0f52ba;
  margin-top: 1px;
  transition: ease-in 0.3s;
}
.nav-items > ul > li > #hover:hover::after {
  width: 100%;
}
.nav-items > ul > li > a > i {
  font-size: 15px;
}
.nav-btn-diver {
  height: 33px;
  width: 1px;
  background-color: #0f52ba;
}
.nav-other-items {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-icons img {
  width: 28px;
  height: 28px;
  cursor: pointer;
}
.reg-btn {
  width: 135px;
  height: 40px;
  background-color: #0f52ba;
  border: none;
  border-radius: 4px;
  color: #ffff;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.2s;
}
.reg-btn:active {
  transform: scale(0.95);
}
/* nav dropdown css */
.maga-menu {
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 15px #00000015;
  border-radius: 0 0 10px 10px;
  transition: 0.01s;
  margin-top: 7px;
}
.mega-menu-main-container {
  display: flex;
  justify-content: space-between;
}
.nav-items > ul > li:hover .maga-menu {
  opacity: 1;
  visibility: visible;
  top: 80%;
}
.mega-menu-inner-container {
  padding-top: 48px;
  padding-left: 48px;
  padding-right: 48px;
}
.maga-menu-title {
  font-size: 20px;
  color: #3363af;
  font-weight: 650;
  margin-bottom: 12px;
}
.mega-menu-inner-container > ul > li {
  list-style: none;
  margin-bottom: 6px;
}
.mega-menu-inner-container>ul>li>a{
  color: #292929;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;

}
.mega-menu-btn-container{
  width: 100%;
  display: flex;
  justify-content: end;
}
.mega-menu-see-all-button {
  width: 112px;
  height: 40px;
  margin-right: 48px;
  margin-bottom: 48px;
  margin-top: 48px;
  font-size: 16px;
  font-weight: 300;
  background-color: #0f52ba;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.title-second-mega-menu > h1 {
  font-size: 20px;
  color: #3363af;
  font-weight: 650;
  margin-left: 41px;
  margin-top: 48px;
  margin-bottom: 12px;
}
.second-mega-menu-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-left: 51px;
  margin-right: 51px;
}
.second-mega-menu-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-left: 51px;
  margin-right: 51px;
}

.second-mega-menu-content > ul > li {
  list-style: none;
  font-size: 14px;
  margin-bottom: 4px;
}
.second-mega-menu-content > ul > li > a {
  text-decoration: none;
  color: #292929;
}
.third-mega-menu-content{
  height: 200px;
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  gap: 50px;
  padding: 48px;
}
.title-third-mega-menu > h1 {
  color: #3363AF;
  font-size: 20px;
  font-weight: 650;
  margin-bottom: 12px;
}
.third-mega-menu-content>ul>li{
  list-style: none;
}
.third-mega-menu-content>ul>li>a{
  text-decoration: none;
  color: #292929;
}
.dropdown {
  position: relative;
}
.dropdown > a {
  text-decoration: none;
  color: black;
  font-size: 16px;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  width: 200px;
  top: 100%;
  right: 0;
  left: 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.075);
  z-index: 1;
  border-radius: 4px;
  padding-left: 48px;
  padding-right: 48px;
  padding-bottom: 40px;
}
.dropdown-content > h1 {
  color: #3363af;
  font-size: 20px;
  font-weight: 650;
  margin-top: 41px;
}
.dropdown-content a {
  color: #333;
  padding: 10px 0px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown > a::after {
  display: block;
  content: "";
  margin: auto;
  width: 0%;
  height: 3px;
  border-radius: 4px;
  background-color: #0f52ba;
  margin-top: 1px;
  transition: ease-in 0.3s;
}

.dropdown > a:hover::after {
  width: 100%;
}

/* login-pop-up css */
/* Modal container */

/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Modal Box */
.modal-content {
  background-color: #fff;
  width: 454px;
  margin: 8% auto;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  position: relative;
}

.modal-logo {
  width: 198px;
  height: 141px;
  margin-bottom: 32px;
  margin-top: 35px;
}

.btn {
  width: 400px;
  height: 48px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 450;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary {
  background-color: #0f52ba;
  color: #ffff;
  border: none;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #0f52ba;
  color: #0f52ba;
  margin-bottom: 30px;
}

.modal1-divder {
  width: 413px;
  margin: auto;
  height: 2px;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: #d0d0d0;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 34px;
  font-weight: 500;
  color: #000000;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

/* other modals */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
.modal-box {
  display: flex;
  width: 846px;
  height: 531px;
  margin: 5% auto;
  border-radius: 10px;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.modal-left {
  width: 313px;
  margin-left: 18px;
  margin-top: 18px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: #002366;
  color: white;
  padding-left: 20px;
}
.modal-right {
  margin: 0 57px;
}
.modal-left > h3 {
  font-size: 20px;
  font-weight: 300;
  width: 248px;
  margin-top: 20px;
}
.modal-left > h3 > span {
  font-weight: 700;
}
.points {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 20px;
  margin-top: 22px;
}
.points > img {
  width: 40px;
  height: 40px;
}
.points > p {
  text-align: left;
  font-size: 16px;
  color: #deeaf2;
  font-weight: 400;
}
.modal-testi {
  margin-right: 20px;
  margin-top: 87px;
}
.modal-testi > h1 {
  font-size: 20px;
  font-weight: 500;
  text-align: left;
}
.modal-testi > img {
  margin-left: -13px;
}

.modal-right-logo {
  width: 150px;
  margin-left: 113px;
  margin-top: 22px;
  margin-bottom: 12px;
}
.modal-right > h3 {
  font-size: 20px;
  font-weight: 650;
}
.modal-right > h6 {
  font-size: 16px;
  font-weight: 300;
  color: #6f6f6f;
}
.modal-right input,
.modal-right select {
  width: 388px;
  height: 48px;
  margin: 15px 0;
  padding-left: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.btn {
  width: 400px;
  padding: 12px;
  margin: 10px 0;
  font-size: 16px;
  font-weight: 350;
  border-radius: 5px;
  cursor: pointer;
}
.primary {
  background: #0f52ba;
  color: white;
  border: none;
}
.secondary {
  background: white;
  color: #0f52ba;
  border: 1px solid #0f52ba;
}
.modal-right > p > a {
  color: #0f52ba;
  text-decoration: none;
}
.modal-right > p {
  text-align: center;
  margin-top: 8px;
}

.otp-main-container > input {
  width: 70px;
  text-align: center;
  font-size: 24px;
  border: 1px solid #536878;
  border-radius: 4px;
}
.otp-container {
  width: 10px;
}
.modal-left-logo {
  width: 73px;
  margin-top: 20px;
  margin-left: 100px;
  margin-right: 100px;
  margin-bottom: 4px;
}
.Register-modal-left {
  width: 314px;
  background-color: #001a62;
  border-radius: 10px;
  margin-top: 18px;
  margin-left: 18px;
  margin-bottom: 18px;
}
.Register-modal-left > p {
  font-size: 18px;
  color: #fff;
  font-weight: 200;
  font-family: "figtree", sans-serif;
  line-height: 29px;
  margin-left: 20px;
  margin-bottom: 20px;
}
.Register-modal-right {
  margin-top: 20px;
  margin-left: 51px;
}
.Register-modal-right > h3 {
  font-size: 20px;
  text-align: left;
  font-weight: 750;
}
.Register-modal-right > p {
  font-size: 12px;
  font-weight: 300;
  color: #6f6f6f;
}
.Register-modal-right > input {
  width: 400px;
  height: 40px;
  margin-top: 18px;
  border-radius: 4px;
  padding-left: 12px;
  font-size: 16px;
  color: #959595;
  outline: none;
  border: 1px solid #536878;
}
.Register-modal-right > select {
  width: 415px;
  height: 40px;
  margin-top: 20px;
  outline: none;
  color: #959595;
  border: 1px solid #536878;
  border-radius: 4px;
}
.Register-btn-primary {
  width: 415px;
  height: 40px;
  margin-top: 20px;
  margin-bottom: 10px;
  background: #0f52ba;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  border-radius: 4px;
}
.Register-modal-right > p {
  margin-left: 80px;
  font-size: 16px;
}
.Register-modal-right > p > a {
  color: #005ced;
  text-decoration: none;
  font-weight: 550;
}
/* profile css */
#profileContainer {
  display: none;
  position: relative;
}
#profileIcon {
  width: 32px;
  cursor: pointer;
}
#profileDropdown {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 220px;
  padding: 12px;
  z-index: 1000;
}
/* notifcation bell css */
#notificationContainer {
  position: relative;
  margin-left: 16px;
}
#notificationBell {
  width: 28px;
  cursor: pointer;
}
#notificationDot {
  display: none;
  position: absolute;
  top: -2px;
  right: -2px;
  background: red;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
#notificationDropdown {
  display: none;
  position: absolute;
  top: 35px;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 260px;
  padding: 12px;
  z-index: 1000;
}



/* mega-menu css ends */

.hero-slider {
  margin-top: 72px;
  position: relative;
  height: 95.2vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}


.university-button {
  width: 170px;
  text-align: center;
  position: absolute;
  bottom: -20px;
  /* background section ke neeche se distance */
  left: 24px;
  /* left side se distance */
  background-color: #0056b3;
  color: white;
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 18px;
  text-decoration: none;
  z-index: 10;
}

.hero-section-outter-container {
  position: relative;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 940px;
  background-color: #00000093;
  border-radius: 10px;
  margin-top: 60px;
}

.hero-section-inner-container {
  height: 412px;
  color: #fff;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

.hero-section-inner-container>h1 {
  width: 770px;
  font-size: 56px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  margin-top: 48px;
  margin-left: auto;
  margin-right: auto;
}

.hero-section-inner-container>p {
  width: 688px;
  margin-top: 20px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.search-box-container {
  background: white;
  border-radius: 12px;
  margin-bottom: 40px;
  margin-left: 40px;
  margin-bottom: 48px;
  width: 844px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-left: 12px;
  /* padding-right: 12px; */
  padding-top: 12px;
  padding-bottom: 12px;

}

.search-box {
  width: 386px;
  height: 48px;
  border-radius: 4px;
  flex: 1;
  outline: none;
  border: 1px solid #dfdfdf;
  display: flex;
  justify-content: end;
}

.search-box>i {
  color: #000;
  font-size: 24px;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 16px;
  margin-right: 12px;
  color: #999FAA;
}

.search-box>input {
  width: 320px;
  height: 45px;
  outline: none;
  border: 1px solid white;
  font-size: 16px;
  color: #9ca2af;
}

.location-box {
  width: 280px;
  height: 48px;
  border-radius: 4px;
  flex: 1;
  border: 1px solid #dfdfdf;
}

.location-box>i {
  font-size: 24px;
  color: #999FAA;
}

.location-box>select {
  width: 245px;
  height: 45px;
  color: #777a7e;
  outline: none;
  font-size: 16px;
  border: none;
  background: #ffffff;

}

.search-box-container>button {
  background-color: #0f52ba;
  color: white;
  width: 120px;
  height: 48px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.2s;
}

.search-container>button:active {
  transform: scale(0.95);
}

/* Top Colleges section css */
.top-university-main-container {
  margin-top: 140px;
  margin-bottom: 140px;
}

.top-university-heading-container {
  font-size: 40px;
  text-align: center;
  font-weight: 700;
  font-family: "Figtree", sans-serif;
  margin-top: 140px;
}

.top-university-heading-container>span {
  display: none;
}

.top-university-cards-outter-container {
  height: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.top-university-card {
  width: 413px;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0px 4px 15px #0000002f;
}

.top-university-card img {
  width: 413px;
  height: 240px;
  margin-bottom: 16px;
}

.card-heading {
  width: 379px;
  height: 72px;
  font-size: 24px;
  font-weight: 600;
  margin-left: 16px;
  margin-bottom: 4px;
}

.card-details {
  width: 381px;
  font-size: 16px;
  color: #515151;
  margin-left: 16px;
  margin-bottom: 16px;
}

.card-button {
  margin-left: 16px;
  width: 142px;
  height: 40px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #275db1;
  margin-bottom: 16px;
  font-weight: 450;
  cursor: pointer;
  background-color: #fff;
}

.card-button>a {
  color: #275db1;
  text-decoration: none;
  transition: 0.2s;
}

.card-button:hover a {
  color: #ffff;
}

.card-button:hover {
  background-color: #275db1;
  color: #ffff;
}

.top-university-see-more {
  font-size: 16px;
  text-decoration: none;
  align-items: end;
  color: #275db1;
  margin-left: 1200px;
  /* margin-right: 80px; */
}

.top-university-see-more>i {
  font-size: 13px;
  margin-left: 4px;
}

/* Career Section Css */
.career-banner-main-container {
  height: 528px;
  background-color: #deeaf2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 60px;
}

.career-banner-details {
  width: 715px;
  margin-left: 50px;
}

.career-banner-details>h1 {
  font-size: 45px;
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}

.career-banner-details>h1>span {
  color: #2a60b4;
}

.career-banner-details>p {
  font-family: "Baloo 2", sans-serif;
  font-size: 20px;
  color: #575757;
  margin-bottom: 40px;
}

.career-btn {
  width: 261.57px;
  height: 48px;
  border-radius: 4px;
  background-color: #ffffff;
  color: #282c87;
  border: 1px solid #282c87;
  font-size: 16px;
  font-weight: 350;
  transition: transform 0.2s;
  cursor: pointer;
}

.career-btn:active {
  transform: scale(0.95);
}

.career-banner-image>img {
  width: 580px;
  height: 528px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/*NIAT Section Css*/
.NIAT-university-heading-container {
  margin-top: 140px;
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #000A26;
}

.NIAT-university-heading-container>span {
  display: none;
}

.NIAT-university-cards-outter-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;

}

.NIAT-university-card {
  height: 450px;
  width: 413px;
  box-shadow: 0px 4px 15px #0000002f;
}

.NIAT-university-card>img {
  width: 413px;
  height: 240px;
}

.NIAT-card-heading {
  font-size: 24px;
  font-weight: 600;
  margin-top: 16px;
  margin-left: 16px;
}

.NIAT-card-details {
  margin-left: 16px;
  font-size: 16px;
  color: #515151;
  margin-top: 4px;
}

.NIAT-card-button {
  width: 142px;
  height: 40px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #275db1;
  margin-bottom: 16px;
  font-weight: 450;
  cursor: pointer;
  background-color: #fff;
  margin: 16px 0px;
  margin-left: 16px;
}

.NIAT-card-button>a {
  color: #275db1;
  text-decoration: none;
  transition: 0.2s;
}

.NIAT-card-button:hover a {
  color: #ffff;
}

.NIAT-card-button:hover {
  background-color: #275db1;
  color: #ffff;
}

.NIAT-university-see-more {
  display: flex;
  justify-content: flex-end;
  margin-right: 100px;
  margin-top: 40px;
  text-decoration: none;
  font-size: 16px;
  color: #245AAE;
  font-weight: 500;
}

.ups-main-container {
  display: flex;
  justify-content: center;
}

.ups-img-container {
  width: 1305.47px;
  height: 670px;
  background-image: url(/Assests/usp.png);
  background-repeat: no-repeat;
  margin-top: 140px;
}

/* stars css */
.stats-container {
  height: 197px;
  display: flex;
  gap: 74px;
  /* flex-wrap: wrap; */
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  background: #ffffff;
  margin-top: 130px;
}

.stat-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circle {
  width: 196px;
  height: 196px;
  border-radius: 50%;
  /* background: conic-gradient(#2b579b 0deg, #e6e6e6 0deg); */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  background: #2b579b;
}

.inner-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  padding-top: auto;
  padding-bottom: auto;
}

.inner-circle>h3 {
  margin-top: 43px;
  font-size: 32px;
  font-weight: 800;
  color: #00255F;

}

.inner-circle>p {

  text-align: center;
  font-size: 16px;
  color: #00255F;
  font-weight: 400;
}

.other-university-heading-container {
  margin-top: 140px;
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #000A26;
}

.other-university-heading-container>span {
  display: none;
}

.internship-banner-outter-container {
  width: 100%;
  height: 511px;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 140px;
}

.internship-main-container {
  width: 630px;
  background: #ecf8ff;
  border-radius: 12px;
}

.internship-main-container>img {
  width: 302px;
  margin-left: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.internship-main-container>h1 {
  width: 590px;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: 600;
}

.internship-main-container>p {
  font-size: 16px;
  font-weight: 350;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.internship-apply-btn {
  width: 100%;
  display: flex;
  justify-content: end;
}

.internship-apply-btn>a>button {
  width: 262px;
  height: 48px;
  background-color: white;
  border: 1px solid #282c87;
  color: #282c87;
  font-size: 16px;
  margin-right: 20px;
  border-radius: 4px;
  transition: transform 0.2s;
  cursor: pointer;
}

.internship-apply-btn>a>button:active {
  transform: scale(0.95);
}

.application-main-container {
  width: 630px;
  background: #ecf8ff;
  border-radius: 12px;
}

.application-main-container>img {
  width: 236px;
  margin-left: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.application-main-container>h1 {
  width: 590px;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: 600;
}

.application-main-container>p {
  font-size: 16px;
  font-weight: 350;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.internship-apply-btn {
  width: 100%;
  display: flex;
  justify-content: end;
}

.internship-apply-btn>a>button {
  width: 262px;
  height: 48px;
  /* background: transparent; */
  border: 1px solid #282c87;
  color: #282c87;
  font-size: 16px;
  margin-right: 20px;
  border-radius: 4px;
  transition: transform 0.2s;
  cursor: pointer;
}

.internship-apply-btn>a>button:active {
  transform: scale(0.95);
}

/* Our archivement */
.archiment-main-container {
  background-color: #0f52ba;
  margin-top: 140px;
  padding-top: 42px;
  padding-left: 80px;
  padding-right: 80px;
  padding-bottom: 40px;
}

.archiment-main-container>h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 40px;
  color: #ffffff;
  font-weight: 550;
  font-family: "Figtree", sans-serif;
}

.archi-slider-container {
  overflow: hidden;
  position: relative;
  /* max-width: 100%; */
  padding: 10px 0;
  /* z-index: 1; */
}

.archi-slider-track {
  display: flex;
  width: calc(300px * 8);
  animation: scroll 25s linear infinite;
  gap: 20px;
}

.archi-slider-track>img {
  width: 305px;
  height: 232px;
  object-fit: contain;
  border-radius: 8px;
  /* margin-bottom: 40px; */
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* counsaltant banner */

.counsaltant-banner-main-container {
  height: 476px;
  background-color: #deeaf2;
  margin-top: 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 60px;
}

.counsaltant-banner>img {
  width: 533px;
  height: 366px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.counsaltant-banner-details {
  width: 713px;
  margin-left: 60px;
}

.counsaltant-banner-details>h1 {
  font-size: 40px;
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  margin-bottom: 18px;
}

.counsaltant-banner-details>h1>span {
  color: #3363af;
}

.counsaltant-banner-details>p {
  font-family: "Baloo 2", sans-serif;
  font-size: 20px;
  color: #00217f;
  margin-bottom: 40px;
}

.counsaltant-btn {
  width: 261.57px;
  height: 48px;
  border-radius: 4px;
  background-color: #ffffff;
  color: #282c87;
  border: 1px solid #282c87;
  font-size: 16px;
  font-weight: 500;
  transition: transform 0.2s;
  cursor: pointer;
}

.counsaltant-btn:active {
  transform: scale(0.95);
}

.how-we-are-help-you-heading {
  font-size: 40px;
  font-weight: 700;
  font-family: "Figtree", sans-serif;
  color: #000a26;
  margin-bottom: 43px;
  text-align: center;
  margin-top: 140px;
}

.how-we-are-help-you-cards {
  display: flex;
  justify-content: center;
  align-items: center;
}

.how-we-are-img {
  width: 1026px;
  height: 167px;
  background-image: url(/Assests/HWR-Desktop.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-left: auto;
  padding-right: auto;
  margin-bottom: 140px;
}
/* vedio css */
/* vedio css ends */
/* testimonial css */
/* testimonial css ends */
/* footer css */
/* footer css */
.footer-main-caontainer {
  background-color: #002764;
  color: white;
  padding: 39px 61px 41px 61px;
}
.footer-NIAT>ul>li {
  list-style: none;
  margin-bottom: 4px;
}
.footer-NIAT > ul > li > a {
  color: #dcdcdc;
  text-decoration: none;
  font-size: 14px;
}
.heading {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}
.footer-NIAT {
  display: flex;
  justify-content: space-between;
}
.social-media {
  margin-top: 24px;
}
.social-media>a {
  color: white;
  text-decoration: none;
  margin-right: 4px;
}
.social-media>a>i {
  font-size: 20px;
}
.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #d5d5d5;
  margin-top: 40px;
}
.footer-last-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}
.footer-logo>img {
  height: 62px;
}
.copy-right {
  font-size: 16px;
  font-weight: 300;
}
/* footer css ends */
.loan-banner-main-container{
  background-color: #ECF8FF;
  margin-top: 120px;
  display: flex;
  justify-content: space-between;
}
.loan-banner-main-container>img{
  width: 420px;
  height: 420px;
  margin-left: 60px;
  margin-top: 39px;
  margin-bottom: 39px;
}
.loan-banner-details{
  width: 823px;
  height: 371px;
  margin-right: 40px;
  margin-top: 79px;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.loan-banner-details>h1{
  width: 812px;
  font-size: 48px;
  margin-bottom: 31px;
}
.loan-banner-details>h1>span{
  color: #1D59B7;
}
.loan-banner-details>p{
  width: 823px;
  font-size: 20px;
  color: #575757;
  margin-bottom: 48px;
}
.loan-apply-btn{
  width: 262px;
  height: 48px;
  border: 1px solid #282C87;
  color: #282C87;
  font-size: 16px;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  border-radius: 4px;
}
/* side nave for mobile css */

    /* Sidebar */
    .sidebar {
      position: fixed;
      top: 0;
      left: -380px;
      width: 380px;
      height: 100%;
      background: white;
      color: black;
      transition: 0.3s ease;
      z-index: 1000;
      overflow-y: auto;
      box-shadow: 2px 0 10px rgba(0,0,0,0.3);
    }

    .sidebar.active {
      left: 0;
    }

    .sidebar-header {
      height: 102px;
      background: #0d47a1;
      color: white;
      font-size: 20px;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 36px;
    }
    .sidebar-header>a>img{
      height: 62px;
      margin-left: 20px;
    }

    .sidebar-close-btn {
      font-size: 24px;
      cursor: pointer;
      margin-right: 20px;
      margin-top: auto;
      margin-bottom: auto;
    }

    .sidebar>.sidebar-menu-item {
      border-bottom: 1px solid #979797;
      margin-left: 20px;
      margin-right: 20px;
    }

    .sidebar-menu-link {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0px;
      text-decoration: none;
      color: black;
      cursor: pointer;
      font-size: 18px;
      font-weight: 500;
    }

    .sidebar-menu-link:hover {
      background: #f5f5f5;
    }

    .submenu {
      display: none;
      background: #fafafa;
    }
    
    .submenu>a {
      display: block;
      padding: 12px 0px;
      text-decoration: none;
      color: #303030;
      font-size: 16px;
      border-bottom: 1px solid #979797;
    }
  

    .submenu>a:hover {
      background: #e2e8f0;
    }

    /* Overlay (black blur background) */
    .sidebar-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.719);
      backdrop-filter: blur(5px);
      display: none;
      z-index: 900;
    }

    .sidebar-overlay.active {
      display: block;
    }

    /* Register button */
    .sidebar-register-btn {
      margin: 20px;
      padding: 12px;
      background: #0d47a1;
      color: white;
      text-align: center;
      border-radius: 6px;
      text-decoration: none;
      display: block;
      margin-top: 20px;
    }