body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #333;
}


.container {
  max-width: 1140px;
  margin: auto;
  padding: 40px 20px;
}

.top-header {
  background-color: #114A91;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  padding: 11px 26px;
  size: 22px;
  font-size: 19px;
  color: white;
}
.top-header a{
  color: white;
}
.highlight{
  font-weight: bold;
  color: #374D9E;
}
.highlight:hover{
  text-decoration: none;
  color: #374D9E;
}

.navbar {
  padding: 1px 58px;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  animation: slideDown 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0%);
  }
}

.navbar-nav .nav-link {
  color: #00306E !important;
  font-weight: 600;
  text-align: left;
  padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
  color: #00306E !important;
}

.navbar-brand img {
  max-height: 70px;
}
.btn {
  position: relative;
  top: -85px;
  width: 48%;
  left: 29%;
  font-weight: 700;
  background-color: white;
  color: #1D3B95;
  border: 0;
  font-size: 22px;
  border-radius: 12px;
}
.btn:hover{
    background-color: #FDB813;
}

.login-btn {
  border-left: 1px solid #ccc;
  padding-left: 1rem;
  margin-left: 1rem;
}

.login-btn i {
  margin-right: 5px;
}

.login-btn .nav-link {
  color: #00306E !important;
  font-weight: 500;
}

.slider-img {
  height: 500px;
  width: 100%;
}

.main-section h1,
.features-section h2,
.features h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 10px;
}


.line {
  width: 80px;
  height: 4px;
  background: #007BFF;
  margin: 0 auto 25px;
  border-radius: 3px;
  animation: expand 1s ease-in-out forwards;
}

@keyframes expand {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 80px;
    opacity: 1;
  }
}


.main-section p,
.features-section p {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  font-size: 1.05rem;
  text-align: justify;
}


.features {
  background-color: #ffffff;
  margin-top: 30px;
  padding: 50px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
}
.features-bg{
    background-image: url("https://academicheights.in/wp-content/uploads/2023/03/bgtry1-1-scaled.webp");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top;
    background-size: cover;
}

.features .main-content {
  padding: 15px;
}

.features img {
  border-radius: 10px;
  object-fit: cover;
}

.features ul {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 1.05rem;
  color: #555;
}

.features ul li {
  margin-bottom: 15px;
}


/* @media (max-width: 768px) {
  .main-section h1,
  .features-section h2,
  .features h2 {
    font-size: 1.8rem;
  }

  .main-section p,
  .features-section p,
  .features ul {
    font-size: 1rem;
  }

  .features img {
    height: auto;
    max-width: 100%;
  }

  .features {
    padding: 30px 15px;
  }
} */

/* footer  */

.footer {
  background-color: #374D9E;
}

.footer-section p {
  color: white;
  font-size: 16px;
  font-weight: 400;
  padding-top: 25px;
}

.footer-section h5 {
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  color: white;
  padding: 7px;
  font-size: 15px;
  font-weight: 500;
}



.form-container {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 23px;
  border-radius: 10px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  animation: fadeIn 1.2s ease;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* width: 300px; */
}

input,
textarea {
  padding: 12px;
  font-size: 15px;
  border: 1px solid #000;
  border-radius: 6px;
  transition: all 0.3s ease;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: #fff;
  background-color: #e8f0fe;
  transform: scale(1.02);
}

textarea {
  resize: none;
  min-height: 80px;
}

button {
  padding: 12px;
  background-color: #ffffff;
  border: 1px solid black;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}




.quick-search h4 {
  color: white;
}

.quick-search p {
  color: white;
  max-width: 93%;
  border-bottom: 1px solid white;
  padding-bottom: 15px;
}

.quick-search a {
  color: white;
  font-size: 16px;
}

.copyright h5 {
  color: white;
  text-align: center;
  padding-top: 26px;
  font-size: 17px;
  font-weight: 400;
}

.mobile-footer {
  position: fixed;
  bottom: 0; 
  left: 0;
  width: 100%;
  display: flex;
  background-color: #374D9E;
  text-align: center;
  z-index: 1000;
  height: auto;
}

.fran-btnbg {
  background-color: #F5C48E;
  width: 50%;
}

.fran-btn {
  background-color: #F5C48E;
  padding: 10px;
  font-size: 18px;
  font-weight: 500;
  color: white;
}

.adm-btnbg {
  background-color: #7192BD;
  width: 50%;
}

.adm-btn {
  background-color: #7192BD;
  padding: 10px;
  font-size: 18px;
  font-weight: 500;
  color: white;
}

/* footer  */