/* hero first section start */
  html,body{
        overflow-x : hidden;
    }
    .ent-hero {
  position: relative;
  background: #fff;
}
.ent-slider {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.ent-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: 1s ease;
}
.ent-slide.active {
  opacity: 1;
  visibility: visible;
}
.ent-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: 8s linear;
}
.ent-slide.active img {
  transform: scale(1);
}

.ent-content {
  position: absolute;
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
  max-width: 650px;
  color: var(--black);
  z-index: 5;
}
.ent-content span {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 600;
}
.ent-content h1 {
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}
.ent-content h1 strong {
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-weight: 600;
  font-size: 40px;
}
.ent-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 550px;
  color: #555;
}
.ent-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.hero-btn {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  padding: 15px 35px;
  font-weight: 700;
  transition: 0.4s;
}
.hero-btn:hover {
  transform: translateY(-4px);
  color: #fff;
}
.hero-btn-outline {
  border: 2px solid var(--black);
  color: var(--black);
  text-decoration: none;
  padding: 15px 35px;
  font-weight: 700;
  transition: 0.4s;
}
.hero-btn-outline:hover {
  background: var(--black);
  color: var(--white);
}
.slider-dots {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #555;
  cursor: pointer;
  transition: 0.4s;
}
.dot.active {
  background: var(--red);
  width: 38px;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .ent-slider {
    height: 240px;
    min-height: auto;
  }
  .ent-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: var(--combo);
  }
  .ent-content {
    left: 10px;
    right: 10px;
    max-width: 200px;
    top: 50%;
    transform: translateY(-50%);
  }
  .ent-content span {
    display: none;
  }
  .ent-content p {
    display: none;
  }
  .ent-content h1 {
    font-size: 20px;
    line-height: 1.2;
    margin: 0;
    font-weight: 700;
  }
  .ent-content h1 strong {
    color: var(--purple);
    display: block;
    font-weight: 600;
    font-size: 18px;
  }
  .slider-dots {
    bottom: 18px;
    gap: 8px;
  }
  .dot {
    width: 10px;
    height: 10px;
  }
  .dot.active {
    width: 24px;
  }
  .ent-btns {
    display: flex;
    gap: 6px;
    margin-top: 10px;
  }

  .hero-btn,
  .hero-btn-outline {
    padding: 6px 10px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
  }
 
}

/* marquee section start */

 .country-marquee{
  width:100%;
  overflow:hidden;
  background: var(--red);
  padding:14px 0;
}

.marquee{
  width:100%;
  overflow:hidden;
}

.marquee-track{
  display:flex;
  width:max-content;
  animation: scroll 25s linear infinite;
}

.marquee-group{
  display:flex;
  gap:60px;
  align-items:center;
   margin-right:80px;
}
.item{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  font-size:20px;
  font-weight:600;
  white-space:nowrap;
}

.dot{
  width:10px;
  height:10px;
  background:#fff;
  border-radius:50%;
  position:relative;
}

.dot::after{
  content:'';
  position:absolute;
  width:20px;
  height:20px;
  border:2px solid rgba(255,255,255,0.4);
  border-radius:50%;
  top:-5px;
  left:-5px;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media(max-width:768px){
  .item{
    font-size:16px;
  }
  .marquee-group{
    gap:35px;
  }
}

/* about section start */

   .admission-about-section{
    background:#fff;
    padding: 30px 20px;
}

.section-tag{
    display:inline-block;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    color:var(--primary);
    margin-bottom:15px;
}

.about-heading{
    font-size:40px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
    color:#111;
}

.admission-about-section p{
    color:#666;
    line-height:1.5;
    margin-bottom:10px;
    font-size:16px;
}

.why-box{
    padding-left:35px;
    border-left:3px solid var(--primary);
}

.why-box h4{
    font-size:26px;
    font-weight:700;
    margin-bottom:25px;
    color:#111;
}
.why-box ul{
    list-style:none;
    padding:0;
    margin:0;
}
.why-box ul li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:15px;
    color:#555;
    line-height:1.5;
    font-size:15px;
}

.why-box ul li i{
    color: var(--primary);
    font-size:18px;
    margin-top:3px;
}

@media(max-width:991px){
 .admission-about-section{
    background:#fff;
    padding: 30px 10px;
}
    .about-heading{
        font-size:32px;
    }

    .why-box{
        padding-left:20px;
    }

}

@media(max-width:767px){

    .about-heading{
        font-size:28px;
    }

    .admission-about-section p{
        font-size:15px;
    }

    .why-box h4{
        font-size:22px;
    }

}


