 h1 {
   font-family: "Inter", sans-serif;
   font-family: 40px;
 }


 .mobile {
   width: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   overflow: hidden;
   padding-top: 50px;
   padding-bottom: 50px;
 }

 .mobile img {
   width: 230px;
 }

 .mobile-txt {
   text-align: center;
   font-size: 30px;
   color: #23465D;
   padding-top: 50px;
 }



 .mobile-txt p {
   margin-top: 10px;
   font-size: 18px;
   color: grey;
 }

 .team-p {
   margin-top: 10px;
 }

 .mobile-2 {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 30px;
   width: 100%;
   margin-top: 100px
 }

 .scroller-container {
   width: 100%;
   overflow: hidden;
 }

 .scroller1,
 .scroller2 {
   display: flex;
   gap: 20px;
   width: max-content;
   white-space: nowrap;
   margin-top: 50px;
 }

 .mobile-txt {
   font-size: 37px
 }

 @keyframes scroll-left {
   0% {
     transform: translateX(0);
   }

   100% {
     transform: translateX(-50%);
   }
 }

 @keyframes scroll-right {
   0% {
     transform: translateX(-50%);
   }

   100% {
     transform: translateX(0);
   }
 }

 .scroller1 {
   animation: scroll-right 30s linear infinite;
 }

 .scroller2 {
   animation: scroll-left 30s linear infinite;
 }

 .scroller-container:hover .scroller1,
 .scroller-container:hover .scroller2

 /* .scroller-container:active .scroller1,
  .scroller-container:active .scroller2 */
   {
   animation-play-state: paused;
   /* Pause on hover or touch */
 }

 /* Pause scrolling when user scrolls */
 .scroller-container {
   pointer-events: auto;
   will-change: transform;
 }

 @media (max-width: 1024px) {
   .mobile {
     height: auto;
   }

   .mobile-txt {
     font-size: 24px;
     margin-top: 100px;
   }

   .scroller-container {
     width: 90%;
   }
 }

 @media (max-width: 768px) {
   .mobile {
     height: auto;
     padding: 10px;
   }




   .mobile-2 {
     gap: 20px;
   }

   .scroller-container {
     width: 95%;
   }

   .scroller1 img,
   .scroller2 img {
     max-width: 300px;
   }
 }

 @media (max-width: 480px) {
   .mobile-txt {
     font-size: 20px;
   }

   .scroller-container {
     width: 100%;
   }

   .scroller1 img,
   .scroller2 img {
     max-width: 200px;
   }
 }



 .review-btn {
   margin-top: 50px;
   display: flex;
   justify-content: center;
   gap: 50px
 }

 .review-btn button {
   padding: 14px;
   background-color: rgba(0, 109, 217, 1);
   color: white;
   border: none;
   transition: 0.3s;
   border-radius: 4px;
   cursor: pointer;
 }

 .review-btn button:hover {
   transform: scale(1.1);
 }

 .review-btn a {
   color: white;
   text-decoration: none;

 }


 .google-reviews {
   text-align: center;
 }

 .google-reviews p {
   font-family: "Roboto", sans-serif;
   font-size: 18px;
   margin-top: 10px;
   color: grey;

 }




 @media screen and (max-width:1550px) {
   h1 {
     font-size: 35px;
   }
 }


 @media screen and (max-width:768px) {
   h1 {
     font-size: 30px;
   }
 }

 @media screen and (max-width:425px) {
   h1 {
     font-size: 25px;
   }
 }










 /* reviews css */



 :root {
   --blue-primary: rgba(0, 109, 217, 1);
   --gray-text: #6C757D;
   --white: #FFF;
   --card-width: 500px;
   --gap: 20px;
 }

 .google-reviews {
   background: rgba(234, 238, 242, 1);
   margin-top: 50px;
   padding: 60px 20px 120px;
   text-align: center;
 }

 .google-reviews h1 {
   font-weight: 600;
   font-size: 2rem;
   margin-bottom: 10px;
 }

 .google-reviews p {
   font-size: 1rem;
   color: var(--gray-text);
   max-width: 700px;
   margin: 0 auto 40px;
   line-height: 1.6;
 }

 /* Carousel wrapper */
 .neetnav-carousel {
   position: relative;
   width: 100%;
   overflow: hidden;
   /* hide overflowing cards */
 }

 /* Track for cards: flex + transform-based sliding */
 #neetnav-track {
   display: flex;
   gap: var(--gap);
   padding: 50px 10px 0;
   transition: transform 0.5s ease-in-out;
   will-change: transform;
 }

 /* Individual review card */
 .neetnav-review-card {
   background: var(--blue-primary);
   color: var(--white);
   flex: 0 0 var(--card-width);
   border-radius: 12px;
   position: relative;
   box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
   transition: transform 0.4s ease, box-shadow 0.3s ease;
 }

 .neetnav-review-card:hover {
   transform: scale(1.04);
   box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
 }

 .neetnav-review-profile {
   position: absolute;
   top: -50px;
   left: 50%;
   transform: translateX(-50%);
   z-index: 2;
 }

 .neetnav-review-profile img {
   width: 100px;
   height: 100px;
   border-radius: 50%;
   object-fit: cover;
   border: 4px solid var(--white);
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
 }

