*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Poppins', sans-serif;
}
html {
  scroll-behavior: smooth;
}

/* Top Bar */
  .top-bar{
    background:rgb(55,180,239);
    color:#fff;
    display:flex;
    justify-content:space-between;
    padding:8px 60px;
    font-size:14px;
    }

  .top-bar span{
    margin-right:20px;
    }

  .top-bar i{
    margin-right:6px;
    }

  .top-right i{
    margin-left:20px;
    cursor:pointer;
   color: white;
    }
  .top-left a{
   color: #fff;
    }

    /* Navbar */
    .navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 60px;
    background:#fff;
    box-shadow:0 10px 10px rgba(0,0,0,0.05);
     position: sticky;
  top: 0;
  z-index: 1000;
    }

.logo img{
  height:60px;
}

.nav-links{
  display:flex;
  list-style:none;
  gap:30px;
}

.nav-links li{
  cursor:pointer;
  font-weight:500;
  position:relative;
  text-decoration:none ;
  
}
a {
  text-decoration: none;
    color:rgb(8,151,244);
}
.nav-links li i{
  margin-left:5px;
  font-size:12px;

}

.nav-btn button{
  background:rgb(55,180,239);
  color:#fff;
  border:none;
  padding:10px 20px;
  border-radius:4px;
  font-weight:500;
  cursor:pointer;
  transition:0.3s;
}

.nav-btn button:hover{
  background:#098ac6;
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}
/* Dropdown hidden by default */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  min-width: 180px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}

/* Dropdown items */
.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
}
.fi {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}
.dropdown-menu li a:hover {
  background: #f2f6ff;
  color: #2b6df8;
}

/* Show on hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-toggle{
  display:flex;
  justify-content:space-between;
  align-items:center;
  width:100%;
}

/* arrow animation */
.arrow{
  font-size:12px;
  transition:0.3s;
}

.dropdown.active .arrow{
  transform: rotate(180deg);
}
/* Responsive */
@media(max-width:992px){

  .nav-links{
    position:fixed;
    top:0;
    right:-100%;
    height:100vh;
    width:250px;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    padding:80px 20px;
    gap:25px;
    transition:0.4s ease;
    box-shadow:-5px 0 10px rgba(0,0,0,0.1);
    z-index:999;
  }

  .nav-links.active{
    right:0;
  }

  .nav-btn{
    display:none;
  }

   .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 18px;
    z-index: 1000;
  }

  .dropdown-menu{
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: #f7f9fc;
    border-radius: 8px;
    margin-top: 5px;
    padding: 5px 0;
  }

  .dropdown.active .dropdown-menu{
    display: block;
  }

  .dropdown-menu li a{
    padding: 10px 12px;
    display:block;
    font-size:14px;
    color:#333;
  }

  .dropdown-menu li a:hover{
    background:#eaf1ff;
    color:#2b6df8;
  }
  .top-bar{
    display:none; /* mobile la top bar hide pannalam */
  }
}

/* hero section */


.hero{
  min-height:60vh;
  display:flex;
  align-items:center;
  padding:70px 5%;
  background:linear-gradient(180deg,#f7f9ff 0%,#eef3ff 100%);
  position:relative;
  overflow:hidden;
}

/* Background Glow */
.hero::before{
  content:"";
  position:absolute;
  width:450px;
  height:450px;
  background:radial-gradient(circle,rgba(37,99,235,0.15),transparent 70%);
  right:-150px;
  top:-120px;
  border-radius:50%;
}

.hero-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
  width:100%;
  max-width:1200px;
  margin:auto;
  z-index:2;
}

.hero-text{
  flex:1;
}

.badge{
  display:inline-block;
  background:#e6f0ff;
  color:#2563eb;
  padding:6px 16px;
  font-size:13px;
  border-radius:50px;
  font-weight:500;
  margin-bottom:20px;
}

.hero-text h1{
  font-size:42px;
  font-weight:800;
  color:#1e293b;
  line-height:1.3;
}

.hero-text h1 span{
 background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;;
}

.hero-text p{
  margin-top:20px;
  font-size:16px;
  color:#64748b;
  line-height:1.7;
  max-width:500px;
}

