.container-galen {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

.container {
  width: 100%;
  max-width: 1400px;
  padding: 0 20px;
}

.galen-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.galen-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.galen-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.galen-logo img {
  width: 70px;
}

.galen-logo-text h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: #0b2d87;
}

.galen-logo-text span {
  color: #ff9800;
}

.galen-logo-text p {
  font-size: 12px;
  color: #555;
}

.galen-menu {
  display: flex;
  gap: 35px;
}

.galen-menu li a {
  color: #111;
  font-weight: 600;
  position: relative;
  transition: 0.4s;
}

.galen-menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 3px;
  background: #ff9800;
  transition: 0.4s;
  border-radius: 20px;
}

.galen-menu li a:hover {
  color: #0b2d87;
}

.galen-menu li a:hover::after {
  width: 100%;
}

.galen-login-btn {
  background: linear-gradient(45deg, #0b2d87, #004cff);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.4s;
}

.galen-login-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 76, 255, 0.35);
}

/*==============================
HERO SECTION
==============================*/

.galen-hero {
  position: relative;
  padding: 30px 0 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #055774, #1242c0);
}

.galen-hero-content {
  padding-bottom: 80px;
}

.galen-hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -250px;
  right: -200px;
}

.galen-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.galen-hero-content h1 {
  font-size: 35px;
  line-height: 50px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.galen-hero-content h1 span {
  background: linear-gradient(135deg, #fecb02, #ff3d00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.galen-hero-content p {
  color: #dce4ff;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.galen-btn-group {
  padding-bottom: 60px;
}

/* .galen-btn-group {
  display: flex;
  gap: 20px;
} */
.galen-btn-group .galen-primary-btn {
  margin-right: 15px;
}

.galen-primary-btn {
  background: linear-gradient(45deg, #ff9800, #ffcc00);
  color: #111;
  padding: 18px 25px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.4s;
  text-transform: capitalize;
}

.galen-primary-btn:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 35px rgba(255, 152, 0, 0.4);
}

.galen-outline-btn {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 16px 38px;
  border-radius: 14px;
  transition: 0.4s;
  font-weight: 600;
}

.galen-outline-btn:hover {
  background: #fff;
  color: #0b2d87;
}

.galen-hero-image {
  position: relative;
  text-align: center;
}

.galen-hero-image img {
  width: 100%;
  max-width: 550px;
}

@keyframes floatHero {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/*==============================
FEATURE BOX
==============================*/

.galen-feature-wrap {
  margin-top: -60px;
  position: relative;
  z-index: 5;
}

.galen-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.galen-feature-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 24px;
  text-align: center;
  transition: 0.5s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.galen-feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.galen-feature-icon {
  width: 80px;
  height: 80px;
  margin: auto;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(45deg, #0b2d87, #004cff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  transition: 0.4s;
}

.galen-feature-card:hover .galen-feature-icon {
  transform: rotateY(360deg);
}

.galen-feature-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  color: #0b2d87;
}

.galen-feature-card p {
  color: #000000;
  line-height: 1.7;
}

/*==============================
COURSE SECTION
==============================*/

.galen-course-section {
  padding: 120px 0 80px;
}

.galen-section-title {
  text-align: center;
  margin-bottom: 60px;
}

.galen-section-title h2 {
  font-size: 54px;
  color: #0b2d87;
  margin-bottom: 15px;
}

.galen-section-title p {
  max-width: 700px;
  margin: auto;
  color: #000000;
  line-height: 1.8;
}

.galen-course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.galen-course-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  transition: 0.5s;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.galen-course-card:hover {
  transform: translateY(-12px);
}

.galen-course-image {
  overflow: hidden;
}

.galen-course-image img {
  width: 100%;
  transition: 0.6s;
}

.galen-course-card:hover .galen-course-image img {
  transform: scale(1.1);
}

.galen-course-content {
  padding: 35px;
}

.galen-course-content h3 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #0b2d87;
}

.galen-course-content p {
  color: #000000;
  line-height: 1.8;
  margin-bottom: 15px;
}

.galen-read-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #0b2d87;
  color: #fff;
  border-radius: 12px;
  transition: 0.4s;
}

.galen-read-btn:hover {
  background: #ff9800;
  transform: translateX(8px);
}

/*==============================
STATS SECTION
==============================*/

.galen-stats {
  background: linear-gradient(135deg, #071b52, #0b2d87);
  padding: 80px 0;
}

.galen-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.galen-stat-item {
  color: #fff;
}

.galen-stat-item h2 {
  font-size: 60px;
  color: #ffcc00;
}

.galen-stat-item p {
  margin-top: 10px;
  font-size: 18px;
}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px) {

  .galen-hero-grid {
    grid-template-columns: 1fr;
  }

  .galen-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .galen-course-grid {
    grid-template-columns: 1fr;
  }

  .galen-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .galen-hero-content h1 {
    font-size: 50px;
  }

  .galen-menu {
    display: none;
  }

}

@media(max-width:600px) {

  .galen-feature-grid {
    grid-template-columns: 1fr;
  }

  .galen-stats-grid {
    grid-template-columns: 1fr;
  }

  .galen-hero-content h1 {
    font-size: 30px;
    line-height: 45px;
  }

  .galen-btn-group {
    flex-direction: column;
  }

  .galen-section-title h2 {
    font-size: 38px;
  }

}

.elite-title {
  font-size: 65px;
  font-weight: 800;
  line-height: 1.2;
}

.elite-title span {
  position: relative;
  display: inline-block;
  color: #ffffff;
  letter-spacing: 2px;
  overflow: hidden;
}

/* Animated Text Reveal */
.elite-title span::before {
  content: "NEET & IIT-JEE";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  color: #ffd54f;
  white-space: nowrap;
  overflow: hidden;
  border-right: 4px solid #ffffff;
  animation: premiumTyping 4s ease-in-out infinite;
  display: none;
}

/* Smooth Typing Effect */
@keyframes premiumTyping {

  0% {
    width: 0%;
  }

  40% {
    width: 100%;
  }

  60% {
    width: 100%;
  }

  100% {
    width: 0%;
  }
}

/* ROW GAP */
.galen-course-row {
  row-gap: 30px;
}

/* CARD DESIGN */
.galen-fee-card {
  position: relative;
  background: linear-gradient(135deg, #071a52, #0b2b78);
  border-radius: 25px;
  padding: 40px 35px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  height: 100%;
}

/* GLOW EFFECT */
.galen-fee-card::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -120px;
  right: -120px;
  transition: all 0.5s ease;
}

/* HOVER ANIMATION */
.galen-fee-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

/* HOVER GLOW */
.galen-fee-card:hover::before {
  transform: scale(1.4);
}

/* CONTENT */
.galen-fee-content h3 {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
}

/* TITLE UNDERLINE */
.galen-fee-content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 70px;
  height: 4px;
  border-radius: 30px;
  background: linear-gradient(to right, #ff6b00, #ffcc00);
}

/* LIST STYLE */
.galen-fee-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* LIST ITEMS */
.galen-fee-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}

/* ICON STYLE */
.galen-fee-list li i {
  color: #ffcc00;
  font-size: 18px;
  transition: all 0.4s ease;
}

/* LIST HOVER */
.galen-fee-list li:hover {
  padding-left: 10px;
  color: #ffd369;
}

/* ICON ROTATE */
.galen-fee-list li:hover i {
  transform: rotate(360deg) scale(1.2);
}

/* SECOND CARD DIFFERENT SHADE */
.galen-crash-card {
  background: linear-gradient(135deg, #0a1931, #185adb);
}

/* MOBILE RESPONSIVE */
@media (max-width: 767px) {

  .galen-fee-card {
    padding: 30px 25px;
  }

  .galen-fee-content h3 {
    font-size: 26px;
  }

  .galen-fee-list li {
    font-size: 16px;
  }

}

/*======================================
   GALENFORT CTA SECTION
======================================*/

.galenfort-cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #081b44, #0f2f75, #143c95);
  position: relative;
  overflow: hidden;
}

.galenfort-cta-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -180px;
  right: -120px;
}

.galenfort-cta-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  bottom: -120px;
  left: -100px;
}

.galenfort-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.galenfort-cta-content {
  flex: 1;
}

.galenfort-tagline {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.galenfort-cta-content h2 {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.galenfort-cta-content h2 span {
  color: #ffd54f;
}

.galenfort-cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 35px;
}

.galenfort-cta-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.galenfort-call-btn,
.galenfort-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.4s ease;
}

.galenfort-call-btn {
  background: #ffd54f;
  color: #081b44;
}