/* college css */

 .home-college-section{
    background: var(--light);
}
.home-college-section .small-tag{
    display:inline-block;
    background: var(--red);
    color: var(--white);
    padding:6px 15px;
    font-size:13px;
    margin-bottom:10px;
}
.home-college-section .section-title{
    font-size:40px;
    font-weight:700;
}
.home-college-section .section-title span{
    color:var(--combo);
}
.home-college-section .college-card{
    background:var(--white);
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:0.4s;
    height:100%;
    display:flex;
    flex-direction:column;
}
.home-college-section .college-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}
.home-college-section .college-img-box{
    position:relative;
    overflow:hidden;
}

.home-college-section .college-img{
    width:100%;
    height:200px;
    object-fit:cover;
    transition:0.5s;
}
.home-college-section .college-card:hover .college-img{
    transform:scale(1.1);
}
.home-college-section .college-badge{
    position:absolute;
    bottom:12px;
    left:12px;
    background: var(--primary);
    color:var(--white);
    padding:8px 16px;
    font-size:13px;
    font-weight:500;
    display:flex;
    align-items:center;
    gap:6px;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}
.home-college-section .college-body{
    padding:20px;
    display:flex;
    flex-direction:column;
    flex-grow:1;
}
.home-college-section .college-info p{
    font-size:14px;
    margin-bottom:8px;
    color:#555;
    display:flex;
    align-items:center;
    gap:6px;
}
.home-college-section .college-info i{
    color:var(--primary);
}
.home-college-section .college-package{
    margin-top:12px;
    margin-bottom:15px;
}
.home-college-section .package-row{
    background: var(--light);
    padding:10px 12px;
  
    margin-bottom:8px;
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    transition:0.3s;
}
.home-college-section .package-row:hover{
    background: #e6ecff;
}
.home-college-section .package-row i{
    color:var(--primary);
}
.home-college-section .college-btns{
    margin-top:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
}
.home-college-section .apply-btn{
    background: var(--primary);
    color:var(--white);
    padding:9px 16px;
   
    font-size:13px;
    border: none;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:6px;
    transition:0.3s;
    box-shadow:0 5px 15px rgba(95, 183, 255, 0.3);
}
.home-college-section .apply-btn:hover{
    color:var(--white);
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(95, 164, 255, 0.4);
}
.home-college-section .know-btn{
    color:var(--primary);
    font-weight:500;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:5px;
    transition:0.3s;
}
.home-college-section .know-btn:hover{
    gap:8px;
    color: var(--primary);
}

@media(max-width:768px){
    .home-college-section .section-title{
    font-size:28px;
   
}
    .home-college-section .college-btns{
        flex-direction:row;                 
        justify-content:space-between;
        align-items:center;
        gap:8px;
    }
    .home-college-section .apply-btn{
        width:auto;                      
        padding:7px 12px;
        font-size:12px;
        flex:1;                            
        justify-content:center;
    }

    .home-college-section .know-btn{
        font-size:12px;
        flex:1;                             
        justify-content:flex-end;
    }
}

 /* counter section */

  .trevia-counter-section{
    padding:20px 20px;
    background: var(--primary);
    color:#fff;
    overflow:hidden;
}