.buttons{
  margin-top:30px;
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.btn-primary{
  background:rgb(55,180,239);
  color:#fff;
  padding:12px 26px;
  border-radius:8px;
  font-weight:500;
  text-decoration:none;
  transition:0.3s ease;
  box-shadow:0 10px 25px rgba(37,99,235,0.3);
}

.btn-primary:hover{
  background:#1e4ed8;
  transform:translateY(-4px);
}

.btn-secondary{
  background:#fff;
  color:#1e293b;
  padding:12px 26px;
  border-radius:8px;
  font-weight:500;
  text-decoration:none;
  border:1px solid #e2e8f0;
  transition:0.3s ease;
}

.btn-secondary:hover{
  background:#f1f5f9;
  transform:translateY(-4px);
}

/* Image Side */
.hero-image{
  flex:1;
  text-align:center;
}

.hero-image img{
  width:80%;
  /* max-width:500px; */

  transition:0.4s ease;
}

.hero-image img:hover{
  transform:translateY(-10px) scale(1.02);
}

/* Responsive */
@media(max-width:992px){
  .hero-container{
    flex-direction:column;
    text-align:center;
  }
  .hero-text p{
    margin:auto;
  }
  .buttons{
    justify-content:center;
  }
}



/* flags */
.flag-section {
  background: #f5f7fb;
  height: 20vh;
  padding: 60px 0;
}

.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-content {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-content img {
  width: 90px;
  border-radius: 50px;
  transition: 0.3s ease;
}

.marquee-content img:hover {
  transform: scale(1.1);
}

/* Infinite Smooth Scroll */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.marquee:hover .marquee-content {
  animation-play-state: paused;
}

/* why eduverse */

.eduverse-journey-section{
  padding:90px 8%;
  /* background:linear-gradient(135deg,#eef3ff,#ffffff); */
}

/* Wrapper */
.eduverse-wrapper{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:70px;
}

/* Image Area */
.eduverse-visual-area{
  flex:1;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 25px 50px rgba(0,0,0,0.08);
  transform:translateY(40px);
  opacity:0;
  animation:eduverseFade 1s ease forwards;
}

.eduverse-main-image{
  width:100%;
  display:block;
  transition:0.6s ease;
}

.eduverse-visual-area:hover .eduverse-main-image{
  transform:scale(1.08);
}

/* Content Area */
.eduverse-content-area{
  flex:1.2;
  transform:translateY(40px);
  opacity:0;
  animation:eduverseFade 1s ease forwards;
  animation-delay:0.3s;
}

/* Heading */
.eduverse-heading{
  font-size:36px;
  margin-bottom:22px;
  background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* Paragraph */
.eduverse-text-block{
  font-size:16px;
  line-height:1.9;
  color:#444;
  margin-bottom:18px;
  text-align: justify;
}

/* Button */
.eduverse-action-button{
  display:inline-block;
  padding:13px 30px;
  background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  color:#fff;
  text-decoration:none;
  border-radius:40px;
  font-weight:600;
  transition:0.3s ease;
  box-shadow:0 12px 25px rgba(26,78,216,0.3);
}

.eduverse-action-button:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 35px rgba(26,78,216,0.4);
}

/* Animation */
@keyframes eduverseFade{
  to{
    transform:translateY(0);
    opacity:1;
  }
}

/* Responsive */
@media(max-width:992px){
  .eduverse-wrapper{
    flex-direction:column;
  }

  .eduverse-heading{
    font-size:24px;
    text-align: center;
  }
  .eduverse-text-block{
  font-size:16px;
  line-height:1.9;
  color:#444;
  margin-bottom:18px;
  text-align: justify;
}
.eduverse-action-button{

  margin-left:30px;
  margin-top: 30px;
  background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  color:#fff;
  text-decoration:none;
  border-radius:40px;
  font-weight:600;
  transition:0.3s ease;
  box-shadow:0 12px 25px rgba(26,78,216,0.3);
}

}

/* stats */

.achievements-section{
  padding:80px 8%;
  background:#f5f9ff;
  text-align:center;
}


.achievements-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  max-width:1200px;
  margin:auto;
}

.achievement-card{
  background:#fff;
  padding:35px 20px;
  border-radius:15px;
  box-shadow:0 15px 30px rgba(0,0,0,0.08);
  transition:0.3s ease;
}

.achievement-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.achievement-icon{
  width:70px;
  height:70px;
  margin:0 auto 20px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  color:#fff;
}

.pink{ background:#ff4d8d; }
.yellow{ background:#f4c430; }
.blue{ background:#00b4ff; }
.red{ background:#e58a8a; }

.achievement-number{
   background: linear-gradient(135deg, #0066ff, #ff6600); 
   -webkit-background-clip: text; 
   background-clip: text; 
   color: transparent; 
   font-size: 32px; 
   font-weight: 700; 
   line-height: 1.2; 
   margin-bottom: 5px;
}

.achievement-text{
  color: #777777; 
  font-size: 16px; 
  font-weight: 500
}

/* Responsive */
@media(max-width:992px){
  .achievements-grid{
    grid-template-columns:repeat(2,1fr);
  }
  
}

@media(max-width:600px){
  .achievements-grid{
    grid-template-columns:1fr;
  }
}

/* courses */
.exam-flip-section{
  padding:100px 8%;
  /* background:#f4f8ff; */
}

.exam-flip-heading{
  text-align:center;
  font-size:34px;
  margin-top: 70px;
  margin-bottom:60px;
   background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.exam-flip-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  max-width:1200px;
  margin:auto;
}

/* Flip Card */
.exam-flip-card{
  perspective:1000px;
  height:400px;
}

.exam-flip-inner{
  position:relative;
  width:100%;
  height:100%;
  transition:transform 1.5s;
  transform-style:preserve-3d;
}

.exam-flip-card:hover .exam-flip-inner{
  transform:rotateY(180deg);
}

.exam-flip-front,
.exam-flip-back{
  position:absolute;
  width:100%;
  height:100%;
  border-radius:20px;
  backface-visibility:hidden;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

/* Front */
.exam-flip-front{
  background:#fff;
}

.exam-flip-front img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.exam-flip-front h4{
  position:absolute;
  bottom:0;
  width:100%;
  background:rgba(0,0,0,0.6);
  color:#fff;
  padding:15px;
  text-align:center;
}

/* Back */
.exam-flip-back{
  background:white;
  color:#fff;
  transform:rotateY(180deg);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding:25px;
  text-align:center;
}

.exam-flip-back h4{
  margin-bottom:15px;
  background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.exam-flip-back p{
  font-size:14px;
  line-height:1.3;
  text-align: justify;
  color: #1d1d1d;
}

/* Responsive */
@media(max-width:992px){
  .exam-flip-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .exam-flip-grid{
    grid-template-columns:1fr;
  }
  .exam-flip-section{
  padding:50px 8%;
  /* background:#f4f8ff; */
}
  .exam-flip-heading{
  text-align:center;
  font-size:25px;
  margin-bottom:60px;
   background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

}

/* flag rotation */


.wrapper{
  width:1200px;
  margin-bottom: 60px;
}

.card{
  background:#f3f3f3;
  border-radius:30px;
  display:flex;
  align-items:center;
  padding:50px;
  position:relative;
  overflow:hidden;
}

/* FLAG IMAGE */
.card-image{
  width:350px;
  height:250px;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(236, 93, 93, 0.3);
}

.card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s ease;
}

/* CONTENT */
.card-content{
  flex:1;
  padding-left:60px;
}

.card-content h2{
  font-size:32px;
  margin-bottom:20px;
  color:#1f1f2e;
}

.card-content p{
  color:#555;
  line-height:1.8;
  max-width:450px;
  font-size:14px;
  text-align: justify;
}

/* DOTS */
.dots{
  position:absolute;
  right:30px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.dot{
  width:8px;
  height:8px;
  background:#bbb;
  border-radius:50%;
  cursor:pointer;
  transition:0.3s;
}

.dot.active{
  height:28px;
  border-radius:10px;
  background:#ff2e2e;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* Large Tablets */
@media (max-width: 1024px){
  .wrapper{
    width: 90%;
  }

  .card{
    padding: 40px;
  }

  .card-image{
    width: 300px;
    height: 220px;
  }

  .card-content{
    padding-left: 40px;
  }

  .card-content h2{
    font-size: 26px;
  }
}


/* Tablets */
@media (max-width: 768px){

  
  .card{
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .card-image{
    width: 100%;
    height: 220px;
  }

  .card-content{
    padding-left: 0;
    padding-top: 30px;
  }

  .card-content p{
    max-width: 100%;
  }

  .dots{
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 25px;
  }

  .dot.active{
    width: 28px;
    height: 8px;
  }
}


/* Mobile */
@media (max-width: 480px){

  .card{
    padding: 20px;
    border-radius: 20px;
  }

  .card-image{
    height: 180px;
    border-radius: 15px;
  }

  .card-content h2{
    font-size: 22px;
  }

  .card-content p{
    font-size: 14px;
    line-height: 1.6;
  }

  .dot{
    width: 6px;
    height: 6px;
  }

  .dot.active{
    width: 22px;
    height: 6px;
  }
}


/* trusted overseas */

.edu-trusted-section{
  padding:100px 8%;
  background:linear-gradient(to right,#f1f5f9,#ffffff);
}

.edu-trusted-wrapper{
  display:flex;
  align-items:center;
  gap:70px;
}

/* LEFT IMAGE */
.edu-image-area{
  position:relative;
  flex:1;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.edu-image-area img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s ease;
}

/* Gradient Overlay */
.edu-image-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,0.6),transparent);
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
  transition:0.4s ease;
}

/* Button */
.edu-image-btn{
  background:#ff6a00;
  color:#fff;
  padding:14px 35px;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  letter-spacing:1px;
  transition:0.3s ease;
}

/* Hover Effects */
.edu-image-area:hover img{
  transform:scale(1.1);
}

.edu-image-area:hover .edu-image-overlay{
  opacity:1;
}

.edu-image-btn:hover{
  background:#0f172a;
}

/* RIGHT CONTENT */
.edu-content-area{
  flex:1;
  background:#fff;
  padding:50px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.edu-content-area h3{
  font-size:28px;
  margin-bottom:30px;
  color:#0f172a;
}

/* Feature List */
.edu-feature-list{
  list-style:none;
}

.edu-feature-list li{
  margin-bottom:18px;
  font-size:17px;
  padding-left:35px;
  position:relative;
  transition:0.3s;
}

/* Animated Tick */
.edu-feature-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#16a34a;
  font-weight:bold;
  font-size:18px;
  transition:0.3s;
}

.edu-feature-list li:hover{
  transform:translateX(8px);
}

/* Responsive */
@media(max-width:992px){
  .edu-trusted-wrapper{
    flex-direction:column;
  }
  .edu-content-area{
  flex:1;
  background:#fff;
  padding:50px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}
.edu-trusted-section{
  padding:50px 8%;
  background:linear-gradient(to right,#f1f5f9,#ffffff);
}
.edu-content-area h3{
  font-size:20px;
  text-align: center;
  margin-bottom:30px;
  color:#0f172a;
}

}



/* faq */


.blue-faq-section{
  padding:100px 8%;
 
}

.blue-faq-container{
  max-width:900px;
  margin:auto;
}

.blue-faq-title{
  text-align:center;
  font-size:32px;
    background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-bottom:50px;
  font-weight:600;
}

/* FAQ Item */
.blue-faq-item{
  background:#ffffff;
  margin-bottom:20px;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

/* Question */
.blue-faq-question{
  width:100%;
  padding:20px;
  border:none;
  background:#00b4ff;
  color:#fff;
  font-size:16px;
  text-align:left;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:15px;
  transition:0.3s;
}

.blue-faq-question:hover{
  background:#1da9d8;
}

/* Number Badge */
.faq-number{
  background:#fff;
  color:#2563eb;
  width:30px;
  height:30px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
}

/* Answer */
.blue-faq-answer{
  max-height:0;
  overflow:hidden;
  background:#f1f5f9;
  padding:0 20px;
  font-size:15px;
  line-height:1.7;
  transition:max-height 0.4s ease, padding 0.4s ease;
}

.blue-faq-item.active .blue-faq-answer{
  max-height:300px;
  padding:20px;
}

/* form */
.contact-section{
  padding:80px 8%;
  /* background:#f1f5f9; */
}

.contact-container{
  display:flex;
  gap:40px;
  max-width:1200px;
  margin:auto;
}

/* LEFT FORM BOX */
.contact-form-box{
  flex:2;
  background:#ffffff;
  padding:40px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.contact-form-box h2{
  font-size:26px;
  color:#1e3a8a;
}

.subtitle{
  margin-bottom:25px;
  color:#64748b;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin-bottom:20px;
}

input, select, textarea{
  width:100%;
  padding:12px;
  border:1px solid #d1d5db;
  border-radius:6px;
  font-size:14px;
}

textarea{
  min-height:120px;
  margin:15px 0;
}

.btn-submit{
  width:100%;
  padding:14px;
  background:#00c3f8;
  color:#fff;
  border:none;
  border-radius:6px;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.btn-submit:hover{
  background:#0384a8;
}

/* RIGHT CONTACT INFO */
.contact-info-box{
  flex:1;
  background:linear-gradient(135deg,#65acf3,#01dcfd);
  color:#fff;
  padding:40px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.contact-info-box h3{
  margin-bottom:30px;
  font-size:22px;
}

.info-item{
  margin-bottom:25px;
}

.info-item h4{
  margin-bottom:8px;
  font-size:20px;
}

.info-item p{
  font-size:14px;
  line-height:1.6;
  color: #4b4b4b;
}

/* Responsive */
@media(max-width:992px){
  .contact-container{
    flex-direction:column;
  }

  .form-grid{
    grid-template-columns:1fr;
  }
  .blue-faq-section{
  padding:50px 8%;
 
}
.blue-faq-title{
  text-align:center;
  font-size:25px;
    background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-bottom:50px;
  font-weight:600;
}
.contact-section{
  padding:80px 8%;
  /* background:#f1f5f9; */
}

}

/* student success */
/* Section Wrapper */
.success-wrapper{
    padding:60px 8%;
    text-align:center;
    background:#f4f8ff;
}
.insta-only{
    width:100%;
    max-width:350px; /* card size adjust pannalaam */
    margin:auto;
    overflow:hidden;
    border-radius:15px;
}

.insta-only iframe{
    width:100%;
    height:350px;   /* height adjust panna image mattum fit agum */
    border:none;
}

/* Heading */
.success-title{
   background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
    font-size:30px;
    margin-bottom:15px;
}

.success-desc{
    max-width:1000px;
    margin:0 auto 50px;
    color:#555;
    line-height:1.7;
}

/* 4 Columns × 2 Rows Grid */
.success-grid{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:30px;
}

/* Card Design */
.success-box{
    background:#ffffff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
    transition:all 0.3s ease;
    text-align:left;
}

.success-box:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

/* Student Image */
.student-photo{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
}

/* Name */
.student-name{
    margin:0;
    font-size:18px;
    color:#0a4db8;
}

/* Destination */
.student-destination{
    font-size:14px;
    color:#888;
}

/* Review Text */
.student-feedback{
    margin-top:12px;
    font-size:14px;
    color:#555;
    line-height:1.6;
}

/* Tablet */
@media(max-width:1024px){
    .success-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media(max-width:600px){
    .success-grid{
        grid-template-columns: 1fr;
    }
    .success-title{
   background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
    font-size:25px;
    margin-bottom:15px;
}

}


/* footer styles */
.footer {
  background: rgb(55,180,239);
  margin-top:0px;
  color: #ffffff;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

/* Wave */
.footer-wave {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 100px;
}

.footer-wave path {
  fill: #ffffff;  /* Top section color */
}

/* Layout */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0px 20px 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #003b5c;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0 15px;
  color: #003b5c;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #f8fbff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  color: #ffffff;
}

.footer-col ul li:hover {
  color: #003b5c;
  padding-left: 5px;
}

/* Buttons */
.footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.btn-whatsapp {
  background: #ffffff;
  color: #003b5c;
  padding: 12px 20px;
  text-align: center;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  background: #f1f5f9;
}

/* Bottom Bar */
.footer-bottom {
  background: #00263a;
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #ffffff;
  border-top: 1px solid rgba(255,255,255,0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-buttons a {
    width: 100%;
  }
}
/* social media icons */

ul {
  list-style: none;
}

.example-2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.example-2 .icon-content {
  margin: 0 10px;
  position: relative;
}
.example-2 .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 15px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
}
.example-2 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}
.example-2 .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 20%;
  color: #4d4d4d;
  background-color: #ffff;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 50%);
}
.example-2 .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
}
.example-2 .icon-content a:hover {
  color: white;
}
.example-2 .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover .filled {
  height: 100%;
}
/* Facebook */
.example-2 .icon-content a[data-social="facebook"] .filled,
.example-2 .icon-content a[data-social="facebook"] ~ .tooltip {
  background-color: #1877f2;
}

/* WhatsApp */
.example-2 .icon-content a[data-social="whatsapp"] .filled,
.example-2 .icon-content a[data-social="whatsapp"] ~ .tooltip {
  background-color: #25D366;
}

/* YouTube */
.example-2 .icon-content a[data-social="youtube"] .filled,
.example-2 .icon-content a[data-social="youtube"] ~ .tooltip {
  background-color: #ff0000;
}

/* Pinterest */
.example-2 .icon-content a[data-social="pinterest"] .filled,
.example-2 .icon-content a[data-social="pinterest"] ~ .tooltip {
  background-color: #E60023;
}

/* X (Twitter) */
.example-2 .icon-content a[data-social="x"] .filled,
.example-2 .icon-content a[data-social="x"] ~ .tooltip {
  background-color: #000000;
}
.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"] ~ .tooltip {
  background: linear-gradient(
    45deg,
    #f9ce34,
    #ee2a7b,
    #6228d7
  );
}
/* WhatsApp Floating Button */
.float-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: 0.3s;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  background: #128C7E;
}


/* Scroll Top Button Stylish */
#scrollTopBtn {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #022130, #034f7d);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  z-index: 1000;
}

#scrollTopBtn:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #0199ff, #00cafc);
}


/* section */

.process-section{
max-width:1100px;
margin:auto;
text-align:center;
}

.title{
font-size:30px;
margin-bottom:10px;
   background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.subtitle{
color:#666;
margin-bottom:40px;
}

/* grid layout */

.process-container{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

/* square cards */

.process-card{
height:220px;
padding:20px;
border-radius:10px;
color:white;
text-align:left;

display:flex;
flex-direction:column;
justify-content:center;

transition:0.35s;
cursor:pointer;
}

/* text style */

.process-card h3{
font-size:18px;
margin-bottom:10px;
}

.process-card p{
font-size:14px;
line-height:1.5;
margin:0;
}

/* hover animation */

.process-card:hover{
transform:translateY(-10px) scale(1.03);
box-shadow:0 15px 30px rgba(0,0,0,0.2);
}

/* colors */

.orange{background:#f39c12;}
.green{background:#27ae60;}
.blue{background:#3498db;}
.purple{background:#8e44ad;}
.pink{background:#e84393;}
.teal{background:#16a085;}
.red{background:#e74c3c;}
.dark{background:#34495e;}

.nav-btn {
  text-align: center;
  margin: 20px;
}

.animated-btn {
  background-color: #25D366; /* WhatsApp green */
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Hover animation */
.animated-btn:hover {
  background-color: #128C7E; /* darker green on hover */
  transform: scale(1.05); /* slightly grow */
  box-shadow: 0 6px 10px rgba(0,0,0,0.2);
}


/* Header */
.header-title {
    font-size: 2rem;
    color: #007acc;
    text-align: center;
    margin-bottom: 50px;
   
    
}
.whyeduverseh3{
    background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  font-size: 30px;
  
}
.whyeduversep{
  width: 1400px;
  text-align: justify;
  font-size: 18px;
  
}


.unih1{
  background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* Grid container */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    width: 100%;
    max-width: 1200px;
}

/* Card style */
.card-item {
    position: relative;
    background: #fff;
    border-radius: 25px;
    padding: 40px 20px 40px 60px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

/* Hover animation */
.card-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 35px rgba(0,0,0,0.25);
    background: linear-gradient(135deg, #87CEFA, #00BFFF);
}

/* Wave hover effect */
.card-item::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.2), transparent 60%);
    transform: scale(0);
    transition: transform 0.5s ease;
    border-radius: 50%;
}

.card-item:hover::before {
    transform: scale(1.5);
}

/* Icon */
.card-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #007acc;
    transition: transform 0.5s ease, color 0.5s ease;
}

/* Icon hover animation */
.card-item:hover .card-icon {
    color: #fff;
    transform: translateY(-50%) scale(1.3) rotate(15deg);
}

/* Text */
.card-text {
    margin: 0;
    font-size: 1rem;
    color: #333;
    transition: color 0.4s ease, transform 0.4s ease;
}

/* Text hover animation */
.card-item:hover .card-text {
    color: #fff;
    transform: translateX(5px);
}

.title{
color:#0a3cff;
margin-bottom:40px;

}

.uni-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
max-width:1100px;
margin:auto;
}

.uni-card{
background:rgba(255,255,255,0.6);
backdrop-filter:blur(10px);
border-radius:15px;
padding:25px;
box-shadow:0 8px 20px rgba(0,0,0,0.1);
transition:all .4s ease;
position:relative;
overflow:hidden;
}

.uni-card::before{
content:"";
position:absolute;
width:120%;
height:120%;
background:linear-gradient(120deg,transparent,#4a7bff,transparent);
top:-100%;
left:-100%;
transform:rotate(25deg);
transition:.6s;
}

.uni-card:hover::before{
top:100%;
left:100%;
}

.uni-card:hover{
transform:translateY(-10px) scale(1.03);
box-shadow:0 15px 30px rgba(0,0,0,0.2);
}

.uni-card h3{
margin-bottom:10px;
color:#fdfdfd;
}

.uni-card p{
color:#555;
margin-bottom:20px;
}

.apply-btn{
background:#0a3cff;
border:none;
color:white;
padding:10px 18px;
border-radius:8px;
cursor:pointer;
font-weight:bold;
position:relative;
overflow:hidden;
}

.apply-btn:hover{
background:#0026c9;
}
.apply-btn{
position:relative;
overflow:hidden;
}

.ripple{
position:absolute;
background:rgba(255,255,255,0.7);
border-radius:50%;
transform:scale(0);
animation:ripple 0.6s linear;
}

@keyframes ripple{
to{
transform:scale(4);
opacity:0;
}
}

.page-heading {
    font-size: 2rem;
    color: #007acc;
    margin-bottom: 50px;
    text-align: center;
}

/* Container grid */
.blob-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

/* Blob card */
.blob-card {
    position: relative;
    background: #fff;
    border-radius: 50% 20% 50% 20% / 20% 50% 20% 50%;
    padding: 50px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
    cursor: pointer;
    overflow: hidden;
}

/* Hover animation */
.blob-card:hover {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    background: linear-gradient(135deg, #87CEFA, #00BFFF);
}

/* Icon */
.blob-icon {
    font-size: 2.5rem;
    color: #007acc;
    margin-bottom: 15px;
    transition: transform 0.5s ease, color 0.5s ease;
}

/* Icon hover */
.blob-card:hover .blob-icon {
    color: #fff;
    transform: rotate(15deg) scale(1.3);
}

/* Text */
.blob-text {
    font-size: 1rem;
    color: #333;
    transition: color 0.4s ease, transform 0.4s ease;
}

/* Text hover */
.blob-card:hover .blob-text {
    color: #fff;
    transform: translateY(-3px);
}

/* Organic floating effect */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.blob-card {
    animation: float 6s ease-in-out infinite;
}

.title{
text-align:center;
color:#0b40ff;
margin-bottom:40px;
}

.uni-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
max-width:1100px;
margin:auto;

}

.uni-card{
position:relative;
height:220px;
border-radius:15px;
overflow:hidden;
cursor:pointer;
box-shadow:0 10px 25px rgba(240, 238, 238, 0.1);
}

.uni-card img{
width:100%;
height:100%;
object-fit:cover;
transition:0.5s;
}

.overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:30px;
color:white;

background:linear-gradient(transparent,rgba(0,0,0,0.8));
}

.overlay h3{

margin:0;
font-size:18px;
}

.overlay p{
font-size:14px;
margin:5px 0 10px;
color: white;
}

.overlay button{
background:#1a49ff;
border:none;
padding:8px 16px;
border-radius:6px;
color:white;
cursor:pointer;
}

.uni-card:hover img{
transform:scale(1.15);
}

.uni-card:hover{
transform:translateY(-8px);
transition:0.4s;
}
.achievepara{
max-width:800px;
margin:auto;
color:#555;
line-height:1.6;
margin-bottom: 30px;

}

/* Section Title */
.orbit-heading {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
   background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* Grid Wrapper */
.orbit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* 👉 box size reduce */
  gap: 20px;
  max-width: 1300px;   /* 👉 full width avoid */
  margin: auto;        /* 👉 center align */
}
/* Unique Card */
.neuro-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Glow Effect */
.neuro-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(79,70,229,0.2);
}

/* Top Animated Line */
.neuro-box::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 4px;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #6366f1, #22d3ee);
  transition: 0.4s;
}

.neuro-box:hover::after {
  width: 100%;
}

/* Icon */
.neuro-icon {
  font-size: 32px;
  color: #6366f1;
  margin-bottom: 12px;
}

/* Title */
.neuro-title {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

/* Description */
.neuro-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}
.eduverse-carousel-title{
  text-align:center;
  font-size:30px;
  margin-bottom:40px;
   background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
    margin-top: 90px;

}
.eduverse-carousel-subtitle{
  text-align:center;
  font-size:18px;
  margin-bottom:40px;
  color:#555;
}
/* Wrapper */
.eduverse-carousel-wrapper{
  padding:40px;
  position:relative;

  max-width: 1380px;

}

/* Track */
.eduverse-carousel-track{
  display:flex;
  gap:20px;
  overflow:hidden;
  scroll-behavior:smooth;
}

/* Card */
.eduverse-card{
  width:calc(25% - 15px);
  height:180px;
  border-radius:18px;
  color:#fff;
  flex-shrink:0;

  /* CENTER CONTENT */
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;

  transition:0.4s;
}

/* .eduverse-card:hover{
  transform:translateY(-10px) scale(1.04);
} */

/* Colors */
.edu-card1{background:linear-gradient(135deg,#4facfe,#00f2fe);}
.edu-card2{background:linear-gradient(135deg,#667eea,#764ba2);}
.edu-card3{background:linear-gradient(135deg,#43cea2,#185a9d);}
.edu-card4{background:linear-gradient(135deg,#f7971e,#ffd200);}
.edu-card5{background:linear-gradient(135deg,#ff758c,#ff7eb3);}
.edu-card6{background:linear-gradient(135deg,#00c6ff,#0072ff);}
.edu-card7{background:linear-gradient(135deg,#30cfd0,#330867);}
.edu-card8{background:linear-gradient(135deg,#5f2c82,#49a09d);}

/* Text */
.eduverse-card h3{
  margin:0;
  font-size:18px;
}
.eduverse-card p{
  font-size:13px;
  margin-top:5px;
}

/* Buttons */
.eduverse-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:#fff;
  border:none;
  width:45px;
  height:45px;
  border-radius:50%;
  cursor:pointer;
  box-shadow:0 5px 15px rgba(0,0,0,0.15);
  font-size:18px;
}

.eduverse-prev{ left:10px; }
.eduverse-next{ right:10px; }

.eduverse-btn:hover{
  background:#0072ff;
  color:#fff;
}

/* Responsive */
@media(max-width:992px){
  .eduverse-card{
    width:calc(50% - 10px);
  }
}

@media(max-width:576px){
  .eduverse-card{
    /* width:80%; */
      width:calc(100% - 16px);
  height:180px;
  border-radius:18px;
  color:#fff;
  flex-shrink:0;

  /* CENTER CONTENT */
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;

  transition:0.4s;
  }
  .eduverse-carousel-title{
  text-align:center;
  font-size:27px;
  margin-bottom:40px;
   background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
    margin-top: 90px;

}
}
.consultation-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

.consultation-modal.show {
  opacity: 1;
  visibility: visible;
}

.consultation-modal-box {
  background: #fff;
  width: 100%;
  max-width: 500px;
  border-radius: 18px;
  padding: 30px 25px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  transform: translateY(20px) scale(0.96);
  transition: 0.3s ease;
}

.consultation-modal.show .consultation-modal-box {
  transform: translateY(0) scale(1);
}

.consultation-modal-box h2 {
  font-size: 30px;
  color: #1d2b4f;
  margin-bottom: 10px;
}

.consultation-modal-box p {
  color: #6b7280;
  font-size: 15px;
  margin-bottom: 20px;
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #333;
  line-height: 1;
}

.consultation-form .form-group {
  margin-bottom: 15px;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d8dee9;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
  box-sizing: border-box;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  border-color: #2ea7f8;
  box-shadow: 0 0 0 3px rgba(46, 167, 248, 0.12);
}

.submit-btn {
  width: 100%;
  border: none;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(90deg, #2ea7f8, #4bb8ff);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(46, 167, 248, 0.25);
}
.modern-service-banner {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(135deg, #065cb7 0%, #09bef0 30%, #25a9eb 65%, #388ef8 100%);
}

/* soft light overlays */
.modern-service-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.14), transparent 28%),
    radial-gradient(circle at 80% 25%, rgba(255,255,255,0.10), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(255,255,255,0.08), transparent 30%);
  pointer-events: none;
}

.modern-service-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  opacity: 0.35;
  pointer-events: none;
}

/* side abstract shapes */
.msb-left-shape,
.msb-right-shape {
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(255,255,255,0.08);
  filter: blur(0px);
  z-index: 1;
}

.msb-left-shape {
  left: -120px;
  top: -70px;
  border-radius: 30px;
  transform: rotate(35deg);
  background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.03));
}

.msb-right-shape {
  right: -110px;
  bottom: -90px;
  border-radius: 40px;
  transform: rotate(28deg);
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
}

.modern-banner-content {
  position: relative;
  z-index: 3;
  padding: 0 20px;
}

.modern-banner-content h2 {
  margin: 0 0 10px;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
}
.modern-banner-content h1 {
  margin: 0 0 0px;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 1500;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.modern-banner-content p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #dbeafe;
  letter-spacing: 0.3px;
}


/* common geo */
.geo {
  position: absolute;
  z-index: 2;
  opacity: 0.9;
}

/* square outline */
.square-outline {
  width: 26px;
  height: 26px;
  border: 3px solid rgba(255,255,255,0.85);
  transform: rotate(18deg);
}

.sq1 {
  top: 38px;
  left: 18%;
}

.sq2 {
  bottom: 34px;
  right: 20%;
  border-color: rgba(191, 219, 254, 0.9);
}

/* circle rings */
.circle-ring {
  width: 24px;
  height: 24px;
  border: 4px solid rgba(255,255,255,0.85);
  border-radius: 50%;
}

.cr1 {
  top: 42px;
  right: 10%;
}

.cr2 {
  bottom: 30px;
  left: 14%;
  border-color: rgba(147, 197, 253, 0.95);
}

/* diamond */
.diamond {
  width: 18px;
  height: 18px;
  background: transparent;
  border: 3px solid rgba(255,255,255,0.85);
  transform: rotate(45deg);
}

.dm1 {
  top: 55%;
  left: 8%;
}

.dm2 {
  top: 22%;
  right: 16%;
  border-color: rgba(186, 230, 253, 0.95);
}

/* zig lines */
.zig {
  width: 55px;
  height: 16px;
  background:
    linear-gradient(-45deg, transparent 8px, rgba(255,255,255,0.85) 8px, rgba(255,255,255,0.85) 11px, transparent 11px) 0 0/18px 16px repeat-x;
}

.zag1 {
  left: 70px;
  top: 110px;
  transform: rotate(-18deg);
}

.zag2 {
  right: 70px;
  bottom: 70px;
  transform: rotate(18deg);
  opacity: 0.75;
}

/* responsive */
@media (max-width: 991px) {
  .modern-service-banner {
    height: 230px;
  }

  .modern-banner-content h2 {
    font-size: 25px;
  }
 .modern-banner-content h1 {
    font-size: 25px;
  }

  .modern-banner-content p {
    font-size: 15px;
  }
  
  .zag2,
  .dm2,
  .sq2,.sq1,.cr1,.cr2,.dm1,.zag1 {
    display: none;
  }
}

@media (max-width: 767px) {
  
  .modern-service-banner {
    height: 180px;
  }

  .modern-banner-content h2 {
    font-size: 25px;
  }
    .modern-banner-content h1 {
    font-size: 25px;
  }

  .modern-banner-content p {
    font-size: 14px;
  }

  .zag2,
  .dm2,
  .sq2,.sq1,.cr1,.cr2,.dm1,.zag1 {
    display: none;
  }

  .msb-left-shape,
  .msb-right-shape {
    width: 180px;
    height: 180px;
  }
}


/* SECTION */
.xzq-edu-block-7812{
    padding:60px 8%;
}

/* CONTAINER */
.xzq-edu-flex-7812{
    display:flex;
    align-items:center;
    gap:40px;
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(12px);
    border-radius:22px;
    box-shadow:0 12px 45px rgba(0,0,0,0.08);
    overflow:hidden;
    transition:0.4s;
}

/* CONTENT */
.xzq-edu-content-7812{
    flex:1;
    padding:45px;
}

.xzq-edu-content-7812 h1{
    font-size:35px;
   background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
    margin-bottom:18px;
}

.xzq-edu-content-7812 p{
    font-size:18px;
    text-align: justify;
    color:#444;
    line-height:1.7;
    margin-bottom:14px;
}

/* IMAGE */
.xzq-edu-image-7812{
    flex:1;
    position:relative;
}

.xzq-edu-image-7812 img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:0 22px 22px 0;
    transition:0.5s;
}

/* OVERLAY EFFECT */
.xzq-edu-image-7812::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to right,rgba(255,255,255,0.2),rgba(0,0,0,0.2));
    border-radius:0 22px 22px 0;
}

/* HOVER */
.xzq-edu-flex-7812:hover img{
    transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:900px){
    .xzq-edu-flex-7812{
        flex-direction:column-reverse;
    }

    .xzq-edu-image-7812 img{
        border-radius:22px 22px 0 0;
    }

    .xzq-edu-image-7812::after{
        border-radius:22px 22px 0 0;
    }
}
/* SECTION */
.uix-wrap-8801{
    padding:60px 5%;
    text-align:center;
}

/* TITLE */
.uix-title-8801{
    font-size:30px;
    font-weight:600;
    margin-bottom:40px;
       background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* TABS */
.uix-tabs-8801{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:40px;
}

.uix-tab-8801{
    padding:12px 22px;
    border-radius:10px;
    border:1px solid #5b7cff;
    cursor:pointer;
    background:#fff;
    transition:0.3s;
}

.uix-tab-8801.active{
    background:rgb(46, 189, 255);
    color:#fff;
}

/* LOGO GRID */
.uix-logos-8801{
    display:none;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.uix-logos-8801.active{
    display:grid;
}

/* LOGO CARD */
.uix-card-8801{
    background:#fff;
    padding:20px;
    border-radius:10px;
    height:90px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.uix-card-8801 img{
    max-width:100%;
    max-height:60px;
}

/* Section */
.whybest-wrapper-unique {
  padding: 60px 40px;
  background: #f8fafc;
  font-family: 'Poppins', sans-serif;
}

/* Title */
.whybest-title-unique {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
   background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* Grid */
.whybest-grid-unique {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.whybest-card-unique {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #e5e7eb; /* 👈 light border */
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.whybest-card-unique:hover {
  transform: translateY(-8px);
  border-color: #2563eb; /* 👈 hover la highlight */
}
/* Number */
.whybest-number-unique {
  font-size: 22px;
  font-weight: bold;
  color: #2563eb;
  margin-bottom: 10px;
}

/* Heading */
.whybest-card-unique h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Text */
.whybest-card-unique p {
  font-size: 14px;
  color: #555;
}

/* Responsive */
@media(max-width: 992px){
  .whybest-grid-unique {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px){
  .whybest-grid-unique {
    grid-template-columns: 1fr;
  }
}

.founder-section-unique {
  display: flex;
 justify-content: center;
  gap: 70px;
  padding: 60px 40px;
  background: #f9fafb;
  font-family: 'Poppins', sans-serif;
}

/* Image */
.founder-img-unique img {
  width: 300px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Content */
.founder-content-unique h3 {
 background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-bottom: 15px;
  font-size: 30px;
}

.founder-content-unique p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
  max-width: 900px;
  text-align: justify;
  font-size: 17px;
}

/* Responsive */
@media(max-width: 768px){
  .founder-section-unique {
    flex-direction: column;
    text-align: center;
  }

  .founder-img-unique img {
    width: 220px;
  }
}.study-wrap-unique {
  padding: 60px 40px;
  background: #f5f7fb;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.study-title-unique {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2563eb;
}
.achievements-title{
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #487cec;
}

/* GRID */
.study-grid-unique {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 👈 4 columns */
  gap: 25px;
}

/* CARD */
.study-card-unique {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.study-card-unique:hover {
  transform: translateY(-6px);
  border-color: #2563eb;
}

.study-card-unique img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.study-card-unique h4 {
  padding: 12px;
  font-size: 18px;
  color: #2563eb;
}

/* Responsive */
@media(max-width: 992px){
  .study-grid-unique {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px){
  .study-grid-unique {
    grid-template-columns: 1fr;
  }
}

.aus-section-unique {
  padding: 60px 40px;
  background: #f9fafb;
  font-family: 'Poppins', sans-serif;
}

/* Title */
.aus-title-unique {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1d4ed8;
  text-align: center;
}

/* List */
.aus-list-unique {
  max-width: 1000px;
  margin: auto;
  display: grid;
  gap: 18px;
}

/* Item */
.aus-item-unique {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: 0.3s;
}

.aus-item-unique:hover {
  border-color: #2563eb;
  transform: translateX(5px);
}

/* Icon */
.aus-icon-unique {
  color: #2563eb;
  font-size: 18px;
  margin-top: 3px;
}

/* Text */
.aus-item-unique p {
  margin: 0;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media(max-width: 576px){
  .aus-title-unique {
    font-size: 26px;
  }
}

.uni-section-unique {
  padding: 60px 20px;
  background: #f5f7fb;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
}

/* INNER CONTAINER */
.uni-container-unique {
  max-width: 950px;
  width: 100%;
}

/* HEADER */
.uni-header-unique {
  text-align: center;
  margin-bottom: 35px;
}

.uni-header-unique h2 {
  font-size: 35px;
   background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-bottom: 8px;
}

.uni-header-unique p {
  font-size: 16px;
  color: #666;
}

/* GRID */
.uni-grid-unique {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.uni-card-unique {
  background: #fff;
  border: 2px solid #3b82f6;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
}

.uni-card-unique:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.uni-card-unique img {
  height: 50px;
  margin-bottom: 15px;
}

.uni-card-unique h4 {
  font-size: 16px;
  color: #2563eb;
  background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-bottom: 5px;
}

.uni-location-unique {
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
}

.uni-tag-unique {
  display: inline-block;
  font-size: 14px;
  padding: 4px 10px;
  background: #e0edff;
  color: #2563eb;
  border-radius: 20px;
  margin-bottom: 8px;
}

.uni-rank-unique {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0;

}

.uni-fee-unique {
  font-size: 12px;
  color: #555;
  margin-bottom: 15px;
}

.uni-btn-unique {
  display: inline-block;
  padding: 8px 16px;
  background: #2563eb;
  color: #fff;
  font-size: 15px;
  border-radius: 6px;
  text-decoration: none;
}

/* Responsive */
@media(max-width: 992px){
  .uni-grid-unique {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px){
  .uni-grid-unique {
    grid-template-columns: 1fr;
  }
  .uni-header-unique h2 {
  font-size: 25px;
   background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-bottom: 8px;
}
}

/* contact us page */

.premiumWrapX{
  padding:80px 8%;
}

.premiumFlexX{
  display:flex;
  gap:50px;
  align-items:center;
  flex-wrap:wrap;
}

/* LEFT */
.premiumLeftX{
  flex:1;
}

.premiumLeftX h2{
  font-size:38px;
  color:#0b3c5d;
  margin-bottom:15px;
}

.premiumLeftX p{
  color:#555;
  line-height:1.8;
}

.premiumPointsX{
  margin-top:25px;
}

.premiumPointsX div{
  background:#e6f7ff;
  padding:12px 18px;
  margin-bottom:10px;
  border-radius:12px;
  font-size:14px;
}

/* FORM */
.premiumFormX{
  flex:1;
  background:#ffffff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
  border:1px solid #e6f2ff;
}

.premiumFormX h3{
  margin-bottom:25px;
  color:#0b3c5d;
  font-size:22px;
}

.premiumInputX{
  width:100%;
  padding:15px 15px;
  margin-bottom:18px;
  border-radius:10px;
  border:1px solid #d9ecff;
  outline:none;
  transition:0.25s;
  font-size:14px;
}

.premiumInputX:focus{
  border-color:#1da1f2;
  box-shadow:0 0 0 3px rgba(29,161,242,0.1);
}

.premiumBtnX{
  width:100%;
  padding:14px;
  background:linear-gradient(45deg,#1da1f2,#0b6fa4);
  color:#fff;
  border:none;
  border-radius:12px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.premiumBtnX:hover{
  transform:translateY(-2px);
}

.mapBoxPremiumX iframe{
  width:80%;
  height:420px;
  border:none;
  border-radius:25px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);

}

/* INFO CARDS */
.infoGridPremiumX{
  display:flex;
 justify-content: center;
  gap:15px;
  margin-top:40px;
}

.infoCardPremiumX{
  background:linear-gradient(to bottom,#c1e6ff,#dcf3ff);
  padding:25px;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
  transition:0.3s;margin-bottom: 50px;
  width: 500px;
}

.infoCardPremiumX:hover{
  transform:translateY(-5px);
}

.infoCardPremiumX h4{
  margin-bottom:10px;
  color:#0b3c5d;
}

.infoCardPremiumX p{
  font-size:14px;
  color:#555;
}

@media(max-width:768px){
  .premiumLeftX h2{
    font-size:28px;
  }
}

/* blog */

  .blog-container2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
  }

  .blog-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 450px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top:40px;
  }
  .blog-date {
    font-size: 12px;
    color: #3b3a3a;
    margin-bottom: 10px;
  }

  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }

  .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .blog-content {
    padding: 15px;
  }

  .blog-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0078d7;
  }

  .blog-description {
    font-size: 14px;
    color: #555555;
    margin-bottom: 15px;
  }

  .blog-button {
    display: inline-block;
    text-decoration: none;
    background-color: #0078d7;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    transition: background-color 0.3s;
  }

  .blog-button:hover {
    background-color: #005fa3;
  }

/* blog1 */

 .blog-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1.blog-title {
            text-align: center;
            font-size: 2.5rem;
            color: #0077c8;
            margin-bottom: 20px;
        }
        h2.country-title {
            font-size: 1.8rem;
            color: #005ea2;
            margin-top: 30px;
            margin-bottom: 10px;
            border-left: 5px solid #0077c8;
            padding-left: 10px;
        }
        h3.sub-heading {
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 8px;
        }
        ul.country-points {
            list-style-type: disc;
            margin-left: 20px;
            margin-bottom: 15px;
        }
        .highlight {
            color: #0077c8;
            font-weight: bold;
        }
        .scholarship-list {
            list-style-type: circle;
            margin-left: 25px;
            margin-bottom: 15px;
        }
        .eduverse-help, .blog-conclusion {
            background-color: #e6f0fb;
            padding: 20px;
            margin-top: 40px;
            border-radius: 10px;
        }
        .eduverse-help h2, .blog-conclusion h2 {
            color: #005ea2;
            margin-bottom: 15px;
        }
        @media (max-width: 600px) {
            h1.blog-title {
                font-size: 2rem;
            }
            h2.country-title {
                font-size: 1.5rem;
            }
        }

        /* blog2 */

          body.consultant-blog {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f7f9fc;
            color: #1a1a1a;
            margin: 0;
            line-height: 1.7;
        }
        .consultant-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1.blog-title {
            text-align: center;
            font-size: 2.5rem;
            color: #006bbd;
            margin-bottom: 20px;
        }
        h2.section-title {
            font-size: 1.8rem;
            color: #004a8f;
            margin-top: 30px;
            margin-bottom: 10px;
            
            padding-left: 10px;
        }
        h3.sub-heading {
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 8px;
        }
        ul.point-list {
            list-style-type: disc;
            margin-left: 20px;
            margin-bottom: 15px;
        }
        .highlight {
            color: #006bbd;
            font-weight: bold;
        }
        .consultant-help, .consultant-conclusion {
            background-color: #e1f0ff;
            padding: 20px;
            margin-top: 40px;
            border-radius: 10px;
        }
        .consultant-help h2, .consultant-conclusion h2 {
            color: #004a8f;
            margin-bottom: 15px;
        }
        @media (max-width: 600px) {
            h1.blog-title {
                font-size: 2rem;
            }
            h2.section-title {
                font-size: 1.5rem;
            }
        }

/* --- GLOBAL DESTINATIONS SECTION --- */
.global-destinations-section {
  padding: 80px 20px;
  background-color: #f4f8fb; /* Matches your country.css background */
  font-family: 'Poppins', sans-serif;
}

.destinations-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.destinations-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #1a4ed8, #00b4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.destinations-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CSS Grid for neat, automatically adjusting columns */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card Styling */
.destination-card {
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 107, 189, 0.15);
}

/* Image & Flag Container */
.dest-image-wrapper {
  position: relative;
  height: 180px;
  width: 100%;
  background-color: #e1f0ff;
}

.dest-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dest-flag-badge {
  
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-size: 24px;
  border: 2px solid #f4f8fb;
}

/* Card Content */
.dest-content {
  padding: 15px 15px 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.dest-content h3 {
  font-size: 22px;
  color: #004a8f;
  margin-bottom: 12px;
  font-weight: 600;
}
/* --- VOICES OF SUCCESS SECTION --- */
.success-voices-section {
  padding: 100px 20px 80px; /* Extra top padding for overlapping avatars */
  background-color: #f4f8fb;
  font-family: 'Poppins', sans-serif;
}

.voices-container {
  max-width: 1300px; /* Wide enough for 4 columns */
  margin: 0 auto;
}

.voices-header {
  text-align: center;
  margin-bottom: 100px;
}

.voices-header h2 {
   background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
    font-size:30px;
    margin-bottom:15px
  
}

.voices-header p {
  color: #666;
  font-size: 16px;
  margin-bottom: 200px;
}

/* 4-Column Grid Setup */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Individual Card Styling */
.voice-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 50px 25px 30px; /* High top padding to make room for avatar */
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #eef2f6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.voice-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 107, 189, 0.12);
}
.voice-card-bottom {
  background: #ffffff;
  border-radius: 16px;
  padding: 50px 25px 30px; /* High top padding to make room for avatar */
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #eef2f6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  margin-top: 150px;
}

.voice-card-bottom:hover {
  transform: translateY(10px);
  box-shadow: 0 15px 40px rgba(0, 107, 189, 0.12);
}

/* Overlapping Circular Avatar */
.voice-avatar {
  width: 200px;
  height: 200px;
  border-radius: 15px;
  position: absolute;
  top: -150px; /* Pulls the image halfway out of the top of the card */
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid #ffffff; /* Creates a clean cutout effect */
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  background: #e1f0ff; /* Fallback color */
  overflow: hidden;
}

.voice-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* Text Content */
.voice-quote {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  font-style: italic;
  margin-top: 25px;
  flex-grow: 1; /* Keeps footer info aligned at bottom if quotes vary in length */
}

.voice-name {
  font-size: 18px;
  font-weight: 600;
  color: #004a8f;
  margin-bottom: 5px;
}
.voice-degree {
  font-size: 12px;
  font-weight: 500;
  color: #555;
  margin-bottom: 10px;
}

.voice-uni {
  font-size: 12px;
  font-weight: 500;
  color: #00b4ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Rules */
@media (max-width: 1100px) {
  /* On small laptops/tablets, switch to 2 columns */
  .voices-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 60px; /* Extra row gap needed for the floating avatars */
  }

  
}

@media (max-width: 650px) {
  /* On mobile phones, switch to 1 column */
  .voices-grid {
    grid-template-columns: 1fr;
    row-gap: 60px;
  }
}

/* --- EDUVERSE LEAD FORM STYLING --- */
.leap-cta-section {
  background: linear-gradient(180deg, #ffffff 0 42%, #00b4ff 42% 100%);
  padding: 80px 5% 70px;
  font-family: 'Poppins', sans-serif;
}

.leap-cta-card {
  max-width: 1300px;
  min-height: 340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 36% 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #d9d5ff;
  border-radius: 26px;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.18);
}

.leap-cta-image {
  height: 100px;
  min-height: 340px;
  position: relative;
  
}

.leap-cta-image img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  object-position: left center;
  display: block;
  transform: scale(1.08);
}

.leap-cta-content {
  max-width: 680px;
  padding: 60px 60px 60px 30px;
  position: relative;
  z-index: 2;
}

.leap-cta-content h2 {
  font-size: 35px;
   background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-bottom: 8px;
}

.leap-cta-content p {
  max-width: 650px;
  color: #30303b;
  font-size: 22px;
  line-height: 1.55;
  margin-bottom: 30px;
}

.leap-cta-button {
  min-width: 245px;
  min-height: 64px;
  padding: 16px 30px;
  border: 0;
  border-radius: 12px;
  background: #5751e9;
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 0 rgba(48, 43, 154, 0.16), 0 13px 24px rgba(58, 53, 196, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.leap-cta-button:hover,
.leap-cta-button:focus-visible {
  background: #4640d8;
  transform: translateY(-3px);
  box-shadow: 0 10px 0 rgba(48, 43, 154, 0.14), 0 16px 30px rgba(58, 53, 196, 0.35);
}

@media (max-width: 992px) {
  .leap-cta-card {
    grid-template-columns: 1fr;
  }

  .leap-cta-image {
    min-height: 260px;
  }

  .leap-cta-image img {
    object-position: left top;
  }

  .leap-cta-content {
    padding: 35px 28px 42px;
    text-align: center;
    margin: 0 auto;
  }

  .leap-cta-content h2 {
    font-size: 34px;
  }

  .leap-cta-content p {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .leap-cta-section {
    padding: 55px 16px;
  }

  .leap-cta-card {
    border-radius: 22px;
  }

  .leap-cta-image {
    min-height: 210px;
  }

  .leap-cta-content h2 {
    font-size: 28px;
  }

  .leap-cta-content p {
    font-size: 16px;
  }

  .leap-cta-button {
    width: 100%;
    min-width: 0;
    font-size: 16px;
  }
}

#eduverse-lead-form-wrapper {
  max-width: 650px;
  margin: 30px auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 74, 143, 0.08);
  border: 1px solid #eef2f6;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Form Top Banner Header */
.edu-form-header {
  padding: 24px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.3px;
  width:100%;
  background:#00b4ff;
  color:#fff;
  cursor:pointer;
  align-items:center;
  gap:15px;
  transition:0.3s;
}

/* Form Inner Layout Spacing */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 30px;
}

/* Layout Directives */
.grid-full {
  grid-column: span 2;
}

.edu-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Input & Dropdown Common Properties */
.edu-label {
  font-size: 13px;
  font-weight: 500;
  color: #4a5568;
}

.edu-input, 
.edu-select,
.edu-phone-input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  background-color: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14px;
  color: #334155;
  outline: none;
  transition: all 0.3s ease;
}

.edu-select {
  cursor: pointer;
}

/* Unified Focus Animations */
.edu-input:focus,
.edu-select:focus,
.edu-phone-input:focus {
  border-color: #006bbd;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 107, 189, 0.15);
}

/* Special Combined Phone Field Wrapper Layout */
.edu-phone-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.edu-country {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 14px;
  background-color: #e2e8f0;
  border: 1px solid #cbd5e1;
  border-right: none;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
}

.edu-phone-wrapper .edu-phone-input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* Checkbox Alignment & Styling */
.edu-terms-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 5px;
}

.edu-terms-wrapper input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #006bbd;
}

.edu-terms-label {
  font-size: 12px;
  color: #475569;
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
}

/* High-Converting CTA Submit Button */
.edu-submit-btn {
  width: 100%;
  height: 60px;
  background:#00b4ff;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  padding:20px;
  display:flex;
  justify-content:center;
}

.edu-submit-btn:hover {
  background: #004a8f;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 74, 143, 0.2);
}

.edu-submit-btn:disabled {
  background: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Responsive Breakpoints */
@media (max-width: 600px) {
  .edu-grid {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 16px;
  }
  .grid-full, .grid-full-tablet {
    grid-column: span 1;
  }
  .edu-form-header {
    font-size: 18px;
    padding: 20px;
    background:#00b4ff;
  }
}
/* Append these safe, unique styles to the bottom of your existing style.css file */

/* ==========================================================================
   BANNER CTA COMPONENT (Isolated Styles)
   ========================================================================== */

/* Split Background Container */
.banner-section-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 24px 80px 24px; /* Added top padding to give the popped-out head breathing room */
    background: linear-gradient(to bottom, #ffffff 52%, #222222 52%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    box-sizing: border-box;
}

/* Main Card Layout */
.banner-section-cta__card {
    background-color: #dcdafe; /* Exact light lavender theme color */
    border-radius: 32px;
    width: 80%;
    max-width: 1050px;
    height: 380px; /* Explicit height to accurately anchor the absolute image positioning */
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    position: relative;
    padding: 40px;
    box-sizing: border-box;
    /* CRITICAL: overflow is NOT hidden here so the head can overlap the top edge */
}


/* Image Wrapper and Overlap Magic */
.banner-section-cta__img-wrapper {
    position: relative;
    height: 160%;
}

.banner-section-cta__popout-img {
    position: absolute;
    /* Position the base line near the bottom area */
    bottom: 10px; 
    left: 20px;
    
    /* Scale the image size relative to the card container */
    height: 100%; 
    object-fit: contain;
    
    /* Shifts exactly 30% of the image's absolute height upward */
    transform: translateY(-25%); 
    
    user-select: none;
    pointer-events: none;
    z-index: 3;
}

/* Typography & Content Layout */
.banner-section-cta__content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 10px;
    z-index: 2;
    box-sizing: border-box;
}

.banner-section-cta__title {
    font-size: 3rem;
    font-weight: 800;
    color: #16161a;
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 0 0 18px 0;
}

.banner-section-cta__desc {
    font-size: 1.15rem;
    font-weight: 400;
    color: #232326;
    line-height: 1.5;
    max-width: 520px;
    margin: 0 0 28px 0;
}

/* Styled Action Button */
.banner-section-cta__btn {
    background-color: #4e4cf5; 
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(78, 76, 245, 0.15);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-section-cta__btn:hover {
    background-color: #3b39df;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(78, 76, 245, 0.25);
}

.banner-section-cta__btn:active {
    transform: translateY(0);
}

/* Responsive Adaptability for Mobile Screens */
@media (max-width: 768px) {
    .banner-section-cta {
        background: linear-gradient(to bottom, #ffffff 40%, #222222 40%);
        padding: 100px 16px;
    }
    
    .banner-section-cta__card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        height: auto;
        gap: 20px;
        padding: 40px 24px;
        text-align: center;
    }

    .banner-section-cta__img-wrapper {
        height: 220px;
        order: 1; /* Shifts layout so text can show cleanly on mobile if needed, or keep image on top */
    }

    .banner-section-cta__popout-img {
        position: relative;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        height: 280px;
        margin-top: -60px;
    }

    .banner-section-cta__content-wrapper {
        align-items: center;
        padding-left: 0;
        order: 2;
    }

    .banner-section-cta__title {
        font-size: 2.2rem;
    }}




/* ==========================================================================
   RESPONSIVE PATCH — Full Multi-Device Support
   Mobile (< 480px) | Tablet (481px–768px) | Laptop (769px–1024px) | Desktop (1025px+)
   ========================================================================== */

/* ── GLOBAL CONTAINER SAFETY ── */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
img, video, iframe {
  max-width: 100%;
}

/* ── TOP BAR ── */
@media (min-width: 993px) and (max-width: 1280px) {
  .top-bar { padding: 8px 30px; font-size: 13px; }
}
@media (min-width: 481px) and (max-width: 992px) {
  .top-bar {
    display: flex;
    flex-wrap: wrap;
    padding: 6px 16px;
    font-size: 12px;
    gap: 4px;
  }
}

/* ── NAVBAR ── */
@media (min-width: 993px) and (max-width: 1280px) {
  .navbar { padding: 12px 30px; }
  .nav-links { gap: 18px; }
  .logo img { height: 50px; }
}
@media (max-width: 480px) {
  .navbar { padding: 12px 16px; }
  .logo img { height: 44px; }
}

/* ── HERO SECTION ── */
@media (min-width: 993px) and (max-width: 1280px) {
  .hero { padding: 60px 4%; }
  .hero-text h1 { font-size: 36px; }
}
@media (min-width: 769px) and (max-width: 992px) {
  .hero { padding: 60px 5%; min-height: auto; }
  .hero-text h1 { font-size: 32px; }
  .hero-text p { font-size: 15px; }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero { padding: 50px 5%; }
  .hero-text h1 { font-size: 28px; }
  .hero-text p { font-size: 14px; }
  .hero-image img { width: 90%; }
}
@media (max-width: 480px) {
  .hero { padding: 40px 4%; }
  .hero-text h1 { font-size: 24px; }
  .hero-text p { font-size: 14px; }
  .buttons { gap: 10px; }
  .btn-primary, .btn-secondary { padding: 10px 18px; font-size: 14px; }
  .hero-image img { width: 100%; }
}

/* ── FLAG SECTION ── */
.flag-section {
  height: auto;
  padding: 30px 0;
}
@media (max-width: 768px) {
  .flag-section { padding: 20px 0; }
  .marquee-content img { width: 65px; }
  .marquee-content { gap: 35px; }
}

/* ── WHY EDUVERSE SECTION ── */
@media (min-width: 993px) and (max-width: 1280px) {
  .eduverse-journey-section { padding: 70px 5%; }
  .eduverse-wrapper { gap: 40px; }
  .eduverse-heading { font-size: 30px; }
}
@media (min-width: 769px) and (max-width: 992px) {
  .eduverse-journey-section { padding: 60px 5%; }
}
@media (max-width: 480px) {
  .eduverse-journey-section { padding: 40px 4%; }
  .eduverse-heading { font-size: 22px; }
  .eduverse-text-block { font-size: 14px; }
  .eduverse-action-button { margin-left: 0; display: block; text-align: center; }
}

/* ── ACHIEVEMENTS SECTION ── */
@media (min-width: 769px) and (max-width: 992px) {
  .achievements-section { padding: 60px 5%; }
  .achievements-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 481px) and (max-width: 768px) {
  .achievements-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 480px) {
  .achievements-section { padding: 40px 4%; }
  .achievement-number { font-size: 26px; }
  .achievement-text { font-size: 14px; }
}

/* ── EXAM FLIP SECTION ── */
@media (min-width: 769px) and (max-width: 992px) {
  .exam-flip-section { padding: 60px 5%; }
  .exam-flip-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .exam-flip-card { height: 320px; }
}

/* ── FLAG ROTATION / DESTINATION SLIDER (wrapper) ── */
.wrapper {
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .wrapper { width: 95%; }
}
@media (max-width: 768px) {
  .wrapper { width: 100%; padding: 0 16px; }
  .card { padding: 24px; border-radius: 20px; }
  .card-content { padding-left: 0; padding-top: 20px; }
  .card-content h2 { font-size: 20px; }
  .card-content p { font-size: 13px; }
  
}
@media (max-width: 480px) {
  .card { padding: 16px; border-radius: 16px; }
  .card-image { height: 160px; }
  .card-content h2 { font-size: 18px; }
}

/* ── TRUSTED OVERSEAS SECTION ── */
@media (min-width: 993px) and (max-width: 1280px) {
  .edu-trusted-section { padding: 70px 5%; }
  .edu-trusted-wrapper { gap: 40px; }
  .edu-content-area { padding: 35px; }
}
@media (max-width: 480px) {
  .edu-trusted-section { padding: 40px 4%; }
  .edu-content-area { padding: 24px 16px; }
  .edu-content-area h3 { font-size: 18px; }
  .edu-feature-list li { font-size: 14px; }
}

/* ── FAQ SECTION ── */
@media (max-width: 480px) {
  .blue-faq-section { padding: 40px 4%; }
  .blue-faq-title { font-size: 22px; }
  .blue-faq-question { font-size: 14px; padding: 14px; }
}

/* ── CONTACT SECTION ── */
@media (min-width: 769px) and (max-width: 992px) {
  .contact-section { padding: 60px 5%; }
  .contact-form-box { padding: 28px; }
  .contact-info-box { padding: 28px; }
}
@media (max-width: 480px) {
  .contact-section { padding: 40px 4%; }
  .contact-form-box { padding: 20px 16px; }
  .contact-info-box { padding: 20px 16px; }
  .contact-form-box h2 { font-size: 20px; }
  .contact-info-box h3 { font-size: 18px; }
}

/* ── SUCCESS STORIES SECTION ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .success-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .success-wrapper { padding: 40px 4%; }
  .success-title { font-size: 22px; }
  .student-name { font-size: 16px; }
}

/* ── FOOTER ── */
@media (min-width: 769px) and (max-width: 992px) {
  .footer-container { grid-template-columns: repeat(2, 1fr); gap: 30px; padding: 0 20px 40px; }
}
@media (max-width: 480px) {
  .footer-container { grid-template-columns: 1fr; gap: 24px; padding: 0 16px 32px; }
  .footer-col h4 { font-size: 16px; }
  .footer-col p { font-size: 13px; }
  .footer-bottom { font-size: 12px; padding: 16px; }
  .footer-wave svg { height: 60px; }
}

/* ── WHYEDUVERSEP (fixed 1400px - CRITICAL FIX) ── */
.whyeduversep {
  width: 100% !important;
  max-width: 1200px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .whyeduversep { font-size: 16px; }
}
@media (max-width: 480px) {
  .whyeduversep { font-size: 14px; }
}

/* ── WHY BEST GRID ── */
@media (min-width: 769px) and (max-width: 992px) {
  .whybest-wrapper-unique { padding: 50px 24px; }
  .whybest-grid-unique { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .whybest-wrapper-unique { padding: 40px 16px; }
  .whybest-title-unique { font-size: 24px; }
  .whybest-grid-unique { grid-template-columns: 1fr; }
  .whybest-card-unique h4 { font-size: 16px; }
}

/* ── FOUNDER SECTION ── */
@media (min-width: 481px) and (max-width: 768px) {
  .founder-section-unique { padding: 40px 20px; gap: 30px; flex-direction: column; align-items: center; text-align: center; }
  .founder-img-unique img { width: 200px; }
  .founder-content-unique h3 { font-size: 24px; }
  .founder-content-unique p { font-size: 15px; }
}
@media (max-width: 480px) {
  .founder-section-unique { padding: 32px 16px; flex-direction: column; text-align: center; }
  .founder-img-unique img { width: 160px; }
  .founder-content-unique h3 { font-size: 22px; }
  .founder-content-unique p { font-size: 14px; }
}

/* ── STUDY GRID (4 columns) ── */
@media (min-width: 769px) and (max-width: 992px) {
  .study-grid-unique { grid-template-columns: repeat(2, 1fr); }
  .study-wrap-unique { padding: 50px 24px; }
}
@media (max-width: 480px) {
  .study-wrap-unique { padding: 40px 16px; }
  .study-title-unique { font-size: 24px; }
  .study-grid-unique { grid-template-columns: 1fr; }
  .study-card-unique img { height: 180px; }
}

/* ── MAP BOX (CRITICAL FIX — 80% iframe width) ── */
.mapBoxPremiumX {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  box-sizing: border-box;
}
.mapBoxPremiumX iframe {
  width: 100% !important;
  max-width: 900px;
  height: 380px;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .mapBoxPremiumX iframe { height: 280px; border-radius: 14px; }
}
@media (max-width: 480px) {
  .mapBoxPremiumX iframe { height: 220px; border-radius: 10px; }
}

/* ── INFO CARDS (CRITICAL FIX — fixed 500px width) ── */
.infoGridPremiumX {
  flex-wrap: wrap;
  padding: 0 16px;
}
.infoCardPremiumX {
  width: auto !important;
  flex: 1 1 280px;
  max-width: 500px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .infoGridPremiumX { gap: 16px; }
  .infoCardPremiumX { flex: 1 1 100%; max-width: 100%; }
}

/* ── CONTACT PAGE PREMIUM SECTION ── */
@media (min-width: 769px) and (max-width: 992px) {
  .premiumWrapX { padding: 60px 5%; }
  .premiumLeftX h2 { font-size: 30px; }
  .premiumFormX { padding: 28px; }
}
@media (max-width: 480px) {
  .premiumWrapX { padding: 40px 16px; }
  .premiumLeftX h2 { font-size: 22px; }
  .premiumFormX { padding: 20px 16px; }
}

/* ── BLOG CARDS (CRITICAL FIX — fixed 450px width) ── */
.blog-card {
  width: 100% !important;
  max-width: 450px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .blog-container2 { flex-direction: column; align-items: center; padding: 0 16px; }
  .blog-card { max-width: 100%; }
}
@media (max-width: 480px) {
  .blog-title { font-size: 17px; }
  .blog-description { font-size: 13px; }
}

/* ── BANNER CTA ── */
@media (min-width: 769px) and (max-width: 992px) {
  .banner-section-cta__card { width: 95%; height: auto; grid-template-columns: 1fr; padding: 30px; }
  .banner-section-cta__title { font-size: 2rem; }
  .banner-section-cta__img-wrapper { height: 200px; }
}
@media (max-width: 480px) {
  .banner-section-cta { padding: 60px 12px 50px; }
  .banner-section-cta__title { font-size: 1.6rem; }
  .banner-section-cta__desc { font-size: 14px; }
  .banner-section-cta__btn { padding: 12px 20px; font-size: 14px; width: 100%; }
}

/* ── LEAP CTA SECTION ── */
@media (min-width: 769px) and (max-width: 992px) {
  .leap-cta-content { padding: 30px 24px 36px; }
  .leap-cta-content h2 { font-size: 26px; }
  .leap-cta-content p { font-size: 16px; }
}
@media (max-width: 480px) {
  .leap-cta-section { padding: 40px 14px 50px; }
  .leap-cta-content h2 { font-size: 22px; }
  .leap-cta-content p { font-size: 14px; }
}

/* ── MODERN SERVICE BANNER ── */
@media (max-width: 480px) {
  .modern-service-banner { height: auto; padding: 36px 20px; }
  .modern-banner-content h2, .modern-banner-content h1 { font-size: 20px; }
  .modern-banner-content p { font-size: 14px; }
  .msb-left-shape, .msb-right-shape { width: 140px; height: 140px; }
}

/* ── CAROUSEL ── */
@media (min-width: 769px) and (max-width: 992px) {
  .eduverse-carousel-wrapper { padding: 24px; }
  .eduverse-card { width: calc(50% - 10px); }
}
@media (max-width: 480px) {
  .eduverse-carousel-title { font-size: 22px; margin-top: 40px; }
  .eduverse-carousel-subtitle { font-size: 15px; }
  .eduverse-carousel-wrapper { padding: 16px; }
}

/* ── VOICES / TESTIMONIALS GRID ── */
@media (min-width: 769px) and (max-width: 1100px) {
  .voices-grid { grid-template-columns: repeat(2, 1fr); row-gap: 60px; }
}
@media (max-width: 480px) {
  .voices-grid { grid-template-columns: 1fr; row-gap: 60px; }
  .voice-avatar { width: 140px; height: 140px; top: -110px; }
  .voice-quote { font-size: 13px; }
  .voice-name { font-size: 16px; }
}

/* ── DESTINATIONS GRID ── */
@media (max-width: 480px) {
  .global-destinations-section { padding: 50px 16px; }
  .destinations-title { font-size: 26px; }
  .destinations-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ── UNI GRID (3-col) ── */
@media (min-width: 769px) and (max-width: 992px) {
  .uni-grid-unique { grid-template-columns: repeat(2, 1fr); }
  .uni-header-unique h2 { font-size: 28px; }
}
@media (max-width: 480px) {
  .uni-header-unique h2 { font-size: 22px; }
  .uni-card-unique h4 { font-size: 14px; }
}

/* ── ORBIT/NEURO GRID ── */
@media (max-width: 480px) {
  .orbit-heading { font-size: 22px; }
  .neuro-box { padding: 18px; }
  .neuro-title { font-size: 17px; }
  .neuro-desc { font-size: 13px; }
}

/* ── LEAD FORM ── */
@media (min-width: 481px) and (max-width: 768px) {
  .edu-grid { grid-template-columns: 1fr 1fr; padding: 20px; }
}
@media (max-width: 480px) {
  #eduverse-lead-form-wrapper { margin: 16px; border-radius: 12px; }
  .edu-form-header { font-size: 16px; padding: 16px; background:#00b4ff;}
  .edu-submit-btn { height: 50px; font-size: 15px; background:#00b4ff; padding: 10px; }
}

/* ── EDUVERSE LEAP FORM ── */
@media (min-width: 769px) and (max-width: 1180px) {
  .eduverse-leap-form-section .edu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .eduverse-leap-form-section .edu-grid { grid-template-columns: 1fr; }
  .eduverse-leap-form-title { font-size: 26px; }
}
@media (max-width: 480px) {
  .eduverse-leap-form-section { padding: 40px 12px 36px; }
  .eduverse-leap-form-title { font-size: 22px; }
  .eduverse-leap-form-desc { font-size: 15px; }
}

/* ── FLOAT WHATSAPP ── */
@media (max-width: 480px) {
  .float-whatsapp { width: 50px; height: 50px; font-size: 24px; bottom: 16px; right: 16px; }
}

/* ── SCROLL TOP BUTTON ── */
@media (max-width: 480px) {
  #scrollTopBtn { width: 40px; height: 40px; font-size: 18px; bottom: 75px; right: 16px; }
}

/* ── MODAL (mobile) ── */
@media (max-width: 480px) {
  .consultation-modal-box { padding: 24px 18px; border-radius: 14px; }
  .consultation-modal-box h2 { font-size: 22px; }
}

/* ── UNI TABS ── */
@media (max-width: 768px) {
  .uix-logos-8801 { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
  .uix-card-8801 { height: 70px; }
}



/* ── PAGE HEADING ── */
@media (max-width: 768px) {
  .page-heading { font-size: 1.5rem; margin-bottom: 30px; }
}
@media (max-width: 480px) {
  .page-heading { font-size: 1.25rem; }
}

/* ── TABLET NAVBAR FIX (481-768px) ── */
@media (min-width: 481px) and (max-width: 768px) {
  .navbar { padding: 12px 20px; }
  .logo img { height: 48px; }
  .menu-toggle { display: block; position: absolute; right: 20px; top: 16px; z-index: 1000; }
  .nav-links { position: fixed; top: 0; right: -100%; height: 100vh; width: 260px; background: #fff; flex-direction: column; padding: 80px 20px; gap: 20px; transition: 0.4s ease; box-shadow: -5px 0 10px rgba(0,0,0,0.1); z-index: 999; }
  .nav-links.active { right: 0; }
  .nav-btn { display: none; }
}

/* services */


.services {
  /* background: #f5f7fb; */
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.services h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.subtitle {
  color: #6b7280;
  margin-bottom: 50px;
  font-size: 15px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.icon {
  width: 45px;
  height: 45px;
  background: rgb(55,180,239);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.icon i {
  color: #fff;
  font-size: 18px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  text-align: justify;
}

/* Responsive */

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services h2 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
  background:linear-gradient(90deg,#1a4ed8,#00b4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
}


/* Form Top Banner Header */
.edu-form-header {
  background: linear-gradient(135deg, #004a8f, #006bbd);
  color: #ffffff;
  padding: 24px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.3px;
  background:#00b4ff;
}

/* Form Inner Layout Spacing */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 30px;
}

/* Layout Directives */
.grid-full {
  grid-column: span 2;
}

.edu-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Input & Dropdown Common Properties */
.edu-label {
  font-size: 13px;
  font-weight: 500;
  color: #4a5568;
}

.edu-input, 
.edu-select,
.edu-phone-input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  background-color: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14px;
  color: #334155;
  outline: none;
  transition: all 0.3s ease;
}

.edu-select {
  cursor: pointer;
}

/* Unified Focus Animations */
.edu-input:focus,
.edu-select:focus,
.edu-phone-input:focus {
  border-color: #006bbd;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 107, 189, 0.15);
}



/* Checkbox Alignment & Styling */
.edu-terms-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 5px;
}

.edu-terms-wrapper input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #006bbd;
}

.edu-terms-label {
  font-size: 12px;
  color: #475569;
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
}



/* Responsive Breakpoints */
@media (max-width: 600px) {
  .edu-grid {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 16px;
  }
  .grid-full, .grid-full-tablet {
    grid-column: span 1;
  }
  .edu-form-header {
    font-size: 18px;
    padding: 20px;
    background:#00b4ff;
  }
}
/* ==========================================================================
   ULTIMATE RESPONSIVE PATCH FOR CONTACT PAGE
   Devices: Laptop (<1024px), Tablet (<768px), Mobile (<480px)
   ========================================================================== */

/* -------------------------------------------
   1. LAPTOP & SMALL DESKTOP (Max: 1024px)
------------------------------------------- */
@media (max-width: 1024px) {
  /* Prevent horizontal scrolling */
  body, html {
    overflow-x: hidden;
    width: 100%;
  }

  /* Make sure the form and text have breathing room */
  .premiumWrapX {
    padding: 60px 5%;
  }

  /* Info cards: Allow them to shrink slightly */
  .infoCardPremiumX {
    width: 30% !important; /* Overrides the fixed 500px */
    padding: 20px;
  }
}

/* -------------------------------------------
   2. TABLET (Max: 992px)
------------------------------------------- */
@media (max-width: 992px) {
  /* Stack the main contact content (Text on top, Form on bottom) */
  .premiumFlexX {
    flex-direction: column;
    gap: 40px;
  }

  .premiumLeftX, .premiumFormX {
    width: 100%;
  }

  /* Info Cards: Switch to a 2-column wrap */
  .infoGridPremiumX {
    flex-wrap: wrap;
    gap: 20px;
  }

  .infoCardPremiumX {
    width: 48% !important;
    margin-bottom: 20px;
  }

  /* Make the map responsive */
  .mapBoxPremiumX iframe {
    width: 90% !important;
    height: 350px;
  }

  /* Footer: 2 Columns */
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* -------------------------------------------
   3. LARGE MOBILE (Max: 768px)
------------------------------------------- */
@media (max-width: 768px) {
  /* Stack the Top Bar Info */
  .top-bar {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 10px;
  }

  /* Banner Text Scaling */
  .modern-service-banner {
    height: auto;
    padding: 40px 15px;
  }
  .modern-banner-content h2 {
    font-size: 28px;
  }
  .modern-banner-content p {
    font-size: 16px;
  }

  /* Info Cards: Full width stacking */
  .infoCardPremiumX {
    width: 100% !important;
  }

  /* Map: Full width */
  .mapBoxPremiumX iframe {
    width: 100% !important;
    height: 300px;
    border-radius: 15px;
  }
}

/* -------------------------------------------
   4. SMALL MOBILE (Max: 480px)
------------------------------------------- */
@media (max-width: 480px) {
  /* Contact Section Adjustments */
  .premiumWrapX {
    padding: 40px 5%;
  }

  .premiumLeftX h2 {
    font-size: 26px;
    text-align: center;
  }

  .premiumLeftX p {
    font-size: 15px;
    text-align: center;
  }

  .premiumFormX {
    padding: 25px 20px;
  }

  .premiumFormX h3 {
    font-size: 20px;
    text-align: center;
  }

  /* Info Grid Adjustments */
  .infoCardPremiumX {
    padding: 20px;
    margin-bottom: 15px;
  }

  .infoCardPremiumX h4 {
    font-size: 18px;
  }

  /* Footer: 1 Column */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }
  
  .footer-col ul li {
    padding: 5px 0;
  }

  .example-2 {
    justify-content: center;
  }
}