.galenfort-call-btn:hover {
  background: #fff;
  transform: translateY(-4px);
}

.galenfort-whatsapp-btn {
  background: #25D366;
  color: #fff;
}

.galenfort-whatsapp-btn:hover {
  background: #1ebc59;
  transform: translateY(-4px);
}

.galenfort-contact-box {
  width: 360px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 35px;
  border-radius: 24px;
}

.galenfort-contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 25px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.galenfort-contact-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.galenfort-icon {
  width: 65px;
  height: 65px;
  background: #ffd54f;
  color: #081b44;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: 16px;
  flex-shrink: 0;
}

.galenfort-icon.whatsapp {
  background: #25D366;
  color: #fff;
}

.galenfort-contact-item h5 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}

.galenfort-contact-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

.galenfort-contact-item a:hover {
  color: #ffd54f;
}

/*==============================
   RESPONSIVE
==============================*/

@media (max-width: 991px) {

  .galenfort-cta-wrap {
    flex-direction: column;
  }

  .galenfort-cta-content h2 {
    font-size: 40px;
  }

  .galenfort-contact-box {
    width: 100%;
  }
}

@media (max-width: 575px) {

  .galenfort-cta-section {
    padding: 70px 0;
  }

  .galenfort-cta-content h2 {
    font-size: 32px;
  }

  .galenfort-cta-content p {
    font-size: 16px;
  }

  .galenfort-call-btn,
  .galenfort-whatsapp-btn {
    width: 100%;
  }

  .galenfort-contact-box {
    padding: 25px;
  }
}

/*======================================
   STICKY CONTACT BUTTONS
======================================*/

