* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background-color: #fff;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 16px;
}

main span,
section span {
  background: linear-gradient(90deg, #5367FF, #00D09C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  font-weight: inherit;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

/* Shine Effect on Hover */
main span::after,
section span::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width:40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: 0.6s ease;
  pointer-events: none;
}

/* Hover Effect */
main span:hover,
section span:hover {
  filter: brightness(1.15); /* subtle glow */
}

main span:hover::after,
section span:hover::after {
  left: 120%; /* shine sweep movement */
}

.submit-btn {
  padding: 12px 14px;
  border: none;
  color: white;
  font-size: 1.1rem;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  background: linear-gradient(135deg, #ff7b00, #ff3c00, #ff9500);
  background-size: 250% 250%;
  transition: 
    background-position 0.6s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* Hover: Smooth gradient flow */
.submit-btn:hover {
  background-position: 100% 0%;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255,120,0,0.35);
}

/* ===== GLOBAL SCROLLBAR STYLE (Use this anywhere) ===== */

.custom-scrollbar::-webkit-scrollbar {
  height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #ebe8e852;
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #555;
}


.counselling {
  width: 100%;
  height: 18px;
  font-size: 12px;
  background-color: black;
  text-align: center;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  padding:5px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.counselling span:first-child {
  flex: 1;
  text-align: center;
  /* color: #FFF; */
}

.closeCounselling {
  cursor: pointer;
  margin-right: 10px;
  /* color: #000000; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.counselling-button {
  padding: 0px 5px;
  font-size: 12px;
  background-color: transparent;
  border-radius: 4px;
  /* border: 1px solid #fff; */
  color: white;
}

.Nav-one {
  position: fixed;
  top: 0vw;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  background-color: #ffffff;
  z-index: 9999;
  font-size: 1rem;
}

.nav-with-counselling {
  top: 18px;
}

.nav-logo img {
  width: 100px;
}

header ul {
  cursor: pointer;
  width: 100%;
  list-style: none;
  display: flex;
  align-items: center;
}

header li {
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 500;
}

.Nav-one li:first-child {
  margin-right: auto;
}

.Nav-one li:last-child {
  margin-left: auto;
}

.Nav-one li:not(.nav-logo):not(.login-btn):not(.register-btn):not(.hamBurger) {
  display: none;
}



.login-btn {
  background: transparent;
  border: 2px solid #ff7a00;
  color: #000;
}

.register-btn {
  background-color: #ff7a00;
  border: 2px solid #ff7a00;
  margin: 5px;
}

.Nav-one .login-btn,
.Nav-one .register-btn {
  display: none;
}

.hamBurger {
  cursor: pointer;
  display: block;
  margin-left: 0;
}

.sideBar {
  position: fixed;
  top: 80px;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(40px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  transition: 0.4s ease;
}

.sideBar.show {
  right: 0;
}

.sideBar li {
  width: 100%;
  padding: 15px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

main {
  padding: 5vw;
  margin-top: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 120px;
}

.love {
  padding: 1.5rem;
  left: 15px;
  position: relative;
  height: auto;
  min-height: 10px;
  background-color: #fff;
  margin: 0 auto;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.love img {
  width: 60vw;
  margin-bottom: 15px;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2rem);
}

.love h1 {
  margin-bottom: 0.5rem;
}

p {
  font-size: clamp(0.85rem, 2.6vw, 1rem);
  line-height: clamp(1.2rem, 3vw, 1rem);
}

.love::before {
  content: "";
  position: absolute;
  width: calc(100% + 0px);
  height: calc(100% + 60px);
  top: -30px;
  left: -30px;
  background: linear-gradient(152.24deg, #5367ff 1.16%, #00d09c 100%);
  border-radius: 10px;
  z-index: -1;
}

.form-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

h2 {
  font-size: clamp(1.9rem, 5vw, 3.4rem);
}

.form-title {
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 900;
}


form label {
  font-size: clamp(0.85rem, 1vw, 0.5rem);
  margin-bottom: 6px;
  display: block;
}

input,
select {
  width: 100%;
  padding: 12px 8px;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  font-size: clamp(0.85rem, 1vw, 0.5rem);
  outline: none;
  transition: 0.3s;
}

input:focus,
select:focus {
  border-color: #00c89b;
}

.input-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.input-box {
  width: 100%;
}

.full {
  margin-bottom: 4vw;
}

.mobile-state {
  flex-direction: column;
}

.mobile-state .input-box:nth-child(1),
.mobile-state .input-box:nth-child(2) {
  width: 100%;
}

.checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 0.5vw;
}

.checkbox span {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.checkbox input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #01cc9f;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  outline: none;
  margin: 0;
  padding: 0;
  transition: all 0.2s ease;
}

.checkbox input[type="checkbox"]::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #01cc9f;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease;
}

.checkbox input[type="checkbox"]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}

.checkbox a {
  color: #01cc9f;
  text-decoration: none;
  margin-left: 0.5vw;
}


/* ------------------ MILESTONE SECTION FIX ------------------ */

.mileStone {
  padding: 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mileStone h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 2rem;
  font-weight: 700;
}

.milestone-grp {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.milestone-grp > div {
  margin-top: 2rem;
  background: #fff;
  padding: 2.5rem 1rem 1rem;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.milestone-grp h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 0.3rem;
  font-weight: 800;
}

.milestone-grp p {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: #444;
}

.milestone-grp > div::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.m1::before { background-image: url("images/Group.svg"); }
.m2::before { background-image: url("images/track_changes.svg"); }
.m3::before { background-image: url("images/school.svg"); }
.m4::before { background-image: url("images/forum.svg"); }



.why {
  padding: 5vw;
  margin-top: 50px;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-header {
  text-align: center;
  margin-bottom: 20px;
}

.universities {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.universities img {
  width: clamp(350px, 50vw, 460px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  flex-shrink: 0;
}

.universities h2 {
  margin-bottom: 1vw;
}

.universities p {
  margin-bottom: 1vw;
}

.universities ul {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: space-around;
}

.universities ul li {
  font-size: clamp(0.8rem, 1.2vw, 1.1rem);
  display: flex;
  align-items: center;
  gap: 0px;
}

.universities ul li img {
  width: clamp(55px, 3vw, 48px);
  height: auto;
}
.why .prefer{
  margin-top: 10rem;
}
.universities .two-ul {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.universities .two-ul ul{
  gap: 1rem;
}
.universities .two-ul img {
  width: clamp(35px, 3vw, 24px);
}

.google-section {
  padding: 5vw;
  
  text-align: center;

  display: flex;
  flex-direction: column;
  gap: 1.2rem;
.google-text{
  margin-bottom: 2rem;
}
  .google-row {
  display: flex;
  flex-direction: column;

  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.06),
    0 12px 32px rgba(0, 0, 0, 0.08);

  transition: 0.25s ease;
}

.google-card {
  display: flex;
  flex-direction: column;


}

.google-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  
}

.google-header img {
  width: clamp(30px, 3vw, 24px);
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.google-rating h4 {

  font-weight: 700;
}

.google-rating img {
  width: 120px;
}

.google-rating p {
  color: #777;
  font-size: 0.9rem;
}


.reviews-wrapper {
  text-align: left;

  .carousel {
    overflow-x: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 1rem;
    scroll-behavior: smooth;
  }



  .row {
    display: flex;
    gap: 1.5rem;
    width: max-content;
  }

  .card {
    width: 30px;
    background: #fff;
    padding: 1.5rem;
    flex: 0 0 calc(46% - 1rem);
    margin: 10px;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);

  }

  .review-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .review-user {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

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

  .review-user h4 {
    font-size: 16px;
    font-weight: 600;
  }

  .review-user span {
    font-size: 13px;
    color: #666;
  }

  .google-icon {
    width: 26px;
  }

  .stars {
    width: 110px;
    align-self: center;
  }

  .review-text {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
  }
}
}

.people-section {
  padding: 5vw;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  /* gap: 1.2rem; */
.people-text{
  margin-bottom: 2rem;
}
  .carousel {
    width: 100%;
    overflow-x: auto;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding-bottom: 1rem;
    scroll-behavior: smooth;

    
  }

  .people-row {
    position: relative;


  }

  .people-row img {
    width: 340px;
    height: auto;
  }

  .people-detail {
    position: absolute;
    bottom: clamp(2rem, 10vw, 3rem);

    left: 50%;
    transform: translateX(-50%);
    color: #fff;
  }

  .people-detail span {
    margin: 0;
    padding: 5px;
    background-color: #5367ff;
  }

  .people-detail h4 {

    font-size: 1.2rem;
    font-weight: 600;
  }

  .people-detail .stars {
    margin: 10px 0;
    width: 200px;
  }
}

.faq-section {
  padding: 5vw;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 5vw;

  .faq-header{
    text-align: center;
    margin-bottom: 2rem;
  }

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 1rem 0;
}

.faq-item summary {
  cursor: pointer;
   font-size: clamp(1.2rem, 1.2vw, 2.5rem);
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  color: #f97316;
  width: 20px;
  height: 20px;
  border: 2px solid #f97316;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform .35s ease,
    background .25s ease,
    color .25s ease;
}

.faq-item[open] summary::after {
  content: "–";
  transform: rotate(180deg);
}

.faq-item p {
  font-size: clamp(1rem, 1vw, 1.2rem);
 
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateX(-12px);
  clip-path: inset(0 100% 0 0);
  transition:
    opacity 0.45s ease,
    max-height 0.5s ease,
    transform 0.45s ease,
    clip-path 0.5s ease;
}

.faq-item[open] p {
  opacity: 1;
  max-height: 500px;
  transform: translateX(0);
  clip-path: inset(0 0 0 0);
}



}

.signUp-section {
  padding: 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  img {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
}

.footer-section {
  padding: 5vw;
  background: #fff;
  font-family: "Inter", sans-serif;

  
.contact-column {
  text-align: center;
  margin-bottom: 40px;
}

.contact-column p {
  margin: 10px auto 20px;
  color: #555;
  font-size: 0.9rem;
}

.email-form-footer {
  display: flex;
  width: 100%;
  margin: auto;
}

.email-input-footer {
  flex: 1;
  background-color: #f0f4ff;
  border: 1px solid #f0f4ff;
  padding: 12px 15px;
  font-size: 0.9rem;
  border-radius: 6px 0 0 6px;
  outline: none;
}

.send-button-footer {
  background: #ff8c3c;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 0 6px 6px 0;
  font-weight: 600;
  cursor: pointer;
}

.footer-column-grp {
  display: grid;
  gap: 30px;
  text-align: center;
}

.footer-column h3 {}

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

.footer-column ul li {
  margin: 6px 0;
}

.footer-column a {
  text-decoration: none;
  color: #555;
  font-size: 0.9rem;
}

}


@media (min-width: 768px) {

  .Nav-one .login-btn,
  .Nav-one .register-btn {
  
    padding: 5px 16px;
  }

  .love {
    padding: 2rem;
    height: auto;
    min-height: 20px;
    width: 90vw;
  }

  .love::before {
    width: calc(100% + 0px);
    height: calc(100% + 60px);
    top: -30px;
    left: -30px;
  }

  .love img {
    width: 30vw;
  }

  .love p {
    line-height: clamp(1.3rem, 1.8vw, 1.6rem);
  }

  input,
  select {
    padding: 1rem 15px;
  }

  .input-row {
    flex-direction: row;
    gap: 10px;
    margin-bottom: 2vw;
  }

  .full {
    margin-bottom: 2vw;
  }

  .mobile-state .input-box:nth-child(1) {
    width: 40%;
  }

  .mobile-state .input-box:nth-child(2) {
    width: 60%;
  }

  .checkbox span {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  }

  .submit-btn {
    padding: 0.9rem 1rem;
    font-size: 1.1rem;
    width: auto;
  }

  
  .google-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
  }

  .google-btn {
    width: 150px;
  }

  .milestone-grp {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }

  .milestone-grp > div {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }

  .milestone-grp > div::before {
    width: 70px;
    height: 70px;
    top: -35px;
  }


  .footer-container {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    align-items: flex-start;
    gap: 50px;

  
  .contact-column {
    text-align: left;
    margin: 0;
  }

  .contact-column p {
    margin-left: 0;
  }

  .email-form-footer {
    margin-left: 0;
  }

  .footer-column-grp {
    grid-template-columns: repeat(4, 1fr);
    text-align: left;
  }

  }

}


@media (min-width: 1024px) {
  .Nav-one li:not(.nav-logo):not(.login-btn):not(.register-btn):not(.hamBurger) {
    display: block;
  }

  .hamBurger {
    display: none;
  }

  .Nav-one .login-btn,
  .Nav-one .register-btn {
    display: block;
  }

  main {
    margin-top: 70px ;
    flex-direction: row;
    gap: 40px;
  }

  .love {
    padding: 1.5rem;
    height: auto;
    min-height: 220px;
    width: 30vw;
  }

  .love::before {
    width: calc(100% + 0px);
    height: calc(100% + 80px);
    top: -40px;
    left: -40px;
  }

  .love img {
    width: 20vw;
  }

  input,
  select {
    padding: 0.7rem 15px;
  }

  .input-row {
    flex-direction: row;
    gap: 20px;
    margin-bottom: 1.1vw;
  }

  .full {
    margin-bottom: 1.1vw;
  }

  .mobile-state .input-box:nth-child(1) {
    width: 40%;
  }

  .mobile-state .input-box:nth-child(2) {
    width: 60%;
  }

  .checkbox span {
    font-size: 0.9rem;
  }

  .submit-btn {
    padding: 0.6rem 0.9rem;
    font-size: 1.1rem;
    width: auto;
  }

    .milestone-grp {
    max-width: 1500px;
  }
  .why {
    /* padding: 5vw; */
    /* margin-top: 50px; */
    /* display: flex; */
    flex-direction: column;
  }

  .why-header {
    text-align: center;
    margin-bottom: 20px;
  }

  .universities {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    gap: 10rem;
  }

  .special_Case {
    flex-direction: row-reverse;
  }

  .universities img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    flex-shrink: 0;
  }

  .universities h2 {
    margin-bottom: 1vw;
  }

  .universities p {
    line-height: 1.6;
    margin-bottom: 1.5vw;
    margin-top: 1.5vw;
  }

  .universities ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .universities .two-ul {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }

  .universities .two-ul li {
    margin-bottom: 20px;
  }




.google-section {
  padding: 5vw;
  text-align: center;

  display: flex;
  flex-direction: column;
  gap: 1.2rem;

    .google-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
  }

  .google-btn {
    width: 150px;
  }
  
.reviews-wrapper {
 .card { flex: 0 0 calc(61% - 1rem); }
}
}

  
  .faq-section {
  padding: 5vw;
  width: 100%;
  max-width: 1300px;



}


}