.neetnav-review-details {
  padding: 60px 20px 20px;
  /* instead of height: 280px; */
  max-height: 880px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

/* when you add “expanded” to the card, let it open up */
.neetnav-review-card.expanded .neetnav-review-details {
  max-height: 1000px; /* large enough to fit your longest review */
}


 .neetnav-review-header {
   display: flex;
   justify-content: center;
   align-items: center;
   margin-bottom: 10px;
 }

 .neetnav-review-stars {
   color: #FFD700;
   font-size: 1.3rem;
   margin-right: 6px;
 }

 .neetnav-review-text {
   font-size: 15px;
   line-height: 1.6;
   margin-bottom: 12px;
   font-family: "Roboto", sans-serif;
   opacity: 0.95;
 }

 .neetnav-review-author {
   font-weight: 600;
   font-size: 16px;
   font-family: "Roboto", sans-serif;
 }

 /* Nav buttons */
 .neetnav-btn {
   position: absolute;
   top: 50%;
   font-size: 1.4rem;
   background: rgba(255, 255, 255, 0.9);
   border: none;
   cursor: pointer;
   z-index: 5;
   padding: 10px;
   border-radius: 50%;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
   transition: background 0.2s ease, transform 0.2s ease;
   color:rgb(44, 44, 44);
   
 }

 .neetnav-btn:hover {
   background: #fff;
   transform: scale(1.1);
 }

 .neetnav-btn--prev {
  left: 15px;
   width: 45px;
 }

 .neetnav-btn--next {
   right: 19px;
   width: 45px;
 }

 /* CTA buttons below */
 .neetnav-cta {
   display: flex;
   justify-content: center;
   gap: 1rem;
   margin-top: 40px;
   flex-wrap: wrap;
 }

 .neetnav-cta__btn {
   padding: 10px 20px;
   background: var(--blue-primary);
   color: var(--white);
   border: none;
   border-radius: 6px;
   font-size: 1rem;
   text-decoration: none;
   transition: 0.3s ease;
 }

 .neetnav-cta__btn:hover {
   background: #fff;
   color: var(--blue-primary);
   border: 2px solid var(--blue-primary);
 }

 /* Fade-in animation */
 .neetnav-fade-slide {
   animation: neetnavFadeIn 0.4s ease;
 }

 @keyframes neetnavFadeIn {
   from {
     opacity: 0;
     transform: translateX(40px);
   }

   to {
     opacity: 1;
     transform: translateX(0);
   }
 }

 /* Responsive tweaks */
 @media (max-width: 768px) {
   :root {
     --card-width: 85vw;
   }

   .neetnav-btn {
     font-size: 1.5rem;
     padding: 8px;
   }

   .neetnav-review-profile img {
     width: 80px;
     height: 80px;
   }

   .neetnav-review-text {
     font-size: 14px;
   }

   .neetnav-review-stars {
     font-size: 1.1rem;
   }

   .neetnav-review-details {
     padding: 60px 12px 16px;
   }
 }

 @media screen and (max-width:480px){
  .neetnav-btn {
    margin-top: 100px;
  }
 }

 /* Read More button inside cards */
 .read-more-button {
  padding-top: 20px;
 }


 .read-more-button button {
   background-color: #fff;
   padding: 10px;
   color: #000;
   border: none;
   border-radius: 4px;
   position: absolute;
   bottom: 10px;
   left: 50%;
   transform: translateX(-50%);
   cursor: pointer;
   transition: all 0.3s ease;
   z-index: 1;
 }

 .read-more-button button:hover {
   background-color: var(--blue-primary);
   color: #fff;
   border: 2px solid #fff;
 }












 .frequently {
   margin-top: 20px;
 }

 .the-questions {
   background: #f9f9f9;
   padding: 15px;
   margin-bottom: 10px;
   border-radius: 5px;
   cursor: pointer;
   display: flex;
   align-items: center;
   border: 1px solid #ddd;
 }

 .the-questions:hover {
   background: #eef2f3;
 }

 .the-questions i {
   margin-right: 10px;
   color: #007BFF;
 }

 .answer {
   max-height: 0;
   overflow: hidden;
   opacity: 0;
   transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, padding 0.3s ease-in-out;
   background: #eef2f3;
   border-left: 3px solid #007BFF;
   margin-top: -5px;
   border-radius: 5px;
   padding: 0 15px;
   width: 100%;
   max-width: 1160px;
   font-family: "Roboto", sans-serif;
 }



 .answer.show {
   max-height: 200px;
   opacity: 1;
   padding: 10px 15px;
   line-height: 24px;
   font-size: 18px;
 }