.trevia-counter-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.counter-box{
    display:flex;
    align-items:center;
    gap:20px;
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.counter-box.active{
    opacity:1;
    transform:translateY(0);
}

.counter-icon img{
    width:60px;
    height:60px;
    filter:brightness(0) invert(1);
}

.counter-content h2{
    font-size:35px;
    margin:0;
    font-weight:700;
    color:#ffffff;
}

.counter-content p{
    margin:5px 0 0;
    color:#cfd9e3;
    font-size:16px;
}
@media(max-width:992px){
    .trevia-counter-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .trevia-counter-container{
        grid-template-columns:1fr;
        gap:30px;
    }

    .counter-content h2{
        font-size:32px;
    }
}


/* testimonial css */


.testimonial-section{
  background: var(--light);
  overflow:hidden;
}
.section-top{
  margin-bottom:50px;
}

.testimonial-title{
  font-size:40px;
  line-height:1.2;
  color: #061321;
  font-weight:700;
}

.testimonial-title span{
  color: var(--combo);
  position:relative;
}


.testimonial-card{
  background:#fff;
  padding:20px 20px;
  height:100%;
  transition:0.4s;
}

.testimonial-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.quote-icon{
  font-size:30px;
  color: var(--primary);
  margin-bottom:14px;
}
.stars{
  margin-bottom:24px;
}

.stars i{
  color:#ff9800;
  margin-right:2px;
  font-size:15px;
}

.stars .inactive{
  color:#d0d0d0;
}
.testimonial-text{
  font-size:16px;
  line-height:1.8;
  color:#17222e;
  margin-bottom:30px;
  border-bottom:1px solid #dddddd;
  padding-bottom:30px;
}
.client-info{
  display:flex;
  align-items:center;
  gap:16px;
}

.client-info img{
  width:60px;
  height:60px;
  border-radius:50%;
  object-fit:cover;
}

.client-info h4{
  font-size:16px;
  margin-bottom:6px;
  color:#071321;
  font-weight:600;
}

.client-info span{
  font-size:13px;
  color:#7b8794;
}
.swiper{
  padding-bottom:20px;
}
@media(max-width:1200px){

  .testimonial-title{
    font-size:54px;
  }
}

@media(max-width:991px){

  .testimonial-title{
    font-size:36px;
  }

  .testimonial-card{
    padding:18px 18px;
  }
}

@media(max-width:768px){

  .testimonial-title{
    font-size:32px;
    line-height:1.2;
  }

  .testimonial-text{
    font-size:14px;
    line-height:1.7;
  }

  .client-info h4{
    font-size:17px;
  }
}

@media(max-width:576px){

  .testimonial-title{
    font-size:28px;
  }

  .testimonial-card{
    padding:17px 17px;
  }

  .testimonial-text{
    font-size:13px;
  }

  .quote-icon{
    font-size:19px;
  }
}


/* form section start */


.edu-contact-section{
    padding:30px 0;
    background: var(--light);
    overflow:hidden;
    position:relative;
}

.contact-title{
    font-size:40px;
    font-weight:700;
    line-height:1.2;
    color:#111;
    margin-bottom:22px;
}

.contact-title span{
    background: var(--red);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* INFO */
.contact-info-wrapper{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-info-box{
    display:flex;
    gap:18px;
    align-items:center;
    background:#fff;
    padding:18px;
   
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.4s ease;
}

.contact-info-box:hover{
    transform:translateX(8px);
}

.contact-icon{
    width:50px;
    height:50px;
    min-width:60px;
  
    background: var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-icon i{
    color:#fff;
    font-size:20px;
}

.contact-info-box h5{
    font-size:18px;
    font-weight:700;
    margin-bottom:5px;
}

.contact-info-box a,
.contact-info-box p{
    margin:0;
    color:#666;
    text-decoration:none;
}
.contact-right-wrapper{
    position:relative;
}

.edu-form-box{
    background:#fff;
    padding:30px;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
    position:relative;
    z-index:2;
}

.form-top h3{
    font-size:30px;
    font-weight:700;
    margin-bottom:10px;
}

.form-top p{
    color:#666;
    margin-bottom:30px;
}

.edu-form-box .form-control{
    height:50px;
    border:1px solid #e5e5e5;
    box-shadow:none;
    padding:12px 18px;
}

.edu-form-box textarea.form-control{
    height:auto;
}

.edu-form-box .form-control:focus{
    border-color:#ff9800;
}

.apply-btnn{
    width:100%;
    border:none;
    background: var(--primary);
    color:#fff;
    height:50px;
    font-weight:600;
    font-size:16px;
    transition:0.4s ease;
}

.apply-btnn:hover{
    transform:translateY(-4px);
}

@media(max-width:991px){

    .edu-contact-section{
        padding:40px 0;
    }

    .contact-title{
        font-size:38px;
    }

    .contact-left{
        padding-right:0;
    }

}

@media(max-width:768px){

    .edu-contact-section{
        padding:30px 0;
    }

    .contact-title{
        font-size:30px;
    }
    .edu-form-box{
        padding:25px;
        border-radius:22px;
    }

    .form-top h3{
        font-size:24px;
    }
}

@media(max-width:480px){

    .contact-title{
        font-size:26px;
    }

    .edu-form-box{
        padding:20px;
    }

    .contact-info-box{
        padding:15px;
    }

    .contact-icon{
        width:50px;
        height:50px;
        min-width:50px;
    }

    .contact-icon i{
        font-size:20px;
    }
}

/* map */

.edu-map-section{
    width:100%;
    overflow:hidden;
    line-height:0;
}

.edu-map-section iframe{
    width:100%;
    height:300px;
    border: 4px solid var(--combo);
    display:block;
}
@media(max-width:768px){

    .edu-map-section iframe{
        height:250px;
    }

}
