.galenfort-sticky-contact {
  position: fixed;
  right: 25px;
  bottom: 205px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* COMMON STYLE */

.galenfort-sticky-contact a {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  overflow: hidden;
  border-radius: 70px;
  min-width: 60px;
  height: 60px;
  transition: all 0.4s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

/* ICON BOX */

.galenfort-icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  position: relative;
  z-index: 2;
}

/* TEXT */

.galenfort-btn-text {
  max-width: 0;
  white-space: nowrap;
  overflow: hidden;
  opacity: 0;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.45s ease;
}

/*======================================
   CALL BUTTON
======================================*/

.galenfort-sticky-call {
  background: linear-gradient(135deg, #ff6a00, #ff3c00);
  color: #fff;
}

.galenfort-sticky-call::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff3c00, #ff6a00);
  opacity: 0;
  transition: 0.4s;
}

.galenfort-sticky-call:hover::before {
  opacity: 1;
}


/*======================================
   WHATSAPP BUTTON
======================================*/

.galenfort-sticky-whatsapp {
  background: linear-gradient(135deg, #25D366, #0fb44c);
  color: #fff;
  animation: galenfortPulse 2s infinite;
}

.galenfort-sticky-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0fb44c, #25D366);
  opacity: 0;
  transition: 0.4s;
}

.galenfort-sticky-whatsapp:hover::before {
  opacity: 1;
}


/*======================================
   ICON ANIMATION
======================================*/

.galenfort-sticky-contact a i {
  position: relative;
  z-index: 3;
  transition: transform 0.4s ease;
}

.galenfort-sticky-contact a:hover i {
  transform: rotate(12deg) scale(1.15);
}

/*======================================
   PULSE EFFECT
======================================*/

@keyframes galenfortPulse {

  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/*======================================
   FLOAT EFFECT
======================================*/

.galenfort-sticky-call {
  animation: galenfortFloat 3s ease-in-out infinite;
}

@keyframes galenfortFloat {

  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

/*======================================
   MOBILE RESPONSIVE
======================================*/

@media (max-width: 767px) {

  .galenfort-sticky-contact {
    right: 15px;
    bottom: 15px;
    gap: 14px;
  }

  .galenfort-sticky-contact a {
    height: 42px;
    min-width: 42px;
  }

  .galenfort-icon-box {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .galenfort-sticky-call:hover,
  .galenfort-sticky-whatsapp:hover {
    width: 190px;
  }
}

/*======================================
   ENQUIRY FORM SECTION
======================================*/

.galenfort-enquiry-section {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(135deg, #f4f7ff, #edf3ff);
  overflow: hidden;
}

.galenfort-enquiry-wrapper {
  background: #fff;
  border-radius: 30px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  position: relative;
}

.galenfort-enquiry-title span {
  display: inline-block;
  background: rgba(13, 61, 145, 0.1);
  color: #0d3d91;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.galenfort-enquiry-title h2 {
  font-size: 52px;
  font-weight: 800;
  color: #081b44;
  margin-bottom: 15px;
}

.galenfort-enquiry-title p {
  font-size: 17px;
  line-height: 1.8;
  color: #000000;
  max-width: 700px;
  margin: 0 auto 45px;
}

/* FORM GROUP */

.galenfort-form-group {
  position: relative;
}

.galenfort-form-group input,
.galenfort-form-group select,
.galenfort-form-group textarea {
  width: 100%;
  border: 2px solid #e4ebff;
  background: #f9fbff;
  border-radius: 16px;
  padding: 18px 22px;
  font-size: 16px;
  color: #081b44;
  outline: none;
  transition: all 0.4s ease;
}

.galenfort-form-group textarea {
  height: 170px;
  resize: none;
}

.galenfort-form-group input:focus,
.galenfort-form-group select:focus,
.galenfort-form-group textarea:focus {
  border-color: #0d3d91;
  background: #fff;
  box-shadow: 0 10px 30px rgba(13, 61, 145, 0.12);
  transform: translateY(-2px);
}

/* BUTTON */

.galenfort-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  background: linear-gradient(135deg, #0d3d91, #174db7);
  color: #fff;
  padding: 18px 40px;
  border-radius: 60px;
  font-size: 17px;
  font-weight: 700;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.galenfort-submit-btn i {
  transition: transform 0.4s ease;
}

.galenfort-submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #174db7, #0d3d91);
  opacity: 0;
  transition: 0.4s;
}

.galenfort-submit-btn span,
.galenfort-submit-btn i {
  position: relative;
  z-index: 2;
}

.galenfort-submit-btn:hover::before {
  opacity: 1;
}

.galenfort-submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(13, 61, 145, 0.25);
}

.galenfort-submit-btn:hover i {
  transform: translateX(5px) rotate(-10deg);
}

/*==================================
        COURSES SECTION CSS
===================================*/

.gf-course-section {
  position: relative;
  padding: 50px 0;
  background: #f4f7ff;
  overflow: hidden;
}

.gf-course-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(13, 110, 253, 0.08);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.gf-section-title {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeUp 1s ease;
}

.gf-section-title span {
  display: inline-block;
  background: rgba(13, 110, 253, 0.1);
  color: #0b2d87;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
}

.gf-section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 18px;
}

.gf-section-title p {
  max-width: 1200px;
  margin: auto;
  color: #000000;
  line-height: 1.9;
  font-size: 16px;
}

.gf-course-card {
  background: #fff;
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  animation: fadeUp 1.2s ease;
  margin: 35px 0 0;
}

.gf-course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.gf-course-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.gf-course-top h3 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
}

.gf-course-duration {
  background: linear-gradient(135deg, #0b2d87, #003ea8);
  color: #fff;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.4s;
}

.gf-course-card:hover .gf-course-duration {
  letter-spacing: 1px;
}

.gf-course-desc {
  color: #555;
  line-height: 1.9;
  font-size: 17px;
  margin-bottom: 35px;
}

.gf-highlight-title {
  margin-bottom: 15px;
}

.gf-highlight-title h4 {
  font-size: 24px;
  font-weight: 700;
  color: #111;
}

.gf-course-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gf-feature-item {
  background: #f8f9fc;
  padding: 14px 16px;
  border-radius: 15px;
  display: flex;
  gap: 12px;
  align-items: start;
  color: #222;
  font-weight: 500;
  line-height: 1.7;
  transition: all 0.4s ease;
}

.gf-feature-item span {
  color: #0b2d87;
  font-size: 18px;
}

.gf-feature-item:hover {
  background: #0b2d87;
  color: #fff;
  transform: translateX(8px);
}

.gf-feature-item:hover span {
  color: #fff;
}

.gf-course-btn {
  margin-top: 40px;
}

.gf-course-btn a {
  display: inline-block;
  background: linear-gradient(135deg, #0b2d87, #003ea8);
  color: #fff;
  padding: 16px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  text-transform: capitalize;
}

.gf-course-btn a:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.35);
}

/*==================================
    DIFFERENT CARD BACKGROUND COLORS
===================================*/
/*==================================
    COURSE CARD 1
==================================*/
.gf-course-card.course-one {
  background: linear-gradient(135deg, #ffffff, #ffffff);
  border-left: 6px solid #0b2d87;
}

.gf-course-card.course-one:hover {
  box-shadow: 0 20px 50px rgba(13, 110, 253, 0.18);
}


/*==================================
    COURSE CARD 2
==================================*/
.gf-course-card.course-two {
  background: linear-gradient(135deg, #fff7ed, #ffe7cc);
  border-left: 6px solid #ff7b00;
}

.gf-course-card.course-two:hover {
  box-shadow: 0 20px 50px rgba(255, 123, 0, 0.20);
}


/*==================================
    COURSE CARD 3
==================================*/
.gf-course-card.course-three {
  background: linear-gradient(135deg, #ffffff, #eef4ff);
  border-left: 6px solid #0b2d87;
}

.gf-course-card.course-three:hover {
  box-shadow: 0 20px 50px rgba(0, 166, 81, 0.20);
}


/*==================================
    COURSE CARD 4
==================================*/
.gf-course-card.course-four {
  background: linear-gradient(135deg, #fff4f4, #ffdede);
  border-left: 6px solid #e63946;
}

.gf-course-card.course-four:hover {
  box-shadow: 0 20px 50px rgba(230, 57, 70, 0.20);
}


/*==================================
    COURSE CARD 5
==================================*/
.gf-course-card.course-five {
  background: linear-gradient(135deg, #f5f3ff, #e7ddff);
  border-left: 6px solid #6f42c1;
}

.gf-course-card.course-five:hover {
  box-shadow: 0 20px 50px rgba(111, 66, 193, 0.20);
}

.gf-trust-section {
  padding: 50px 20px;
  background: #ffffff;
}

.gf-trust-header {
  text-align: center;
  margin-bottom: 40px;
}

.gf-trust-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0b1c39;
}

.gf-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.gf-trust-item {
  background: #0b1c39;
  /* Dark Blue */
  color: #fff;
  padding: 18px 22px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.gf-trust-item:hover {
  transform: translateY(-5px);
  background: #132b57;
}

/*==================================
        ANIMATION
===================================*/

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-wrapper .single-blog-post .post-featured-thumb img {
  width: 100%;
}

.blog-posts {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}

.blog-posts:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/*==================================
        TABLET RESPONSIVE
===================================*/

@media(max-width:991px) {

  .gf-section-title h2 {
    font-size: 34px;
  }

  .gf-course-card {
    padding: 35px;
  }

  .gf-course-features {
    grid-template-columns: 1fr;
  }

  .gf-course-top h3 {
    font-size: 26px;
  }

}

/*==================================
        MOBILE RESPONSIVE
===================================*/

@media(max-width:767px) {

  .gf-course-section {
    padding: 70px 0;
  }

  .gf-section-title h2 {
    font-size: 28px;
  }

  .gf-section-title p {
    font-size: 15px;
  }

  .gf-course-card {
    padding: 25px;
    border-radius: 18px;
  }

  .gf-course-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .gf-course-top h3 {
    font-size: 22px;
  }

  .gf-course-desc {
    font-size: 15px;
  }

  .gf-feature-item {
    padding: 15px;
    font-size: 14px;
  }

  .gf-course-btn a {
    width: 100%;
    text-align: center;
  }

}

/*==============================================
    NEET Hero Section
==============================================*/

.neet-hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
  text-align: justify;
}

.neet-hero-content .elite-title {
  font-size: 32px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
  text-align: left;
}

.neet-hero-content .elite-title span {
  color: #ff6b00;
}

.neet-subtitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 15px;
}

.neet-description {
  font-size: 16px;
  line-height: 32px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 400;
}

/*==============================================
    Key Highlights
==============================================*/

.neet-highlights h6 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
  padding-left: 18px;
}

.neet-highlights h6::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 6px;
  height: 24px;
  border-radius: 10px;
  background: #ff6b00;
}

.neet-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.neet-feature-list li {
  position: relative;
  padding: 10px 18px 10px 55px;
  background: #f8f9fc;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  transition: .3s;
  text-align: left;
}

.neet-feature-list li::before {
  content: "\f101";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff6b00;
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.neet-feature-list li:hover {
  background: #ff6b00;
  color: #fff;
  transform: translateY(-4px);
}

.neet-feature-list li:hover::before {
  background: #fff;
  color: #ff6b00;
}

/*==============================================
    Quick Links
==============================================*/

.neet-links {
  margin-top: 35px;
}

.neet-links h6 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #1d1d1d;
}

.neet-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.neet-links h6 {
  width: 100%;
}

.neet-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 70px;
  border-radius: 50px;
  background: #f3f5f8;
  color: #222;
  font-size: 13px;
  font-weight: 600;
  transition: .35s;
  border: 1px solid transparent;
  text-decoration: none;
}

.neet-links a:hover {
  background: #ff6b00;
  color: #fff;
  transform: translateY(-3px);
}

/*==============================================
    CTA Button
==============================================*/

.galen-btn-group {
  margin-top: 35px;
}

.galen-btn-group .theme-btn {
  padding: 16px 34px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .3px;
}

/*==============================================
    Responsive
==============================================*/

@media (max-width:991px) {

  .neet-hero-content .elite-title {
    font-size: 42px;
  }

  .neet-subtitle {
    font-size: 20px;
  }

  .neet-feature-list {
    grid-template-columns: 1fr;
  }

}

@media (max-width:767px) {

  .neet-hero-content .elite-title {
    font-size: 34px;
  }

  .neet-subtitle {
    font-size: 18px;
  }

  .neet-description {
    font-size: 16px;
    line-height: 1.8;
  }

  .neet-highlights {
    padding: 20px;
  }

  .neet-links a {
    width: 100%;
    justify-content: center;
  }

  .galen-btn-group .theme-btn {
    width: 100%;
    text-align: center;
  }

}

/* MOBILE */

@media (max-width: 991px) {

  .galenfort-enquiry-wrapper {
    padding: 40px 30px;
  }

  .galenfort-enquiry-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 767.98px) {
  .galen-hero-content {
    padding-bottom: 0;
  }

  .galen-btn-group {
    padding-bottom: 0;
  }
}

@media (max-width: 575px) {

  .galenfort-enquiry-section {
    padding: 70px 0;
  }

  .galenfort-enquiry-wrapper {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .galenfort-enquiry-title h2 {
    font-size: 32px;
  }

  .galenfort-enquiry-title p {
    font-size: 15px;
  }

  .galenfort-submit-btn {
    width: 100%;
    justify-content: center;
  }

}

/*=========================================
    Get Free NEET Counseling
=========================================*/

.neet-counselling-section {
  padding: 60px 0;
  background: #f8fbff;
}

.neet-counselling-content {
  padding-right: 40px;
}

.section-tag {
  display: inline-block;
  padding: 8px 18px;
  background: #ffe8d8;
  color: #ff6b00;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 18px;
}


.neet-counselling-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #5f6368;
  margin-bottom: 20px;
}

.neet-counselling-content strong {
  color: #1f2937;
}

/*=========================================
    Benefits Box
=========================================*/

.neet-benefits {
  margin-top: 35px;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #ececec;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.neet-benefits h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 22px;
  color: #1f2937;
}

.neet-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.neet-benefits ul li {
  position: relative;
  padding: 14px 0 14px 40px;
  font-size: 16px;
  font-weight: 600;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
}

.neet-benefits ul li:last-child {
  border-bottom: none;
}

.neet-benefits ul li::before {
  content: "\f101";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #ff6b00;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  font-family: "Font Awesome 5 Pro";
}

/*=========================================
    Form Box
=========================================*/

.neet-form-box {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  border: 1px solid #ededed;
}

.neet-form-box .neet-form-box button {
  margin-top: 25px;
}

.neet-form-box h3 {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 30px;
  text-align: center;
}

.neet-form-box input,
.neet-form-box select {
  width: 100%;
  height: 58px;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  padding: 0 18px;
  font-size: 15px;
  color: #444;
  margin-bottom: 18px;
  background: #fff;
  transition: .3s;
  outline: none;
}

.neet-form-box input:focus,
.neet-form-box select:focus {
  border-color: #ff6b00;
  box-shadow: 0 0 0 4px rgba(255, 107, 0, .12);
}

.neet-form-box select {
  cursor: pointer;
}

.neet-form-box button {
  width: 100%;
  height: 48px;
  margin-top: 25px;
  border: none;
  border-radius: 10px;
  background: #ff6b00;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
}

.neet-form-box button:hover {
  background: #0d5c63;
}

/*=========================================
    Responsive
=========================================*/

@media (max-width:991px) {

  .neet-counselling-section {
    padding: 80px 0;
  }

  .neet-counselling-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 38px;
  }

}

@media (max-width:767px) {

  .section-title {
    font-size: 30px;
  }

  .neet-counselling-content p {
    font-size: 16px;
  }

  .neet-benefits {
    padding: 22px;
  }

  .neet-form-box {
    padding: 25px;
  }

  .neet-form-box h3 {
    font-size: 24px;
  }

}

/*==========================================
    NEET Online Coaching Section
==========================================*/

.neet-online-section {
  padding: 60px 0;
  background: #ffffff;
}

.neet-student-image img {
  width: 100%;
}

.neet-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0d1b2a;
  margin-bottom: 15px;
  line-height: 1.2;
}

