/* banner section */
.banner-section{
  width:100%;
  overflow:hidden;
}
.banner-section .carousel-item img{
  width:100%;
  height:400px;
  object-fit:cover;
}
@media(max-width:992px){
  .banner-section .carousel-item img{
    height:350px;
  }
}
@media(max-width:576px){
  .banner-section .carousel-item img{
    height:100%;
    object-fit:cover; 
    background:var(--black);
  }
}

/* small triple card section */

.feature-section{
    background: var(--white);
    position:relative;
}
.feature-wrapper{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:25px;
}
.small-tag{
     display:inline-block;
    background:#eaf1ff;
    color: var(--primary);
    padding:6px 15px;
    border-radius:20px;
    font-size:13px;
    margin-bottom:10px;
}
.feature-card{
    padding:25px;
    border-radius:20px;
    text-align:left;
    transition:0.4s;
    position:relative;
    overflow:hidden;
    min-height:150px;
}
.purple{
   background:#e6e4f5;
    border: 1px solid #8c84d6!important;
   }

.pink{ background:#f3dfdc; border : 1px solid #d98f86; }
.green{ background:#dceae6; border: 1px solid #8fc2b4; }

.feature-card i{
    font-size:30px;
    margin-bottom:10px;
    display:inline-block;
    color:#333;
}
.feature-card h2{
    font-weight:600;
    margin-bottom:5px;
    font-size: 18px;
}
.feature-card p{
    font-size:13px;
    color:#555;
}
.feature-card:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:0 15px 30px rgba(0,0,0,0.08);
}
.feature-card::after{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    background:rgba(255,255,255,0.3);
    border-radius:50%;
    top:-40px;
    right:-40px;
}
@media(max-width:992px){
    .feature-wrapper{
        grid-template-columns: repeat(2,1fr);
    }
    .feature-card:nth-child(2),
    .feature-card:nth-child(5),
    .feature-card:nth-child(3){
        margin-top:0;
    }
}
.main-title{
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    color: #222;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.main-title span{
    color: var(--primary);
    position: relative;
}

.main-title span::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:100%;
    height:2px;
    background: var(--primary);
    border-radius:5px;
}
@media(max-width:768px){
    .main-title{
        font-size: 28px;
    }
}
@media(max-width:576px){
    .feature-wrapper{
        grid-template-columns: repeat(2,1fr);
        gap:12px; 
    }
    .feature-card{
        padding:15px; 
        border-radius:15px;
        min-height:130px;
    }
    .feature-card i{
        font-size:22px;
        margin-bottom:6px;
    }
    .feature-card h2{
        font-size:14px;
    }
    .feature-card p{
        font-size:11px;
        line-height:1.4;
    }
}

/* dynamic university section */

.home-college-section{
    background: var(--light);
}
.home-college-section .small-tag{
    display:inline-block;
    background: var(--white);
    color: var(--primary);
    padding:6px 15px;
    border-radius:20px;
    font-size:13px;
    margin-bottom:10px;
}
.home-college-section .section-title{
    font-size:34px;
    font-weight:700;
}
.home-college-section .section-title span{
    color:var(--primary);
}
.home-college-section .college-card{
    background:var(--white);
    border-radius:10px;
    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;
    border-radius:30px;
    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;
    border-radius:10px;
    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;
    border-radius:30px;
    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);
}
.home-college-section .see-all-btn{
    display:inline-block;
    padding:12px 30px;
    border-radius:30px;
    background: var(--primary);
    color:var(--white);
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}
.home-college-section .see-all-btn:hover{
    color:var(--white);
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}
@media(max-width:768px){
    .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;
    }
}

/* marquee section */

