/* ===== RESET ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Roboto',sans-serif;
}
html{
  scroll-behavior: smooth;
  
}
a{
  text-decoration:none !important;
}
.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* ===== TOPBAR ===== */
.topbar{
  background: linear-gradient(180deg, #CEA347, #FF914A);
  color:#fff;
}

.topbar-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 0;
}

.top-left{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.top-right{
  display:flex;
  gap:10px;
}

/* ===== HEADER ===== */
.header {
    background: #DFF4FF;
    position: sticky;
    z-index: 99999;
    width: 100%;
    top: 0px;
}

.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 0;
}

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

.logo img{
  width:70px;
  border-radius:50%;
}

.logo h5{
  color:#1800AC;
}

.nav{
  display:flex;
  gap:25px;
}
/* NAV LINK BASE */
.nav a{
  position: relative;
  text-decoration: none;
  color: #0C0155;
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 5px;
  transition: .3s;
}

/* HOVER BORDER ANIMATION */
.nav a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1.5px;
  background: linear-gradient(90deg,#FF914C,#36A5DD);
  transition: .3s;
}

/* HOVER EFFECT */
.nav a:hover::after{
  width: 100%;
}

/* ACTIVE LINK */
.nav a.active{
  color: #1800AC;
  font-weight: 400;
}

/* ACTIVE BORDER */
.nav a.active::after{
  width: 100%;
}
.sidebar-menu a.active{
  color:#FF914C;
  font-weight:600;
}
.nav a {
    text-decoration: none;
    color: #0C0155;
    font-weight: 400;
    font-size: 18px;        /* text bada */
    text-transform: uppercase;  /* CAPITAL LETTER */
    letter-spacing: 1px;    /* thoda spacing stylish ke liye */
}

.apply-btn{
  background:#1800AC;
  color:#fff;
  padding:10px 15px;
  border-radius:6px;
  cursor: pointer;
}

.menu-toggle{
  display:none;
  font-size:22px;
  cursor:pointer;
}


/* ===== SIDEBAR FIX ===== */
.sidebar{
  position:fixed;
  top:0;
  right:-100%;
  width:280px;
  height:100vh;
  background:#EEF6FF;   /* 👈 halka color */
  transition:0.3s;
  z-index:99999;
  display:flex;
  flex-direction:column;
}

/* TOP PART */
.sidebar-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px;
  border-bottom:1px solid #ccc;
}

.sidebar-top .logo img{
  width:50px;
}

/* CLOSE BTN */
.close-btn{
  font-size:22px;
  cursor:pointer;
  color:#1800AC;
}

/* MENU */
.sidebar-menu{
  padding:15px;
}

.sidebar-menu a{
  display:block;
  padding:12px 0;
  color:#0C0155;
  text-decoration:none;
  border-bottom:1px solid #ddd;  /* 👈 line niche */
  font-size:16px;
}

/* HOVER */
.sidebar-menu a:hover{
  color:#FF914C;
}

/* ======================footer =======================*/
.footer{
  background: radial-gradient(circle, #1E3D6B, #0E264E);
  color:#fff;
  padding:60px 20px 30px;
}

/* MAIN GRID */
.footer-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  gap:40px;
}
.footer-right {
  max-width: 300px;
}