.neet-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #5f6368;
  margin-bottom: 18px;
}

.neet-content strong {
  color: #0d1b2a;
  font-weight: 700;
}

/*==========================================
    List Box
==========================================*/

.neet-list-box {
  margin-top: 35px;
  padding: 0 30px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.neet-list-box h4 {
  font-size: 24px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 20px;
}

.neet-list-box ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.neet-list-box ul li {
  position: relative;
  padding: 14px 15px 14px 48px;
  background: #f8f9fc;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  transition: .3s ease;
}

.neet-list-box ul li::before {
  content: "\f101";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ff6b00;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;

}

.neet-list-box ul li:hover {
  background: #ff6b00;
  color: #fff;
  transform: translateY(-3px);
}

.neet-list-box ul li:hover::before {
  background: #fff;
  color: #ff6b00;
}

/*==========================================
    Counseling Form
==========================================*/

.neet-form {
  background: #f8fbff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  border: 1px solid #ececec;
}

.neet-form h3 {
  font-weight: 700;
  color: #0d1b2a;
  text-align: center;
  margin-bottom: 30px;
}

.neet-form input,
.neet-form select {
  width: 100%;
  height: 62px;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  padding: 0 18px;
  margin-bottom: 18px;
  font-size: 16px;
  color: #444;
  background: #fff;
  transition: .3s;
  outline: none;
}

.neet-form input:focus,
.neet-form select:focus {
  border-color: #ff6b00;
  box-shadow: 0 0 0 4px rgba(255, 107, 0, .12);
}

.neet-form button {
  width: 100%;
  height: 62px;
  border: none;
  border-radius: 10px;
  background: #ff6b00;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
  margin-top: 25px;
}

.neet-form button:hover {
  background: #0d5c63;
}

/*==========================================
    Spacing
==========================================*/

.mt-80 {
  margin-top: 80px;
}

/*==========================================
    Responsive
==========================================*/

@media (max-width:991px) {

  .neet-online-section {
    padding: 80px 0;
  }

  .neet-content {
    margin-bottom: 40px;
  }

  .neet-content h2 {
    font-size: 34px;
  }

  .neet-form {
    margin-top: 30px;
  }

  .mt-80 {
    margin-top: 60px;
  }

}

@media (max-width:767px) {

  .neet-content h2 {
    font-size: 28px;
  }

  .neet-content p {
    font-size: 16px;
    line-height: 1.8;
  }

  .neet-list-box {
    padding: 20px;
  }

  .neet-list-box ul {
    grid-template-columns: 1fr;
  }

  .neet-form {
    padding: 25px;
  }

  .neet-form h3 {
    font-size: 24px;
  }

}

.neet-benefit-image img {
  width: 100%;
}

/*==================================================
    NEET Course Categories
==================================================*/

.neet-course-category {
  padding: 60px 0;
  background: #ffffff;
}

.neet-course-category .section-title h2 {
  font-size: 26px;
  font-weight: 800;
  color: #1b1b1b;
  margin-bottom: 0;
}

/*==================================================
    Course Card
==================================================*/

.course-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .15);

  background: linear-gradient(135deg, #055774, #1242c0);
  background-size: 300% 300%;

  box-shadow: 0 18px 45px rgba(0, 0, 0, .18);

  transition: all .5s ease;
  z-index: 1;
}

/* Left Border */

.course-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #ffd54f;
  transition: .4s;
}

/* Glossy Animation */

.course-card::after {
  content: "";
  position: absolute;
  top: -150%;
  left: -120%;
  width: 80%;
  height: 300%;
  background: rgba(255, 255, 255, .15);
  transform: rotate(25deg);
  transition: .8s;
}

/* Hover */

.course-card:hover {
  transform: translateY(-12px);
  background-position: right center;
  box-shadow: 0 30px 70px rgba(0, 102, 255, .35);
}

.course-card:hover::before {
  width: 100%;
  opacity: .08;
}

.course-card:hover::after {
  left: 150%;
}

/*==================================================
    Number
==================================================*/

.course-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  color: #0066ff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  font-weight: 800;

  margin-bottom: 15px;

  transition: .5s;
}

.course-card:hover .course-number {
  transform: rotate(360deg) scale(1.08);
}

/*==================================================
    Heading
==================================================*/

.course-card h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  transition: .3s;
}

/*==================================================
    Paragraph
==================================================*/

.course-card p {
  color: rgba(255, 255, 255, .92);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 15px;
}

/*==================================================
    Features Title
==================================================*/

.course-card h5 {
  color: #ffd54f;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

/*==================================================
    Feature List
==================================================*/

.course-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.course-card ul li {
  position: relative;
  padding: 14px 0 14px 42px;

  color: #fff;
  font-size: 16px;
  font-weight: 600;

  border-bottom: 1px solid rgba(255, 255, 255, .15);

  transition: .35s;
}

.course-card ul li:last-child {
  border-bottom: none;
}

.course-card ul li::before {

  content: "✓";

  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 24px;
  height: 24px;

  border-radius: 50%;

  background: #ffd54f;
  color: #1e375c;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  font-weight: 700;

  transition: .3s;
}

.course-card:hover ul li {
  padding-left: 48px;
}

.course-card:hover ul li::before {
  transform: translateY(-50%) scale(1.15);
  background: #fff;
  color: #0066ff;
}

/*==================================================
    Floating Glow
==================================================*/

.course-card .course-number {
  box-shadow: 0 0 25px rgba(255, 255, 255, .35);
}

.course-card:hover .course-number {
  box-shadow: 0 0 40px rgba(255, 255, 255, .65);
}

/*==================================================
    Responsive
==================================================*/

@media(max-width:1199px) {

  .course-card {
    padding: 35px;
  }

  .course-card h3 {
    font-size: 26px;
  }

}

@media(max-width:991px) {

  .neet-course-category {
    padding: 80px 0;
  }

  .course-card {
    padding: 30px;
  }

  .course-card h3 {
    font-size: 24px;
  }

  .course-card p {
    font-size: 15px;
  }

  .course-number {
    width: 65px;
    height: 65px;
    font-size: 24px;
  }

}

@media(max-width:767px) {

  .neet-course-category {
    padding: 70px 0;
  }

  .neet-course-category .section-title h2 {
    font-size: 34px;
  }

  .course-card {
    padding: 25px;
  }

  .course-card h3 {
    font-size: 22px;
  }

  .course-card h5 {
    font-size: 20px;
  }

  .course-card ul li {
    font-size: 15px;
    padding: 12px 0 12px 40px;
  }

  .course-number {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

}

/*==========================================
    Why Choose NEET
==========================================*/

.neet-why-choose {
  padding: 60px 0;
  background: #f6f9ff;
}

.neet-why-choose .section-title {
  max-width: 900px;
  margin: auto auto 40px auto;
}

.neet-why-choose .sub-title {
  display: inline-block;
  padding: 8px 18px;
  background: #eaf2ff;
  color: #0066ff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}

.neet-why-choose .section-title h2 {
  font-weight: 800;
  color: #1e375c;
  margin-bottom: 20px;
}

.neet-why-choose .section-title p {
  font-size: 17px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 10px;
}

/* Cards */

.why-card {
  position: relative;
  height: 100%;
  padding: 35px 30px;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: .4s;
  border: 1px solid #edf1f8;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0066ff, #1e88e5, #00b0ff);
}

.why-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #055774, #1242c0);
  box-shadow: 0 25px 50px rgba(0, 102, 255, .25);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: #eef5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s;
}

.why-icon i {
  font-size: 34px;
  color: #0066ff;
}

.why-card:hover .why-icon {
  background: #fff;
  transform: rotateY(360deg);
}

.why-card:hover .why-icon i {
  color: #0066ff;
}

.why-card h4 {
  font-size: 23px;
  font-weight: 700;
  color: #1e375c;
  margin-bottom: 15px;
  transition: .3s;
}

.why-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  transition: .3s;
}

.why-card:hover h4,
.why-card:hover p {
  color: #fff;
}

/* Responsive */

@media(max-width:991px) {

  .neet-why-choose {
    padding: 80px 0;
  }

  .neet-why-choose .section-title h2 {
    font-size: 36px;
  }

}

@media(max-width:767px) {

  .neet-why-choose {
    padding: 70px 0;
  }

  .neet-why-choose .section-title h2 {
    font-size: 30px;
  }

  .neet-why-choose .section-title p {
    font-size: 16px;
  }

  .why-card {
    padding: 30px 25px;
  }

  .why-icon {
    width: 70px;
    height: 70px;
  }

  .why-icon i {
    font-size: 28px;
  }

  .why-card h4 {
    font-size: 20px;
  }

}

/*==============================
    FREE COUNSELING
==============================*/

.career-guidance-area {
  background: #f5f8fc;
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

.career-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  align-items: center;
  margin-bottom: 80px;
}

.career-content-box {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
  width: 900px;
  max-width: 100%;
}

.career-subtitle {
  display: inline-block;
  background: #0d6efd;
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.career-content-box h2 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.career-content-box p {
  font-size: 16px;
  color: #666;
  line-height: 30px;
  margin-bottom: 15px;
}

.career-feature-box {
  background: #f8fbff;
  border-radius: 15px;
  padding: 20px;
  margin-top: 25px;
  border: 1px solid #e6eef8;
}

.career-feature-box h4 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
}

.career-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.career-feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  color: #444;
  font-weight: 500;
}