.marquee-section {
  background: var(--white);
}
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 68px;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
  padding-right: 70px;
  transition: color 0.3s ease;
}
.marquee-arrow {
  width: 64px;
  height: 64px;
  border: 2px solid #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.marquee-arrow i {
  font-size: 34px;
  color: #111;
  transition: color 0.3s ease;
}
.marquee-item:hover {
  color: var(--primary);
}
.marquee-item:hover .marquee-arrow {
  border-color: var(--primary);
}
.marquee-item:hover .marquee-arrow i {
  color: var(--primary);
}
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 992px) {
  .marquee-item {
    font-size: 48px;
  }
  .marquee-arrow {
    width: 48px;
    height: 48px;
  }
  .marquee-arrow i {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .marquee-item {
    font-size: 32px;
    gap: 14px;
    padding-right: 40px;
  }
  .marquee-arrow {
    width: 36px;
    height: 36px;
  }
  .marquee-arrow i {
    font-size: 20px;
  }
}

/* about excel */

.about-section{
  background: var(--light);
  padding:80px 0;
  overflow:hidden;
}
.about-img-box{
  position:relative;
  padding:20px;
}
.shape-box{
  position:absolute;
  width:200px;
  height:200px;
  background: #6366F1;
  top:0;
  left:0;
  z-index:0;
}
.main-img{
  position:relative;
  z-index:2;
  width:85%;
}
.small-img{
  position:absolute;
  bottom:-40px;
  right:20px;
  width:220px;
  z-index:3;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* dotted shape */
.dot-shape{
  position:absolute;
  bottom:0;
  left:-25px;
  width:120px;
  height:120px;
  bottom: -40px;
  border:2px dashed #6366F1;
  border-radius:50%;
  z-index:1;
}

.about-content{
  padding-left:40px;
}

.sub-title{
  display:inline-block;
  background: #0d6efd20;
  color: var(--primary);
  padding:6px 12px;
  border-radius:20px;
  font-size:14px;
  margin-bottom:10px;
}

.about-content h2{
  font-size:36px;
  font-weight:700;
  color: var(--primary);
  margin-bottom:20px;
}

.about-content p{
  color:#555;
  line-height:1.7;
  margin-bottom:25px;
}

/* Button */
.about-btn{
  display:inline-block;
  padding:12px 28px;
  background: #6366F1;
  color: var(--white);
  font-weight:600;
  border-radius:4px;
  text-decoration:none;
  transition:.3s;
}

.about-btn:hover{
  background:var(--black);
  color:var(--white);
}

@media(max-width:992px){
  .about-content{
    padding-left:10px;
    margin-top:40px;
    text-align:left;
  }

  .main-img{
    width:100%;
  }
  .small-img{
    position:relative;
    bottom:auto;
    right:auto;
    margin-top:20px;
    width:70%;
  }

  .shape-box{
    width:120px;
    height:120px;
  }
  .dot-shape{
    display:none;
  }

  .about-content h2{
    font-size:28px;
  }
}

/* gallery index section */

.gallery-mosaic-section{
padding:80px 0;
background: var(--white);
position:relative;
overflow:hidden;
}
.mosaic-wrapper{
position:relative;
max-width:1000px;
margin:auto;
}

.mosaic-content{
text-align:center;
position:relative;
z-index:2;
background: var(--white);
border : 2px solid var(--primary);
padding:40px;
border-radius:20px;
box-shadow:0 20px 60px rgba(0,0,0,0.08);
max-width:500px;
margin:auto;
}
.mosaic-content h2{
font-size:34px;
font-weight:700;
color:#222;
margin-bottom:15px;
}
.mosaic-content h2 span{
color:var(--primary);
}
.mosaic-content p{
color:#666;
font-size:15px;
margin-bottom:20px;
line-height:1.6;
}

.mosaic-btn{
display:inline-block;
background:var(--primary);
color:var(--white);
padding:12px 25px;
border-radius:50px;
text-decoration:none;
transition:.3s;
}

.mosaic-btn:hover{
background:#222;
}
.mosaic-images{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}

.mosaic-img{
position:absolute;
width:220px;
height:140px;
border-radius:6px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,0.15);
animation:float 6s ease-in-out infinite;
}

.mosaic-img img{
width:100%;
height:100%;
object-fit:cover;
transition:.4s;
}
.mosaic-img:hover img{
transform:scale(1.1);
}
@keyframes float{
0%{ transform:translateY(0px);}
50%{ transform:translateY(-15px);}
100%{ transform:translateY(0px);}
}

.img1{ top:-40px; left:0; }
.img2{ top:-40px; right:0; }
.img3{ bottom:-40px; left:0px; }
.img4{ bottom: -40px; right:0px; }
.img5{ top:50%; left:-80px; transform:translateY(-50%); }
.img6{ top:50%; right:-80px; transform:translateY(-50%); }


@media(max-width:992px){
.mosaic-img{
width:130px;
height:100px;
}

.img5, .img6{
display:none;
}

}

@media(max-width:576px){
.mosaic-wrapper{
display:flex;
flex-direction:column;
}

.mosaic-images{
order:1;   
}

.mosaic-content{
order:2;   
}
.mosaic-content{
margin-top:20px;
padding:20px;
border-radius:15px;
text-align:center;
}

.mosaic-images{
position:relative;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:12px;
}
.mosaic-img{
position:relative;
width:100%;
height:130px;
border-radius:12px;
overflow:hidden;
animation:none;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}
.img1,
.img2,
.img3,
.img4,
.img5,
.img6{
top:auto;
left:auto;
right:auto;
bottom:auto;
transform:none;
}

}

/* student review section */

.google-review-section {
  width: 100%;
  padding: 60px 10px;
  background: var(--light);
  overflow: hidden;
}

.review-title {
  text-align: center;
  margin-bottom: 50px;
}

.review-title h2 {
  font-size: 32px;
  font-weight: 700;
}

/* Slider */
.review-slider {
  overflow: hidden;
  width: 100%;
}

.review-track {
  display: flex;
  gap: 15px;
}

/* Card */
.review-card {
  min-width: 33.33%;
  padding: 30px 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
}
.client-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.client-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
  object-fit: cover;
  border : 4px solid var(--primary);
}
.c-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}
.extra-info {
  display: flex;
  gap: 10px;
  font-size: 13px;
}