/* MAP */
.map-container {
  margin-top: 22px;
  width: 100%;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
/* LEFT */
.footer-left{
  flex:1;
}

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

.logo-box img{
  width:70px;
  border-radius:50%;
}

.logo-box h2{
  font-size:22px;
  margin:0;
}

.logo-box p{
  color:#FF914C;
  font-size:14px;
  margin:0;
}
a {
    color: rgb(253 253 253);
    text-decoration: none;
}
.icons a{
  color: white;
  transition: 0.3s;
}

.icons a:hover{
  color: #FF914C;
  transform: scale(1.2);
}
.desc{
  margin-top:20px;
  font-size:14px;
  line-height:1.6;
}

.italic{
  font-style:italic;
  margin-top:10px;
  font-size:14px;
}

.phone{
  margin-top:20px;
  font-size:20px;
  font-weight:700;
  color:#FF914C;
}

.phone i{
  margin-right:10px;
  color:#25D366;
}

.social{
  margin-top:20px;
}

.icons i{
  margin-right:15px;
  font-size:18px;
}

/* MIDDLE */
.footer-middle{
  flex:1.2;
  display:flex;
  gap:40px;
  flex-wrap:wrap;
}

.links h3{
  color:#FF914C;
  font-size:16px;
  margin-bottom:10px;
}

.links ul{
  list-style:none;
  padding:0;
}

.links li{
  font-size:14px;
  margin:6px 0;
}

/* ASSOCIATED TEXT */
.associated{
  width:100%;
  color:#FF914C;
  font-size:14px;
  margin-top:20px;
}

/* RIGHT */
.footer-right{
  flex:1;
}

.footer-right h3{
  color:#FF914C;
  font-size:16px;
}

.footer-right p{
  font-size:14px;
  margin:8px 0;
}

.map-img{
  width:100%;
  margin-top:10px;
  border-radius:6px;
}

/* BOTTOM */
.footer-bottom{
  background:#e5e5e5;
  color:#333;
  display:flex;
  justify-content:space-between;
  padding:10px 20px;
  font-size:14px;
  flex-wrap:wrap;
}
/* FLOAT BUTTONS */

/* WHATSAPP */
.whatsapp-btn{
  position: fixed;
  bottom: 80px;
  right: 20px;

  width: 50px;
  height: 50px;

  background: #25D366;
  color: #fff;

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

  border-radius: 50%;
  font-size: 24px;

  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
/* LINKS LIST */
.links ul li {
  font-size: 14px;
  margin: 6px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.links ul li:hover {
  color: #FF914C;
  transform: translateX(5px);
}

/* IF YOU USE <a> TAG */
.links ul li a {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

.links ul li a:hover {
  color: #FF914C;
  padding-left: 5px;
}

/* CALL */
.call-btn{
  position: fixed;
  bottom: 140px;
  right: 20px;

  width: 50px;
  height: 50px;

  background: #1800AC;
  color: #fff;

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

  border-radius: 50%;
  font-size: 20px;

  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* SCROLL BUTTON */
#scrollBtn{
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 45px;
  height: 45px;

  background: #FF914C;
  color: #fff;

  border: none;
  border-radius: 50px;

  display: none;
  cursor: pointer;

  font-size: 18px;

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

  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

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

  .footer-container{ flex-direction:column; }
  .footer-middle{ flex-direction:column; }
  .footer-bottom{ text-align:center; }

  /* Smaller buttons on mobile */
  .whatsapp-btn,
  .call-btn{
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  #scrollBtn{
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
/* RESPONSIVE */
@media(max-width:992px){

  .footer-container{
    flex-direction:column;
  }

  .footer-middle{
    flex-direction:column;
  }

  .footer-bottom{
    text-align:center;
    gap:10px;
  }
}
/* ===== RESPONSIVE ===== */
@media(max-width:992px){

  .nav,
  .apply-btn{
    display:none;
  }
.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 10px;
}
  .menu-toggle{
    display:block;
  }

  .top-left{
    flex-direction:column;
    gap:5px;
  }
.topbar{
  background: linear-gradient(180deg, #CEA347, #FF914A);
  color:#fff;
  display: none;
}

  
}
/* OVERLAY */
.popup-overlay{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  display:flex;
  justify-content:center;
  align-items:center;
  padding:20px;
  z-index:9999;
  overflow-y:auto;

  opacity:0;
  visibility:hidden;
  transition:0.4s ease;
}

.popup-overlay.active{
  opacity:1;
  visibility:visible;
  margin-top: 74px;

}

/* MAIN BOX */
.popup-box{
  width:100%;
  max-width:900px;
  display:flex;
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 20px 60px rgba(0,0,0,0.25);
  animation: popupFade 0.4s ease;
  position:relative;   /* ✅ IMPORTANT */
}

/* ANIMATION */
@keyframes popupFade{
  from{
    transform: translateY(40px) scale(0.95);
    opacity:0;
  }
  to{
    transform: translateY(0) scale(1);
    opacity:1;
  }
}

/* CLOSE BUTTON */
.close-btn1{
  position:absolute;
  top:12px;
  right:16px;
  font-size:26px;
  font-weight:bold;
  color:#000;
  cursor:pointer;
  z-index:10;
  transition:0.3s;
}

.close-btn1:hover{
  color:#FF914C;
  transform: rotate(90deg);
}

/* LEFT SIDE */
.popup-left{
  width:45%;
  padding:50px 35px;
  background: linear-gradient(135deg,#1800AC,#0E264E);
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.popup-left h2{
  font-size:28px;
  margin-bottom:10px;
}

.popup-left p{
  font-size:14px;
  opacity:0.9;
  margin-bottom:25px;
}

/* LIST */
.popup-left ul{
  list-style:none;
  padding:0;
}

.popup-left li{
  margin-bottom:10px;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:8px;
}

/* RIGHT SIDE */
.popup-right{
  width:55%;
  padding:20px 25px;
  background:#fff;
}

.popup-right h3{
  font-size:22px;
  margin-bottom:10px;
  color:#1800AC;
}

/* INPUT */
.popup-right input,
.popup-right select{
  width:100%;
  padding:8px;
  /* margin-bottom:12px; */
  border-radius:8px;
  border:1px solid #e0e0e0;
  font-size:14px;
  transition:0.3s;
  background:#fafafa;
}

.popup-right input:focus,
.popup-right select:focus{
  border-color:#1800AC;
  background:#fff;
  outline:none;
  box-shadow:0 0 0 2px rgba(24,0,172,0.1);
}

/* BUTTON */
.popup-right button{
  /* width:100%; */
  /* padding:14px; */
  border:none;
  border-radius:10px;
  background: linear-gradient(135deg,#1800AC,#4A3AFF);
  color:#fff;
  font-size:15px;
  font-weight:500;
  cursor:pointer;
  transition:0.3s;
  justify-content: center;
  align-items: center;
}

.popup-right button:hover{
  background: linear-gradient(135deg,#FF914C,#ff6a00);
  transform: translateY(-2px);
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

/* ===== MOBILE ===== */
@media(max-width:768px){

  .popup-overlay{
    align-items:flex-start;
  }

  .popup-box{
    flex-direction:column;
    border-radius:14px;
  }

  .popup-left,
  .popup-right{
    width:100%;
    padding:25px;
  }
.close-btn1 {
    position: absolute;
    top: 15px;
    
    font-size: 27px;
    font-weight: bold;
    /* color: #ffffff; */
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}
  .popup-left{
    text-align:center;
  }

  .popup-left h2{
    font-size:22px;
  }

  .popup-right h3{
    font-size:20px;
  }
}


/*====================== aall  SECTION animection start css ===========================*/


/* COMMON CARD HOVER */
.track-card,
.course-card,
.why-card,
.testimonial-card,
.college-item,
.step{
  transition: all 0.4s ease;
  cursor: pointer;
}

/* HOVER EFFECT */
.track-card:hover,
.course-card:hover,
.why-card:hover,
.testimonial-card:hover,
.college-item:hover,
.step:hover{
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.course-card .img-box{
  overflow: hidden;
}

.course-card img{
  transition: 0.4s;
}

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


.btn-fill,
.btn-outline,
.learn-btn,
.apply-btn{
  transition: 0.3s;
}

/* FILL BUTTON */
.btn-fill:hover,
.apply-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* OUTLINE BUTTON */
.btn-outline:hover{
  background:#FF914C;
  color:#fff;
}

/* LEARN BUTTON */
.learn-btn:hover{
  background:#1800AC;
  color:#fff;
}
/* INITIAL STATE */
.fade-left,
.fade-right,
.fade-up{
  opacity: 0;
  transform: translateY(40px); /* 👈 only Y use */
  transition: all 0.6s ease;
  will-change: transform;
}

/* ACTIVE */
.show{
  opacity: 1;
  transform: translateY(0);
}

/*====================== aall  SECTION animection end css ===========================*/











/*====================== HERO SECTION ===========================*/
/*====================== HERO SLIDER ===========================*/
.hero-slider{
  position:relative;
  width:100%;
  height:650px;
  overflow:hidden;
}

/*====================== HERO SECTION ===========================*/
.hero{
  width:100%;
  height:650px;
  position:absolute;
  top:0;
  left:0;
  display:flex;
  align-items:center;
  opacity:0;
  visibility:hidden;
  transition:1s ease;
}

/* ACTIVE SLIDE */
.hero.active{
  opacity:1;
  visibility:visible;
  z-index:2;
}

/* DESKTOP IMAGES */
.hero:nth-child(1){
  background:url('../assets/images/banerslide3.png') center/cover no-repeat;
}

.hero:nth-child(2){
  background:url('../assets/images/banerslider.png') center/cover no-repeat;
}
.hero:nth-child(3){
  background:url('../assets/images/banerslide2.png') center/cover no-repeat;
}


/* OVERLAY */
.hero::before{
  content:'';
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  /* background:rgba(0,0,0,0.4); */
}

/* CONTENT */
.hero-content{
  position:relative;
  max-width:520px;
  margin-left:160px;
  color:#fff;
  display:flex;
  flex-direction:column;
  gap:24px;
  z-index:2;
  display: none;
}

.hero-content h1{
  font-size:40px;
  font-weight:700;
  line-height:48px;
}

.hero-content p{
  font-size:16px;
  line-height:24px;
}

/* BUTTONS */
.hero-buttons{
  display:flex;
  gap:12px;
}

.btn-outline{
  padding:12px 20px;
  border:1px solid #FF914C;
  color:#FF914C;
  border-radius:8px;
  text-decoration:none;
  font-weight:500;
  transition:0.3s;
}

.btn-fill{
  padding:12px 20px;
  background:#FF914C;
  color:#0C0151;
  border-radius:8px;
  text-decoration:none;
  font-weight:500;
  transition:0.3s;
}

/* HOVER */
.btn-outline:hover{
  background:#FF914C;
  color:#fff;
}

.btn-fill:hover{
  opacity:0.9;
}

/*====================== DOTS ===========================*/
.slider-dots{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:10;
}

.dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:rgba(255,255,255,0.5);
  cursor:pointer;
  transition:0.3s;
}

.dot.active{
  background:#FF914C;
  transform:scale(1.2);
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){

  .hero,
  .hero-slider{
    height:500px;
  }

  .hero-content{
    margin-left:20px;
    margin-right:20px;
  }

  .hero-content h1{
    font-size:28px;
    line-height:36px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .btn-outline,
  .btn-fill{
    width:100%;
    text-align:center;
  }
}

@media(max-width:576px){

  .hero,
  .hero-slider{
    height:450px;
  }

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

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

  .container{
    max-width:1200px;
    margin:auto;
    padding:0px;
  }

  .header{
    background:#DFF4FF;
    padding:5px 14px;
  }

  /* MOBILE IMAGES */
  .hero:nth-child(1){
    background:url('../assets/images/herosectionmobileview.jpg') center/cover no-repeat;
  }

  .hero:nth-child(2){
    background:url('../assets/images/mobileslider2.jpg') center/cover no-repeat;
  }
.hero:nth-child(3){
    background:url('../assets/images/herosectionmobileview.jpg') center/cover no-repeat;
  }
  

  /* HIDE CONTENT */
  .hero-content{
    display:none;
  }

  .slider-dots{
    bottom:20px;
  }

}
/* ==============track-record =================*/

.track-record{
  padding:60px 20px;
}

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

.track-header h2{
  color:#36A5DD;
  font-size:40px;
  font-weight:700;
  line-height:48px;
}

.track-header p{
  color:#1800AC;
  font-size:18px;
  margin:10px 0 20px;
}

.learn-btn{
  display:inline-block;
  background:#8C8C8C;
  color:#fff;
  padding:12px 20px;
  border-radius:8px;
  text-decoration:none;
  font-weight:500;
}

/* CARDS */
.track-cards{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.track-card{
  background:#1800AC;
  color:#fff;
  width:100%;
  max-width:350px;
  height:96px;
  border-radius:6px;
  position:relative;
  padding:16px;
  box-shadow:0px 4px 4px rgba(12,0,85,0.47);
  border:1px solid rgba(255,145,74,0.5);
  overflow:hidden;
}

.track-card p{
  font-size:16px;
}

.track-card h3{
  color:#FF914C;
  font-size:36px;
  font-weight:700;
  margin-top:-11px;
}

/* IMAGE */
.track-card img{
  position:absolute;
  right:10px;
  top:0;
  width:100px;
  opacity:1;
}

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

  .track-header h2{
    font-size:28px;
  }

  .track-cards{
    flex-direction:column;
    align-items:center;
  }

  .track-card{
    max-width:100%;
  }
}

@media(max-width:576px){

  .track-header h2{
    font-size:24px;
  }

  .track-header p{
    font-size:14px;
  }

  .track-card h3{
    font-size:28px;
  }
}







/* ======================about-kendra ====================*/
/* SECTION */
.about-kendra {
  background: #09003E;
  padding: 60px 170px;
}

/* CONTAINER */
.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* IMAGE */
.about-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #D9D9D9;
}

/* CONTENT */
.about-content {
  flex: 1;
  text-align: center;
}

.about-content h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-content p {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-kendra {
    padding: 50px 40px;
  }
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

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

  .about-content h3 {
    font-size: 20px;
  }

  .about-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .about-kendra {
    padding: 40px 20px;
  }

  .about-img {
    width: 80px;
    height: 80px;
  }
}




/*================= courses=============== */

/* SECTION */
.courses{
  padding:60px 20px;
}

/* TITLE */
.section-title{
  text-align:center;
  color:#36A5DD;
  font-size:40px;
  font-weight:700;
  margin-bottom:50px;
}

/* WRAPPER */
.course-wrapper{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}

/* CARD */
.course-card{
  width:345px;
  border-radius:6px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,0.1);
  background:#fff;
}

/* IMAGE */
.img-box{
  position:relative;
}

.img-box img{
  width:100%;

  object-fit:cover;
}

/* TAG */
.tag{
  position:absolute;
  top:0px;
  right:10px;
  background:#09003E;
  color:#fff;
  font-size:12px;
  padding:4px 10px;
  border-top-left-radius:6px;
  border-bottom-right-radius:6px;
  border:1px solid #fff;
}

/* CONTENT */
.course-content{
  padding:12px;
}

.course-content p{
  color:#1800AC;
  font-size:16px;
}

.course-content h3{
  color:#09003E;
  font-size:16px;
  font-weight:500;
  margin-top:5px;
}

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

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

  .course-wrapper{
    gap:20px;
  }
}

@media(max-width:576px){

  .section-title{
    font-size:21px !important;
        margin-bottom: 20px !important;
  }
.courses {
    padding: 20px 20px;
}
  .course-card{
    width:100%;
  }

  .img-box img{

  }
}



/* ===============why-kendra ==================*/

/* SECTION */
.why-kendra {
  background: #1800AC;
  padding: 60px 170px;
}

/* CONTAINER */
.why-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

/* HEADER */
.why-header {
  text-align: center;
}

.why-header h2 {
  color: #FF914C;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-header p {
  color: #fff;
  font-size: 18px;
}

/* CARDS GRID */
.why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
}

/* CARD */
.why-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.1);
}

/* IMAGE */
.why-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

/* TEXT */
.why-text h3 {
  color: #09003E;
  font-size: 20px;
  font-weight: 500;
}

.why-text p {
  color: #1800AC;
  font-size: 16px;
  margin-top: 5px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-kendra {
    padding: 50px 40px;
  }
}

@media (max-width: 768px) {
  .why-cards {
    grid-template-columns: 1fr;
  }

  .why-header h2 {
    font-size: 18px;
  }

  .why-header p {
    font-size: 14px;
  }
  .why-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
}

@media (max-width: 480px) {
  .why-kendra {
    padding: 40px 20px;
  }

  .why-card {
    flex-direction: column;
    text-align: center;
  }

  .why-card img {
    width: 80px;
    height: 80px;
  }
  .course-content h3{
  color:#09003E;
  font-size:15px;
  font-weight:500;
  margin-top:5px;
}
.feature-right h2 {
    color: #1800AC;
    font-size: 17px;
}
.course-feature {
    padding: 20px 20px;
    background: #DFF4FF;
}


}




/* ===================colleges ====================*/
.colleges{
  padding:60px 20px;
  text-align:center;
}

/* HEADER */
.college-header h2{
  color:#36A5DD;
  font-size:40px;
  font-weight:700;
  line-height:48px;
}

.college-header p{
  color:#1800AC;
  font-size:16px;
  margin-top:10px;
}

/* GRID */
.college-grid{
  margin-top:40px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:40px;
}

/* ITEM */
.college-item{
  display:flex;
  flex-direction:column;
  align-items:center;

}

/* CIRCLE */
.circle{
  width:100px;
  height:100px;
  background:rgba(0,0,0,0.05);
  border-radius:50%;
}
.circle img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* TEXT */
.college-item p{
  color:#8C8C8C;
  font-size:16px;
  line-height:5px;
}

/* BUTTON */
.college-btn{
  margin-top:40px;
}

.college-btn a{
  display:inline-block;
  background:#8C8C8C;
  color:#fff;
  padding:12px 30px;
  border-radius:8px;
  text-decoration:none;
  font-weight:500;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){

  .college-header h2{
    font-size:20px;
  }

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

@media(max-width:576px){

  .college-header h2{
    font-size:20px;
  }
  .college-header p {
    color: #1800AC;
    font-size: 13px;
    margin-top: 10px;
}
.colleges {
    padding: 20px 20px;
    text-align: center;
}

.college-item {
    display: flex
;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
}
  .college-grid{
    grid-template-columns: 1fr;
  }

  .college-item p{
    font-size:16px;
  }
}




/*================== process =======================*/

/* SECTION */
.process {
  background: linear-gradient(135deg, #09003E, #14006b);
  padding: 70px 120px;
}

/* CONTAINER */
.process-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

/* HEADER */
.process-header {
  text-align: center;
}

.process-header h2 {
  color: #FF914C;
  font-size: 38px;
  font-weight: 700;
}

.process-header p {
  color: #ddd;
  font-size: 16px;
  margin-top: 8px;
}

/* BOX */
.process-box {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 50px 30px;
  backdrop-filter: blur(10px);
  position: relative;
}

/* PROCESS LINE */
.process-box::before {
    content: "";
    position: absolute;
    top: 95px;
    left: 14%;
    width: 73%;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
}

/* STEPS */
.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

/* STEP */
.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* DOT */
/* .step::before {
  content: "";
  position: absolute;
  top: 78px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255,255,255,0.7);
} */

/* ICON BOX */
.icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #FF914C;
  transition: all 0.3s ease;
}

/* HOVER */
.step:hover .icon-box {
  background: #FF914C;
  color: #fff;
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255,145,76,0.4);
}

/* TEXT */
.step h3 {
  color: #36A5DD;
  font-size: 18px;
  margin-top: 10px;
}

.step p {
  color: #eee;
  font-size: 14px;
  margin-top: 5px;
}

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

/* TABLET */
@media (max-width: 992px) {
  .process {
    padding: 50px 40px;
  }

  /* remove line for clean layout */
  .process-box::before {
    display: none;
  }

  .process-steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .step {
    flex: 0 0 45%;
  }

  .step::before {
    display: none;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .process {
    padding: 40px 20px;
  }

  .process-header h2 {
    font-size: 20px;
  }

  .process-header p {
    font-size: 14px;
  }

  .step {
    flex: 0 0 100%;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .icon-box {
    width: 65px;
    height: 65px;
    font-size: 22px;
  }
}

/* ==================testimonials ===================*/

.testimonials{
  background:#DFF4FF;
  padding:60px 20px;
}

/* WRAPPER */
.testimonial-wrapper{
  display:flex;
  gap:60px;
  align-items:center;
  flex-wrap:wrap;
}

/* LEFT */
.testimonial-left{
  flex:1;
}

.testimonial-left h2{
  color:#36A5DD;
  font-size:40px;
  font-weight:700;
  line-height:48px;
}

.testimonial-left p{
  color:#1800AC;
  font-size:16px;
  margin-top:10px;
}

/* RIGHT */
.testimonial-right{
  flex:1;
}

.testimonial-cards{
  display:flex;
  gap:40px;
}

/* CARD */
.testimonial-card{
  flex:1;
  background:rgba(0,0,0,0.05);
  padding:16px;
  border-radius:6px;
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* USER */
.user{
  display:flex;
  align-items:center;
  gap:10px;
}

.user img{
  width:32px;
  height:32px;
  border-radius:50%;
}

.user span{
  font-size:14px;
  font-weight:500;
  color:#09003E;
}

/* STARS */


/* TEXT */
.testimonial-card p{
  font-size:16px;
  line-height:24px;
  color:#000;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){

  .testimonial-left h2{
    font-size:20px;
    text-align: center;
  }

  .testimonial-wrapper{
    flex-direction:column;
    align-items:flex-start;
  }

  .testimonial-cards{
    flex-direction:column;
  }
}

@media(max-width:576px){

  .testimonial-left h2{
    font-size:20px;
    text-align: center;
  }

  .testimonial-left p{
    font-size:11px;
  }
.testimonials {
    background: #DFF4FF;
    padding: 20px 20px;
}
  .testimonial-card p{
    font-size:14px;
  }
  .testimonial-wrapper {
    display: flex
;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
}
.footer-bottom{
  background:#e5e5e5;
  color:#333;
  display:flex;
  justify-content:space-between;
  padding:10px 20px;
  font-size:11px;
  flex-wrap:wrap;
}
.footer {
    background: radial-gradient(circle, #1E3D6B, #0E264E);
    color: #fff;
    padding: 20px 10px 10px;
    text-align: center;
}
.track-record {
    padding: 20px 20px;
}
}
.stars {
  display: flex;
  gap: 5px;
  justify-content: center; /* optional */
}

.stars i {
  color: #FFD700; /* gold color */
  font-size: 18px;
  transition: 0.3s;
}

/* hover effect */
.stars i:hover {
  transform: scale(1.2);
}


/* SECTION BACKGROUND */
.enquiry-section {
    padding: 30px 120px;
}

/* CONTAINER */
.enquiry-container {
  display: flex;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.enquiry-left {
  flex: 1;
}

.enquiry-left h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1800AC;
  margin-bottom: 15px;
}

.enquiry-left p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}

/* RIGHT FORM CARD */
.enquiry-right {
  flex: 1;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* FORM GROUP */
.form-group {
  margin-bottom: 22px;
}

/* LABEL */
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1800AC;
  margin-bottom: 6px;
}

/* INPUT + SELECT */
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.1);
  font-size: 14px;
  background: #fff;
  transition: all 0.3s ease;
}

/* PREMIUM FOCUS EFFECT */
.form-group input:focus,
.form-group select:focus {
  border-color: #1800AC;
  box-shadow: 0 0 0 3px rgba(24, 0, 172, 0.1);
  transform: translateY(-1px);
}

/* PLACEHOLDER */
::placeholder {
  color: #aaa;
}

/* SMALL TEXT */
.form-group small {
  display: block;
  font-size: 12px;
  color: #888;
  margin-top: 5px;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #1800AC, #3a2bff);
  cursor: pointer;
  transition: all 0.3s ease;
}

/* BUTTON HOVER */
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(24,0,172,0.3);
}

/* TABLET */
@media (max-width: 992px) {
  .enquiry-section {
    padding: 60px 40px;
  }

  .enquiry-container {
    gap: 5px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .enquiry-section {
    padding: 40px 20px;
  }

  .enquiry-container {
    flex-direction: column;
  }

  .enquiry-left h2 {
    font-size: 20px;
    align-items: center;
  }
.enquiry-left p {
    font-size: 10px;
    color: #555;
    line-height: 1.6;
}


  .enquiry-right {
    width: 100%;
  }
}











/* ===== GLOBAL ===== */
.about-hero-sec,
.about-intro-sec,
.about-feature-sec,
.about-why-sec,
.about-process-sec,
.about-cta-sec{
  overflow:hidden;
}

/* ===== HERO ===== */
.about-hero-sec{
  height:450px;
  background: 
              url('../assets/images/About Us.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
}

.about-hero-overlay h1{
  color:#fff;
  font-size:42px;
  font-weight:700;
  padding: 16px;
  text-align: center;
}

.about-hero-overlay p{
  color:#36A5DD;
  margin-top:10px;
   padding: 16px;
  text-align: center;
}

/* ===== INTRO (6-6) ===== */
.about-intro-sec{
  padding:70px 20px;
}

.about-intro-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.about-intro-img img{
  width:100%;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  ;
}

.about-intro-text h2{
  color:#1800AC;
  font-size:32px;
  margin-bottom:15px;
}

.about-intro-text p{
  color:#555;
  line-height:1.7;
  margin-bottom:10px;
}

/* ===== FEATURE CARDS ===== */
.about-feature-sec{
  background:#DFF4FF;
  padding:60px 20px;
}

.about-feature-container{
  max-width:1100px;
  margin:auto;
  display:flex;
  gap:25px;
  justify-content:center;
  flex-wrap:wrap;
}

.about-feature-card{
  background:#fff;
  padding:30px;
  width:220px;
  border-radius:12px;
  text-align:center;
  transition:0.4s;
  border:1px solid rgba(0,0,0,0.05);
}

.about-feature-card h3{
  color:#FF914C;
  font-size:28px;
}

.about-feature-card:hover{
  transform:translateY(-12px) scale(1.03);
  box-shadow:0 10px 25px rgba(24,0,172,0.2);
}

/* ===== WHY ===== */
.about-why-sec{
  padding:70px 20px;
}

.about-why-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.about-why-container h2{
  color:#1800AC;
}

.about-why-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
  margin-top:40px;
}

.about-why-box{
  background:#eef1fc;
  padding:25px;
  border-radius:10px;
  transition:0.3s;
  border-left:5px solid #FF914C;
}

.about-why-box:hover{
  transform:translateY(-8px);
  box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.about-why-box h3{
  color:#09003E;
}

/* ===== PROCESS ===== */
.about-process-sec{
  background:linear-gradient(135deg,#09003E,#1800AC);
  padding:70px 20px;
  color:#fff;
}

.about-process-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.about-process-steps{
  display:flex;
  gap:25px;
  margin-top:40px;
  justify-content:center;
  flex-wrap:wrap;
}

.about-step-box{
  background:rgba(255,255,255,0.08);
  padding:25px;
  border-radius:12px;
  width:280px;
  transition:0.3s;
  border:1px solid rgba(255,255,255,0.1);
}

.about-step-box:hover{
  background:#FF914C;
  color:#09003E;
  transform:translateY(-10px);
}

/* ===== CTA ===== */
.about-cta-sec{
  padding:70px 20px;
  background:#36A5DD;
}

.about-cta-box{
  text-align:center;
  color:#fff;
}

.about-cta-btn{
  margin-top:15px;
  display:inline-block;
  padding:12px 30px;
  background:#FF914C;
  color:#09003E;
  border-radius:8px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
}

.about-cta-btn:hover{
  background:#09003E;
  color:#fff;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){

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

  .about-why-grid{
    grid-template-columns:1fr;
  }

  .about-process-steps{
    flex-direction:column;
    align-items:center;
  }

  .about-hero-overlay h1{
    font-size:20px;
  }

}
@media(max-width:580px){

  

  .about-hero-overlay h1{
    font-size:20px;
  }
  .about-intro-sec {
    padding: 20px 20px;
}
.about-intro-text h2 {
    color: #1800AC;
    font-size: 20px;
    margin-bottom: 11px;
}
.about-feature-sec {
    background: linear-gradient(135deg, #eaf6ff, #dff4ff);
    padding: 20px 20px;
}
.about-why-sec {
    padding: 20px 20px;
}

.about-why-box h3 {
    color: #09003E;
    font-size: 17px;
}

.about-process-sec {
    background: linear-gradient(135deg, #09003E, #1800AC);
    padding: 20px 20px;
    color: #fff;
}



}
/* ===== FEATURE SECTION ===== */
.about-feature-sec {
  background: linear-gradient(135deg, #eaf6ff, #dff4ff);
  padding: 80px 20px;
}

/* CONTAINER */
.about-feature-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.about-feature-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  padding: 35px 25px;
  width: 240px;
  border-radius: 16px;
  text-align: center;
  transition: 0.4s ease;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

/* GLOW BORDER EFFECT */
.about-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, #1800AC, #36A5DD, #FF914C);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* ICON */
.about-feature-card .icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1800AC, #36A5DD);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 8px 20px rgba(24,0,172,0.3);
}

/* NUMBER */
.about-feature-card h3 {
  color: #FF914C;
  font-size: 30px;
  margin-bottom: 5px;
}

/* TEXT */
.about-feature-card p {
  color: #555;
  font-size: 15px;
}

/* HOVER EFFECT */
.about-feature-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 35px rgba(24,0,172,0.2);
}

/* HOVER ICON */
.about-feature-card:hover .icon {
  background: #FF914C;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-feature-card {
    width: 100%;
    max-width: 300px;
  }
}













/* ===== HERO ===== */
.course-hero{
  height: 450px;
  background: url('../assets/images/Courses.jpg') center/cover;
  position: relative;
}

.course-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
}

.course-overlay h1{
  font-size:50px;
}

.hero-btns{
  margin-top:20px;
  display:flex;
  gap:15px;
  flex-wrap: wrap;
  padding: 19px;
}

/* ===== BUTTON ===== */
.btn-fill{
  background:#FF914C;
  padding:12px 20px;
  border-radius:8px;
  color:#09003E;
  font-weight:600;
}

.btn-outline{
  border:1px solid #FF914C;
  padding:12px 20px;
  border-radius:8px;
  color:#FF914C;
}

/* ===== COURSE GRID ===== */
.course-section{
  padding:80px 20px;
  background:#f9fbff;
}

.section-title{
  text-align:center;
  font-size:36px;
  color:#1800AC;
  margin-bottom:40px;
}

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

.course-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  transition:0.4s;
  position:relative;
}

/* DEFAULT SHADOW (already premium look) */
.course-card:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

.course-card img{
  width:100%;
  object-fit:cover;
}

.course-content{
  padding:20px;
}

.course-content h3{
  color:#09003E;
}

.course-content p{
  color:#555;
}

/* ===== FEATURE ===== */
.course-feature{
  padding:80px 20px;
  background:#DFF4FF;
}

.feature-wrap{
  display:flex;
  align-items:center;
  gap:50px;
}

.feature-left img{
  width:100%;
  border-radius:12px;
}

.feature-right h2{
  color:#1800AC;
}

.feature-right ul{
  margin:20px 0;
}

.feature-right li{
  margin-bottom:10px;
}

/* ===== PROCESS ===== */
.course-process{
  padding:80px 20px;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.process-card{
  background:#fff;
  padding:30px;
  text-align:center;
  border-radius:10px;
  box-shadow:0 10px 20px rgba(0,0,0,0.1);
  transition:0.3s;
}

.process-card:hover{
  background:#1800AC;
  color:#fff;
  transform:translateY(-8px);
}

/* ===== CTA ===== */
.course-cta{
  padding:80px 20px;
  text-align:center;
  background: linear-gradient(90deg,#1800AC,#09003E);
  color:#fff;
}

.cta-btn{
  margin-top:20px;
  display:inline-block;
  background:#FF914C;
  padding:12px 25px;
  border-radius:8px;
  color:#09003E;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
  .course-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .feature-wrap{
    flex-direction:column;
  }

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

@media(max-width:600px){
  .course-grid{
    grid-template-columns:1fr;
  }

  .process-grid{
    grid-template-columns:1fr;
  }

  .course-overlay h1{
    font-size:32px;
  }
  .course-process {
    padding: 20px 20px;
}
}




  /* Modern captcha */
      .modern-captcha {
        background: linear-gradient(135deg, #fafafa, #ffffff);
        border: 1px solid #ececec;
        border-radius: 12px;
        padding: 12px;
      }
      .captcha-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
      }
      .captcha-head span {
        font-size: 13px;
        font-weight: 600;
        color: #350000;
      }
      .captcha-refresh {
        border: none;
        border-radius: 8px;
        background: #992728;
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        padding: 6px 10px;
        cursor: pointer;
      }
      .captcha-preview {
        min-height: 54px;
        border-radius: 10px;
        border: 1px dashed #d7d7d7;
        background: repeating-linear-gradient(
          -45deg,
          #f6f6f6,
          #f6f6f6 8px,
          #ffffff 8px,
          #ffffff 16px
        );
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        margin-bottom: 10px;
        user-select: none;
      }
      .captcha-preview span {
        color: #992728;
        font-weight: 800;
        font-size: 22px;
        letter-spacing: 1px;
        display: inline-block;
      }
      #captchaInput {
        width: 100%;
      }
      .captcha-input {
        width: 100%;
        padding: 10px 12px;
        border-radius: 8px;
        border: 1px solid #d7d7d7;
        font-size: 14px;
      }
      .captcha-input:focus {
        border-color: #992728;
        box-shadow: 0 0 0 3px rgba(153,39,40,0.1);
        outline: none;
      }
      .captcha-error {
        color: #992728;
        font-size: 12px;
        margin-top: 5px;
      }

      .captcha-box{
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
}

.captcha-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.captcha-label{
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}

.captcha-refresh-btn{
  width: 34px;
  height: 34px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #f9fafb;
  color: #1e3b8d;
  cursor: pointer;
  transition: all .2s ease;
}
.captcha-refresh-btn:hover{
  background: #eef2ff;
  border-color: #1e3b8d;
  transform: rotate(20deg);
}

.captcha-preview{
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px dashed #cbd5e1;
  background: linear-gradient(135deg,#f8fafc,#eef2ff);
  letter-spacing: 3px;
  user-select: none;
}

.captcha-input{
  width: 100%;
  height: 44px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0 12px;
  font-size: 14px;
  outline: none;
}
.captcha-input:focus{
  border-color: #1e3b8d;
  box-shadow: 0 0 0 3px rgba(30,59,141,.12);
}

.captcha-error{
  margin: 8px 0 0;
  color: #dc2626;
  font-size: 13px;
  display: none;
}







.legal-list-two{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-list-two li{
  margin: 0;
}

.legal-list-two a{
  display: inline-block;
  text-decoration: none;
}

/* Mobile: one per row */
@media (max-width: 576px){
  .legal-list-two{
    grid-template-columns: 1fr;
  }
}


.college-item.hidden {
  display: none;
}
.read-more-btn {
    display: inline-block;
    padding: 2px 6px;
    font-size: 11px;
    color: #fff;
    background: #007bff;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.3s;
    margin-bottom: 12px;
}

.read-more-btn i {
  margin-left: 5px;
  font-size: 12px;
}

.read-more-btn:hover {
  background: #0056b3;
}



.course-content p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}

.course-content .view-btn {
  background: #322afd;
  color: #fff;
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.course-content .view-btn:hover {
  background: #0056b3;
}