.career-feature-list li:last-child {
  margin-bottom: 0;
}

.career-feature-list li:before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #0d6efd;
  font-weight: 700;
}

/*==============================
    STUDENT IMAGE
==============================*/

.career-image-box {
  text-align: center;
}

.career-image-box img {
  width: 100%;
  max-width: 260px;
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {

  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }

}

/*==============================
    FORM
==============================*/

.career-form-card {
  background: linear-gradient(135deg, #0d6efd, #003d99);
  border-radius: 20px;
  padding: 40px;
  color: #fff;
  box-shadow: 0 20px 45px rgba(13, 110, 253, .25);
}

.career-form-card h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 15px;
}

.career-form-card input,
.career-form-card select {
  width: 100%;
  height: 55px;
  border: none;
  border-radius: 10px;
  padding: 0 18px;
  margin-bottom: 16px;
  outline: none;
  background: #fff;
}

.career-form-card button {
  width: 100%;
  height: 62px;
  border: none;
  border-radius: 10px;
  background: #ffb400;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: .4s;
  margin-top: 35px;
}

.career-form-card button:hover {
  background: #fff;
  color: #0d6efd;
}

/*==============================
    ONLINE COACHING
==============================*/

.online-coaching-box {
  background: #fff;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
}

.online-coaching-box h2 {
  font-size: 40px;
  font-weight: 700;
  margin: 20px 0;
}

.online-coaching-box p {
  color: #666;
  line-height: 30px;
  margin-bottom: 20px;
}

.benefit-box {
  background: #f8fbff;
  border-radius: 15px;
  padding: 25px;
  border: 1px solid #e6eef8;
  margin-top: 35px;
}

.benefit-box h4 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 700;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.benefit-list li {
  background: #fff;
  border-left: 4px solid #0d6efd;
  padding: 15px 18px;
  border-radius: 10px;
  font-weight: 600;
  color: #444;
  transition: .35s;
}

.benefit-list li:hover {
  background: #0d6efd;
  color: #fff;
  transform: translateX(8px);
}

.online-image-box {
  text-align: center;
}

.online-image-box img {
  width: 100%;
  max-width: 400px;
}

/*==============================
    RESPONSIVE
==============================*/

@media (max-width:991px) {

  .career-wrapper {
    grid-template-columns: 1fr;
  }

  .career-image-box {
    order: 2;
  }

  .career-form-card {
    order: 3;
  }

  .career-content-box h2,
  .online-coaching-box h2 {
    font-size: 32px;
  }

  .online-coaching-box {
    padding: 35px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

}

@media (max-width:767px) {

  .career-content-box {
    padding: 30px;
    width: 100%;
  }

  .career-form-card {
    padding: 25px;
  }

  .online-coaching-box {
    padding: 25px;
  }

  .career-content-box h2,
  .online-coaching-box h2 {
    font-size: 28px;
  }

}

.nice-select span.current {
  color: #252525;
  font-size: 15px;
}

.nice-select .option {
  font-size: 15px;
  color: #252525;
}

.pf-footer {
  background: linear-gradient(135deg, #07152f, #0d2b66);
  color: #dce8ff;
  position: relative;
  overflow: hidden
}

.pf-wave {
  height: 90px;
  background: radial-gradient(circle at 20% 0, #1d5eff55 0, transparent 45%), radial-gradient(circle at 80% 0, #ffc10733 0, transparent 35%)
}

.pf-container {
  max-width: 1320px;
  margin: auto;
  padding: 0 20px 35px
}

.pf-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 35px;
  padding: 60px 0 20px
}

.pf-about h3,
.pf-links h4,
.pf-contact h4 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 22px
}

.pf-about p {
  line-height: 1.9
}

.pf-social {
  display: flex;
  gap: 12px;
  margin-top: 22px
}

.pf-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #163b84;
  color: #fff;
  text-decoration: none;
  transition: .3s
}

.pf-social a:hover {
  background: #ffc107;
  color: #081a3d;
  transform: translateY(-4px)
}

.pf-links ul {
  list-style: none
}

.pf-links li {
  margin: 12px 0
}

.pf-links a,
.pf-contact a,
.pf-bottom a {
  color: #dce8ff;
  text-decoration: none;
  transition: .3s
}

.pf-links a:hover,
.pf-contact a:hover,
.pf-bottom a:hover {
  color: #ffc107;
  padding-left: 4px
}

.pf-contact p {
  margin: 12px 0;
  line-height: 1.8
}

.pf-contact i {
  color: #ffc107;
  width: 22px
}

.pf-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  padding: 25px 0
}

.pf-trust span {
  padding: 10px 18px;
  background: #12326f;
  border-radius: 40px;
  transition: .3s
}

.pf-trust span:hover {
  background: #ffc107;
  color: #081a3d
}

.pf-disclaimer {
  margin: 25px 0;
  padding: 18px;
  background: #0d2552;
  border-left: 4px solid #ffc107;
  line-height: 1.8;
  border-radius: 8px
}

.pf-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}

.pf-bottom div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap
}

@media(max-width:1100px) {
  .pf-top {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:700px) {
  .pf-top {
    grid-template-columns: 1fr
  }

  .pf-bottom {
    flex-direction: column;
    text-align: center
  }

  .pf-bottom div {
    justify-content: center
  }
}

.pf-wave {
  height: 90px;
  background:
    radial-gradient(circle at 20% 0, #1d5eff55 0, transparent 45%),
    radial-gradient(circle at 80% 0, #ffc10733 0, transparent 35%);
}

.neet-course-section {
  padding: 90px 0;
}

.gray-bg {
  background: #ffffff;
}

.neet-course-card {

  max-width: 1250px;
  margin: auto;

  display: flex;
  align-items: center;
  gap: 30px;

  background: #fff;
  border-radius: 25px;
  overflow: hidden;

  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

  transition: .4s;
}

.neet-course-card:hover {

  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .15);

}

.reverse {

  flex-direction: row-reverse;

}

.neet-course-image {

  flex: 1;

}

.neet-course-image img {

  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;

}

.neet-course-content {

  flex: 1;
  padding: 20px;

}

.course-tag {

  display: inline-block;
  background: #ec1c24;
  color: #fff;

  padding: 8px 18px;

  border-radius: 40px;

  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;

}

.neet-course-content h2 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;

}

.neet-course-content p {

  color: #666;
  line-height: 32px;
  font-size: 17px;

}

.neet-course-content h4 {

  margin-top: 20px;
  margin-bottom: 15px;

  font-size: 24px;
  color: #003b7a;

}

.course-feature-list {

  padding: 0;
  margin: 0;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

}

.course-feature-list li {

  list-style: none;

  font-size: 16px;
  font-weight: 600;
  color: #252525;
  ;

}

.course-feature-list i {

  color: #00a651;
  margin-right: 10px;

}

.course-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 35px;
  background: #003b7a;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: .4s;
  font-size: 14px;
}