.extra-info span {
  background: var(--light);
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 500;
}
.review-text {
  margin-top: 15px;
  font-style: italic;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .review-card {
    min-width: 50%;
  }
}

@media (max-width: 768px) {
  .review-card {
    min-width: 100%;
  }

  .client-img {
    width: 70px;
    height: 70px;
  }
}

/* faq section */

.faq-map-section{
  padding:60px;
  background: var(--white);
}
.faq-map-container{
  display:flex;
  height:550px;
  border-radius:0px 100px 0px 0px;
  overflow:hidden;
  background:var(--white);
}
.faq-left{
  width:50%;
  padding:40px;
  background: var(--white);
}
.faq-left h2{
  font-size:28px;
  margin-bottom:5px;
}
.faq-left .subtitle{
  font-size:14px;
  color:#777;
  margin-bottom:25px;
}
.faq-box{
  display:flex;
  flex-direction:column;
  gap:15px;
}
.faq-item{
  background:var(--white);
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
  cursor:pointer;
  transition:0.3s;
}
.faq-question{
  padding:15px;
  font-weight:600;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.faq-question span{
  font-size:18px;
  transition:0.3s;
}
.faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 15px;
  font-size:14px;
  color:#555;
  transition:0.4s ease;
}
.faq-item.active .faq-answer{
  max-height:200px;
  padding:15px;
}

.faq-item.active .faq-question span{
  transform:rotate(45deg);
}
.map-right{
  width:50%;
}
.map-right iframe{
  width:100%;
  height:100%;
  border:0;
}
@media(max-width:992px){
  .faq-map-section{
    padding:40px 20px;
  }
  .faq-map-container{
    flex-direction:column;
    height:auto;
    border-radius:20px;
  }
  .faq-left,
  .map-right{
    width:100%;
  }
  .map-right{
    height:300px;
  }
  .faq-left{
    padding:30px 20px;
  }
}

@media(max-width:576px){
  .faq-left h2{
    font-size:22px;
  }

  .faq-left{
    padding:25px 15px;
  }
}

/* form */

.enquiry-section{
  padding:60px;
  background: var(--white);
}

.enquiry-container{
  display:flex;
  height:550px;
  border-radius:100px 0px 0px 0px;
  overflow:hidden;
  background:var(--white);
}

.left-side{
  width:50%;
  position:relative;
}

.left-side img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.left-side::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.5)
  );
}

.overlay-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  color:var(--white);
  z-index:2;
}
.mini-card{
  width:150px;
  height:150px;
  margin:auto;
  margin-bottom:15px;
  border-radius:10px;
  overflow:hidden;
  border:3px solid var(--white);
}

.mini-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.overlay-content h2{
  font-size:28px;
  font-weight:700;
  color:var(--white); 
}

.overlay-content p{
  font-size:14px;
}

.right-side{
  width:50%;
  padding:40px;
}

.right-side h2{
  font-size:28px;
  margin-bottom:5px;
}
.subtitle{
  font-size:14px;
  color:#777;
  margin-bottom:30px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.full{
  grid-column:1 / -1;
}

.form-group label{
  font-size:13px;
  color:#555;
  margin-bottom:5px;
  display:block;
}

.form-group input,
.form-group select{
  width:100%;
  border:none;
  border-bottom:1px solid #ccc;
  padding:8px 0;
  outline:none;
  background:transparent;
  font-size:14px;
}

.form-group input:focus,
.form-group select:focus{
  border-color:#0072ff;
}

.submit-btn{
  grid-column:1 / -1;
  margin-top:20px;
  padding:12px;
  border:none;
  background: var(--primary);
  color:var(--white);
  font-weight:600;
  border-radius:5px;
  cursor:pointer;
}

@media(max-width:992px){
  .enquiry-section{
    padding:40px 20px;
  }

  .enquiry-container{
    flex-direction:column;
    height:auto;
    border-radius:20px; 
  }

  .left-side,
  .right-side{
    width:100%;
  }

  .left-side{
    height:320px;
  }

  .overlay-content h2{
    font-size:24px;
  }

  .mini-card{
    width:120px;
    height:120px;
  }

  .right-side{
    padding:30px 20px;
  }

}

@media(max-width:576px){
  .enquiry-section{
    padding:30px 15px;
  }

  .left-side{
    height:260px;
  }

  .overlay-content{
    width:90%;
  }

  .overlay-content h2{
    font-size:20px;
  }

  .overlay-content p{
    font-size:13px;
  }

  .mini-card{
    width:90px;
    height:90px;
  }

  .form-grid{
    grid-template-columns:1fr;
    gap:15px;
  }

  .right-side{
    padding:25px 15px;
  }

  .right-side h2{
    font-size:22px;
  }

  .submit-btn{
    padding:14px;
    font-size:15px;
  }

}