.course-btn:hover {

  background: #ec1c24;

  color: #fff;

}

@media(max-width:991px) {

  .neet-course-card {

    flex-direction: column;

  }

  .reverse {

    flex-direction: column;

  }

  .neet-course-image img {

    height: auto;

  }

  .neet-course-content {

    padding: 35px;

  }

  .neet-course-content h2 {

    font-size: 30px;

  }

  .course-feature-list {

    grid-template-columns: 1fr;

  }

}

/*=====================================================
        Premium FAQ Section
=====================================================*/

.neet-faq-section {
  padding: 60px 0;
  background: #f7f9fc;
  position: relative;
  overflow: hidden;
}

.neet-faq-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(0, 102, 255, .05);
  border-radius: 50%;
  top: -150px;
  left: -150px;
}

.neet-faq-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 107, 0, .06);
  border-radius: 50%;
  bottom: -120px;
  right: -120px;
}

/*=====================================================
        Section Title
=====================================================*/

.neet-faq-section .section-title {
  max-width: 850px;
  margin: auto;
}

.neet-faq-section .sub-title {
  display: inline-block;
  padding: 8px 20px;
  background: #e9f2ff;
  color: #0066ff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.neet-faq-section .section-title h2 {
  font-weight: 800;
  color: #1d3557;
  margin-bottom: 15px;
}

.neet-faq-section .section-title p {
  font-size: 17px;
  line-height: 1.8;
  color: #666;
}

/*=====================================================
        Accordion
=====================================================*/

.faq-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 60px auto 0;
}

.accordion-item {
  border: none;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
  transition: .4s;
}

.accordion-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 102, 255, .15);
}

/*=====================================================
        Button
=====================================================*/

.accordion-button {
  position: relative;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border: none;
  box-shadow: none;
  background: linear-gradient(45deg, #0066ff, #1e375c, #2196f3);
  background-size: 250% 250%;
  transition: .5s;
}

.accordion-button:hover {
  background: linear-gradient(45deg, #ff6b00, #ff9800, #ff5722);
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background: linear-gradient(45deg, #ff6b00, #ff9800, #ff5722);
  box-shadow: none;
  font-size: 15px;
  padding: 15px;
}

/*=====================================================
        Remove Bootstrap Icon
=====================================================*/

.accordion-button::after {
  display: none;
}

/*=====================================================
        Custom Plus Minus
=====================================================*/

.accordion-button::before {

  content: "+";

  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);

  width: 30px;
  height: 30px;

  border-radius: 50%;
  background: #fff;

  color: #0066ff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  font-weight: 700;

  transition: .4s;

}

.accordion-button:not(.collapsed)::before {

  content: "−";

  background: #fff;

  color: #ff6b00;

  transform: translateY(-50%) rotate(180deg);

}

/*=====================================================
        Body
=====================================================*/

.accordion-body {

  padding: 20px;

  background: #ffffff;

  font-size: 15px;

  line-height: 1.9;

  color: #252525;

  border-top: 1px solid #f1f1f1;

}

/*=====================================================
        Animation
=====================================================*/

.accordion-item {

  animation: faqFade .8s ease;

}

@keyframes faqFade {

  from {

    opacity: 0;

    transform: translateY(30px);

  }

  to {

    opacity: 1;

    transform: translateY(0);

  }

}

/*=====================================================
        Responsive
=====================================================*/

@media(max-width:991px) {

  .neet-faq-section {

    padding: 80px 0;

  }

  .neet-faq-section .section-title h2 {

    font-size: 38px;

  }

  .accordion-button {

    font-size: 18px;

    padding: 22px 65px 22px 22px;

  }

  .accordion-body {

    padding: 25px;

    font-size: 16px;

  }

}

@media(max-width:767px) {

  .neet-faq-section {

    padding: 70px 0;

  }

  .neet-faq-section .section-title h2 {

    font-size: 30px;

  }

  .neet-faq-section .section-title p {

    font-size: 16px;

  }

  .accordion-button {

    font-size: 16px;

    line-height: 1.6;

    padding: 20px 60px 20px 18px;

  }

  .accordion-button::before {

    width: 34px;

    height: 34px;

    font-size: 22px;

    right: 15px;

  }

  .accordion-body {

    padding: 20px;

    font-size: 15px;

    line-height: 1.8;

  }

}

/*====================================================
            Premium Testimonial Section
====================================================*/

.neet-testimonial-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.neet-testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 70, 180, .92),
      rgba(20, 40, 90, .90),
      rgba(33, 150, 243, .88));
  z-index: -1;
}

/* Floating Circles */

.neet-testimonial-section::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  right: -180px;
  top: -180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
}

/*====================================================
                Section Title
====================================================*/

.neet-testimonial-title {
  margin-bottom: 70px;
}

.neet-testimonial-title h6 {

  display: inline-block;

  border-radius: 50px;

  color: #ffd54f !important;

  font-size: 15px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1px;

  margin-bottom: 18px;

}

.neet-testimonial-title h2 {

  color: #ffffff;

  font-weight: 800;

  line-height: 1.25;

}

/*====================================================
                Testimonial Card
====================================================*/

.neet-testimonial-card {

  position: relative;

  overflow: hidden;

  height: 100%;

  padding: 40px;

  border-radius: 22px;

  background: rgba(255, 255, 255, .08);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, .15);

  transition: .45s ease;

  box-shadow: 0 15px 40px rgba(0, 0, 0, .18);

}

/* Hover */

.neet-testimonial-card:hover {

  transform: translateY(-12px);

  background: linear-gradient(45deg,
      #ff6b00,
      #ff9800,
      #ff5722);

  box-shadow: 0 25px 60px rgba(255, 107, 0, .30);

}

/* Shine Animation */

.neet-testimonial-card::before {

  content: "";

  position: absolute;

  top: -120%;

  left: -120%;

  width: 220%;

  height: 220%;

  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, .18),
      transparent);

  transform: rotate(25deg);

  transition: .8s;

}

.neet-testimonial-card:hover::before {

  left: 100%;

}

/*====================================================
                Student Info
====================================================*/

.neet-client-info {

  margin-bottom: 15px;

}

.neet-client-info h3 {

  color: #ffffff;

  font-size: 26px;

  font-weight: 700;

  margin-bottom: 8px;

}

.neet-client-info span {

  color: #ffd54f;

  font-size: 15px;

  font-weight: 600;

  letter-spacing: .5px;

  text-transform: uppercase;

}

/*====================================================
                Review Text
====================================================*/

.neet-review-text {

  color: rgba(255, 255, 255, .92);

  font-size: 17px;

  line-height: 1.9;

  margin-bottom: 35px;

}

/*====================================================
                Quote Icon
====================================================*/

.neet-quote-icon {

  width: 50px;

  height: 50px;

  border-radius: 50%;

  background: #ffffff;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: .45s;

}

.neet-quote-icon i {

  color: #0066ff;

  font-size: 28px;

  transition: .45s;

}

.neet-testimonial-card:hover .neet-quote-icon {

  transform: rotate(360deg);

}

.neet-testimonial-card:hover .neet-quote-icon i {

  color: #ff6b00;

}



/*=========================================
ROOT VARIABLES
=========================================*/

:root {

  --jee-primary: #0057ff;
  --jee-secondary: #00b4ff;
  --jee-dark: #071d49;
  --jee-light: #f7f9fc;
  --jee-text: #555;
  --jee-white: #fff;
  --jee-border: #e9eef7;

  --jee-radius: 16px;

  --jee-shadow:
    0 15px 45px rgba(0, 0, 0, .08);

}

/*=========================================
CONTAINER
=========================================*/

.jee-container {

  width: 100%;
  max-width: 1320px;
  margin: auto;
  padding: 0 45px;

}

/*=========================================
COMMON TITLE
=========================================*/

.jee-section-title {

  text-align: center;
  margin-bottom: 40px;

}

.jee-section-title span {

  color: var(--jee-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;

}

.jee-section-title h2 {

  font-size: 42px;
  color: var(--jee-dark);
  margin: 15px 0;

}

.jee-section-title p {

  max-width: 780px;
  margin: auto;
  color: var(--jee-text);

}

/*=========================================
BUTTONS
=========================================*/

.jee-primary-btn {

  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  background: var(--jee-primary);
  color: #fff;
  font-weight: 600;
  transition: .4s;

}

.jee-primary-btn:hover {

  background: #003fd4;
  transform: translateY(-4px);

}

.jee-secondary-btn {

  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  border: 2px solid #fff;
  color: #fff;
  margin-left: 15px;

}

.jee-secondary-btn:hover {

  background: #fff;
  color: var(--jee-primary);

}

/*=========================================
HERO SECTION
=========================================*/

.jee-hero-section {

  padding: 40px 0;
  background: linear-gradient(135deg, #055774, #1242c0);

}

.jee-hero-grid {

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  align-items: center;

}

.jee-badge {

  display: inline-block;
  background: #fff;
  color: var(--jee-primary);
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;

}

.jee-hero-content h1 {

  font-size: 44px;
  color: #fff;
  line-height: 48px;
  margin-bottom: 15px;

}

.jee-hero-content p {

  color: #fff;
  font-size: 18px;
  margin-bottom: 35px;

}

.jee-hero-buttons {

  margin-bottom: 45px;

}

.jee-hero-image img {

  /* border-radius: 25px;
  box-shadow: var(--jee-shadow); */

}

.jee-hero-content {
  width: 800px;
  max-width: 100%;
}

.jee-hero-stats {

  display: flex;
  gap: 20px;

}

.jee-stat-box {

  flex: 1;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(15px);
  border-radius: 18px;
  text-align: center;
  padding: 25px;

}

.jee-stat-box h3 {

  font-size: 34px;
  color: #fff;

}

.jee-stat-box span {

  color: #fff;
  font-size: 15px;

}

/*=========================================
ABOUT
=========================================*/

.jee-about-section {

  background: #fff;
  padding: 60px 0;

}

.jee-about-grid {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  

}

.jee-about-image img {

  border-radius: 20px;
  box-shadow: var(--jee-shadow);
  width: 100%;

}

.jee-about-content p {

  margin-bottom: 20px;
  color: #555;

}

/*=========================================
ANIMATION
=========================================*/

.jee-course-card,
.jee-highlight-card,
.jee-benefit-card,
.jee-link-card {

  transition: .4s;

}

.jee-course-card:hover,
.jee-highlight-card:hover,
.jee-benefit-card:hover,
.jee-link-card:hover {

  transform: translateY(-10px);

}

/*==================================================
KEY HIGHLIGHTS
==================================================*/

.jee-highlight-section {
  padding: 60px 0;
  background: #f8fbff;
}

.jee-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.jee-highlight-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  transition: .4s;
  border: 1px solid #eef2f8;
}

.jee-highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.jee-highlight-card i {
  width: 65px;
  height: 65px;
  line-height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0057ff, #00b4ff);
  color: #fff;
  font-size: 25px;
  margin-bottom: 20px;
}

.jee-highlight-card h4 {
  font-size: 18px;
  color: #071d49;
  line-height: 1.5;
}


/*==================================================
QUICK LINKS
==================================================*/

.jee-quick-links {
  padding: 60px 0;
  background: #fff;
}

.jee-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.jee-link-card {
  background: #fff;
  border-radius: 18px;
  text-align: center;
  padding: 40px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  border: 1px solid #edf1f7;
}

.jee-link-card:hover {
  background: #0057ff;
}

.jee-link-card i {
  font-size: 42px;
  color: #0057ff;
  margin-bottom: 18px;
  transition: .4s;
}

.jee-link-card h4 {
  font-size: 21px;
  color: #071d49;
  transition: .4s;
}

.jee-link-card:hover i,
.jee-link-card:hover h4 {
  color: #fff;
}


/*==================================================
CTA SECTION
==================================================*/

.jee-cta-section {
  padding: 60px 0;
  background-color: #0c388d;
  background-image: url(../img/banner.png);
  background-size: cover;
  background-position: center;
}

.jee-cta-content {
  text-align: center;
  max-width: 850px;
  margin: auto;
}

.jee-cta-content h2 {
  color: #fff;
  font-size: 46px;
  margin-bottom: 15px;
}

.jee-cta-content p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 35px;
}


/*==================================================
COUNSELLING SECTION
==================================================*/

.jee-counselling-section {
  background: #f7f9fc;
}

.jee-counselling-wrapper {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: center;
}

.jee-counselling-content h3 {
  font-size: 34px;
  color: #071d49;
  margin-bottom: 15px;
}

.jee-counselling-content p {
  margin-bottom: 20px;
  color: #555;
}

.jee-benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 35px;
}

.jee-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: #071d49;
}

.jee-benefit-item i {
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border-radius: 50%;
  background: #0057ff;
  color: #fff;
  font-size: 14px;
}


/*==================================================
LEAD FORM
==================================================*/

.jee-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.jee-form-box h3 {
  text-align: center;
  color: #071d49;
  font-size: 30px;
  margin-bottom: 30px;
}

.jee-form-group {
  margin-bottom: 20px;
}

.jee-form-group input,
.jee-form-group select {
  width: 100%;
  height: 58px;
  border: 1px solid #dde5f2;
  border-radius: 10px;
  padding: 0 18px;
  font-size: 16px;
  outline: none;
  transition: .3s;
  background: #fff;
}

.jee-form-group textarea {
  width: 100%;
  height: 140px;
  resize: none;
  border: 1px solid #dde5f2;
  border-radius: 10px;
  padding: 15px 18px;
  outline: none;
}

.jee-form-group input:focus,
.jee-form-group select:focus,
.jee-form-group textarea:focus {
  border-color: #0057ff;
}

.jee-btn-full {
  width: 100%;
  border: none;
  cursor: pointer;
}


/*==================================================
ABOUT PROGRAM
==================================================*/

.jee-about-program {
  background: #fff;
}

.jee-about-program-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.jee-about-program-image img {
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  width: 100%;
}

.jee-about-program-content p {
  margin-bottom: 20px;
}


/*==================================================
KEY BENEFITS
==================================================*/

.jee-benefits-section {
  background: #f8fbff;
}

.jee-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.jee-benefit-card {
  background: #fff;
  padding: 40px 30px;
  text-align: center;
  border-radius: 18px;
  border: 1px solid #edf2fa;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.jee-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.jee-benefit-card i {
  width: 75px;
  height: 75px;
  line-height: 75px;
  border-radius: 50%;
  background: #0057ff;
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
}

.jee-benefit-card h4 {
  font-size: 22px;
  color: #071d49;
}

/*==================================================
JEE COURSE SECTION
==================================================*/

.jee-course-section {
  padding: 60px 0;
  background: #ffffff;
  position: relative;
}

.jee-course-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 220px;
  background: #f8fbff;
  z-index: 0;
}

.jee-course-section .jee-container {
  position: relative;
  z-index: 1;
}


/*==================================================
COURSE GRID
==================================================*/

.jee-course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}


/*==================================================
COURSE CARD
==================================================*/

.jee-course-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  transition: .4s;
  border: 1px solid #edf2fa;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.jee-course-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, .15);
}


/*==================================================
COURSE IMAGE
==================================================*/

.jee-course-image {
  position: relative;
  overflow: hidden;
}

.jee-course-image img {
  width: 100%;
  object-fit: cover;
  transition: .6s;
}

.jee-course-card:hover .jee-course-image img {
  transform: scale(1.08);
}

.jee-course-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, .35),
      rgba(0, 0, 0, 0));
}


/*==================================================
COURSE CONTENT
==================================================*/

.jee-course-content {
  padding: 35px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.jee-course-content h3 {
  font-size: 28px;
  color: #071d49;
  margin-bottom: 18px;
  line-height: 1.3;
}

.jee-course-content p {
  color: #555;
  margin-bottom: 15px;
}

.jee-course-content h4 {
  font-size: 20px;
  color: #071d49;
  margin-bottom: 18px;
}


/*==================================================
COURSE TAG
==================================================*/

.jee-course-tag {
  display: inline-block;
  padding: 8px 18px;
  background: #0057ff;
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}


/*==================================================
FEATURE LIST
==================================================*/

.jee-feature-list {
  margin-bottom: 30px;
}

.jee-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: #444;
  font-size: 16px;
  border-bottom: 1px solid #eef2f8;
}

.jee-feature-list li:last-child {
  border-bottom: none;
}

.jee-feature-list i {
  color: #0057ff;
  font-size: 18px;
}


/*==================================================
COURSE BUTTON
==================================================*/

.jee-course-content .jee-primary-btn {
  margin-top: auto;
  text-align: center;
}


/*==================================================
COURSE HOVER EFFECT
==================================================*/

.jee-course-card:hover .jee-course-tag {
  background: #00b4ff;
}

.jee-course-card:hover h3 {
  color: #0057ff;
}


/*==================================================
COURSE ICON BOX (OPTIONAL)
==================================================*/

.jee-course-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0057ff, #00b4ff);
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
}


/*==================================================
COURSE INFO STRIP (OPTIONAL)
==================================================*/

.jee-course-info {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.jee-course-info span {
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

.jee-course-info i {
  color: #0057ff;
}


/*==================================================
COURSE FOOTER
==================================================*/

.jee-course-footer {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #edf2fa;
  padding-top: 20px;
}

.jee-course-footer strong {
  color: #071d49;
  font-size: 20px;
}

.jee-course-footer a {
  color: #0057ff;
  font-weight: 600;
}

.jee-course-footer a:hover {
  color: #071d49;
}


/*==================================================
COURSE ANIMATION
==================================================*/

@keyframes jeeFloatCard {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }

}

.jee-course-card:nth-child(2) {
  animation: jeeFloatCard 6s ease-in-out infinite;
}

.jee-course-card:nth-child(4) {
  animation: jeeFloatCard 6s ease-in-out infinite;
  animation-delay: 1.5s;
}

/*=========================================
WHY CHOOSE US
=========================================*/

.jee-why-section {
  padding: 60px 0;
  background: #f8fbff;
}

.jee-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.jee-why-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  transition: .4s;
  border: 1px solid #edf2fa;
}

.jee-why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.jee-why-card i {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0057ff, #00b4ff);
  color: #fff;
  font-size: 32px;
  margin-bottom: 15px;
}

.jee-why-card h4 {
  color: #071d49;
  margin-bottom: 15px;
}



/*=========================================
LEARNING METHODOLOGY
=========================================*/

.jee-methodology-section {
  padding: 60px 0;
  background: #fff;
}

.jee-methodology-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.jee-methodology-image img {
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
  width: 100%;
}

.jee-small-title {
  display: inline-block;
  color: #0057ff;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.jee-methodology-content h2 {
  font-size: 42px;
  color: #071d49;
  margin-bottom: 15px;
}

.jee-methodology-content p {
  color: #555;
  margin-bottom: 30px;
}

.jee-process-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.jee-process-number {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 50%;
  background: #0057ff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
}

.jee-process-item h4 {
  color: #071d49;
  font-size: 22px;
  margin-bottom: 8px;
}

.jee-process-item p {
  margin: 0;
}


/*=========================================
FINAL CTA
=========================================*/

.jee-final-cta {
  padding: 60px 0;
      background: linear-gradient(135deg, #055774, #1242c0);
}

.jee-final-cta-box {
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.jee-final-cta-box h2 {
  color: #fff;
  font-size: 46px;
  margin-bottom: 20px;
}

.jee-final-cta-box p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 35px;
}

.jee-final-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}


/*=========================================
FOOTER STRIP
=========================================*/

.jee-footer-strip {
  padding: 70px 0;
  background: #071d49;
}

.jee-footer-strip-content {
  text-align: center;
}

.jee-footer-strip-content h3 {
  color: #fff;
  font-size: 34px;
  margin-bottom: 15px;
}

.jee-footer-strip-content p {
  color: #d6e2ff;
  margin-bottom: 30px;
  font-size: 17px;
}


/*=========================================
UTILITY CLASSES
=========================================*/

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

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}


/*=========================================
SCROLLBAR
=========================================*/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #edf2fa;
}

::-webkit-scrollbar-thumb {
  background: #0057ff;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: #003fc7;
}


/*=========================================
RESPONSIVE
=========================================*/

@media (max-width:1199px) {

  .jee-section-title h2 {
    font-size: 36px;
  }

  .jee-hero-content h1 {
    font-size: 36px;
  }

  .jee-highlight-grid,
  .jee-links-grid,
  .jee-benefits-grid,
  .jee-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jee-course-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width:991px) {

  .section-padding {
    padding: 50px 0;
  }

  .jee-hero-grid,
  .jee-about-grid,
  .jee-counselling-wrapper,
  .jee-about-program-wrapper,
  .jee-methodology-wrapper {
    grid-template-columns: 1fr;
  }

  .jee-hero-content {
    text-align: center;
  }

  .jee-hero-buttons {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }

  .jee-hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .jee-benefit-list {
    grid-template-columns: 1fr;
  }

  .jee-final-buttons {
    flex-direction: column;
    align-items: center;
  }

}

@media (max-width:767px) {

  .section-padding {
    padding: 40px 0;
  }

  .jee-section-title h2 {
    font-size: 30px;
  }

  .jee-hero-content h1 {
    font-size: 34px;
  }

  .jee-hero-content p {
    font-size: 16px;
  }

  .jee-highlight-grid,
  .jee-links-grid,
  .jee-benefits-grid,
  .jee-why-grid {
    grid-template-columns: 1fr;
  }

  .jee-stat-box {
    width: 100%;
  }

  .jee-primary-btn,
  .jee-secondary-btn {
    width: 100%;
    text-align: center;
    margin: 8px 0;
  }

  .jee-course-content {
    padding: 25px;
  }

  .jee-course-content h3 {
    font-size: 24px;
  }

  .jee-methodology-content h2,
  .jee-final-cta-box h2 {
    font-size: 30px;
  }

  .jee-process-item {
    flex-direction: column;
  }

  .jee-process-number {
    margin-bottom: 10px;
  }

}

@media (max-width:575px) {

  .jee-container {
    padding: 0 30px;
  }

  .jee-form-box {
    padding: 25px;
  }

  .jee-highlight-card,
  .jee-benefit-card,
  .jee-course-card,
  .jee-why-card {
    padding: 25px;
  }

  .jee-footer-strip-content h3 {
    font-size: 28px;
  }

}

.section-padding {
  padding: 60px 0;
}

/*=================================================
JEE COUNSELLING SECTION
==================================================*/

.jee-counselling {
  background: linear-gradient(to bottom, #ffffff, #eef5ff);
}

.jee-content h2 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

.jee-content p {
  font-size: 17px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 35px;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: #0d6efd;
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.jee-content h4 {
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 700;
}

.jee-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-item {
  background: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
  font-weight: 600;
  transition: .35s;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
}

.feature-item i {
  color: #0d6efd;
  font-size: 22px;
}

/* Form */

.jee-form-box {
  background: #fff;
  padding: 45px;
  border-radius: 18px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
}

.jee-form-box h3 {
  font-size: 34px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.jee-form-box .form-control,
.jee-form-box .form-select {

  height: 60px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 16px;
  padding-left: 20px;
  box-shadow: none;

}

.jee-form-box .form-control:focus,
.jee-form-box .form-select:focus {

  border-color: #0d6efd;
  box-shadow: none;

}

.jee-form-box .theme-btn {

  height: 60px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;

}

.jee-bottom-content {

  margin-top: 40px;
  background: #0d6efd;
  color: #fff;
  padding: 30px;
  border-radius: 18px;
  text-align: center;

}

.jee-bottom-content p {

  font-size: 18px;
  line-height: 1.9;
  margin: 0;

}

.jee-bottom-content strong {
  color: #ffd54f;
}

/* Responsive */

@media(max-width:991px) {

  .jee-content {
    margin-bottom: 40px;
  }

  .jee-content h2 {
    font-size: 36px;
  }

  .jee-feature-list {
    grid-template-columns: 1fr;
  }

}

@media(max-width:767px) {

  .jee-form-box {
    padding: 30px;
  }

  .jee-content h2 {
    font-size: 30px;
  }

  .jee-form-box h3 {
    font-size: 28px;
  }

  .jee-bottom-content {
    padding: 30px 25px;
  }

  .jee-bottom-content p {
    font-size: 16px;
  }

}

/*====================================================
                Responsive
====================================================*/

@media(max-width:1399.98px) {
   .jee-hero-content {
    width: 700px;
}
}
@media(max-width:1199.98px) { 
    .jee-hero-content {
    width: 400px;
}
}

@media(max-width:991px) {

  .neet-testimonial-title h2 {

    font-size: 38px;

  }

  .neet-testimonial-card {

    padding: 30px;

  }
 

}

@media(max-width:767px) {

  .neet-testimonial-section {

    padding: 70px 0;

  }

  .neet-testimonial-title {

    margin-bottom: 50px;

  }

  .neet-testimonial-title h2 {

    font-size: 30px;

  }

  .neet-client-info h3 {

    font-size: 22px;

  }

  .neet-review-text {

    font-size: 16px;

    line-height: 1.8;

  }

  .neet-testimonial-card {

    padding: 25px;

  }

  .neet-quote-icon {

    width: 60px;

    height: 60px;

  }

  .neet-quote-icon i {

    font-size: 28px;

  }
  .section-padding {
    padding: 40px 0;
}

}