/* CSS Custom Properties for consistent theming */
:root {
  --primary-color: #4fc3d7;
  --primary-dark: #3aafcc;
  --purple-primary: #8b5cf6;
  --purple-dark: #7c3aed;
  --secondary-color: #f8f9fa;
  --text-primary: #2c3e50;
  --text-secondary: #6c757d;
  --text-light: #adb5bd;
  --white: #ffffff;
  --warning: #ffc107;
  --border-color: #e9ecef;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins",
    sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 70px;
}

/* Header Styles */
.header {
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

.logo-animation {
  animation: logoFloat 3s ease-in-out infinite;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0.5rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Dropdown arrow positioning */
.dropdown-toggle::after {
  display: none;
}

.dropdown-arrow {
  font-size: 0.75rem;
  transition: var(--transition);
}

.nav-link.dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

/* Mobile responsive styles */
.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 20px;
  position: relative;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: var(--transition);
}

.navbar-toggler span:nth-child(1) {
  top: 0;
}

.navbar-toggler span:nth-child(2) {
  top: 8px;
}

.navbar-toggler span:nth-child(3) {
  top: 16px;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  left: -20px;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

.cta-button {
  font-weight: bold;
  background-color: rgb(211, 211, 211);
  border-radius: 20px;
}

/* Mobile menu adjustments */
@media (max-width: 991.98px) {
  .navbar-nav {
    padding: 1rem 0;
  }

  .nav-item {
    margin: 0.5rem 0;
    width: 100%;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    justify-content: flex-start;
    width: 100%;
  }

  .nav-link:hover {
    background-color: rgba(58, 134, 255, 0.1);
  }

  .dropdown-menu {
    border: none;
    box-shadow: none;
    padding-left: 1.5rem;
    background-color: rgba(58, 134, 255, 0.05);
    width: 100%;
  }

  .dropdown-item {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
  }

  .cta-button {
    /* border: 2px solid rgb(253, 142, 142); */
    background-color: rgb(211, 211, 211);
    margin-top: 1rem;
    text-align: center;
    display: block;
    width: 100%;
    margin: 0 auto;
  }

  /* Fix alignment for all nav items */
  .navbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    padding-left: 1rem;
  }

  /* Adjust logo size on mobile */
  .navbar-brand img {
    height: 50px;
  }

  /* Ensure all nav items have the same alignment */
  .navbar-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Desktop specific styles */
@media (min-width: 992px) {
  .dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
  }

  .dropdown-item {
    padding: 0.5rem 1rem;
    transition: var(--transition);
  }

  .dropdown-item:hover {
    background-color: rgba(58, 134, 255, 0.1);
  }

  .nav-link .dropdown-arrow {
    margin-left: 0.25rem;
  }

  /* Desktop specific alignment */
  .navbar-nav .nav-item .nav-link {
    justify-content: center;
  }
}

.success-stories-section {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background-color: #fafafa;
  box-sizing: border-box;
}

.success-stories-section * {
  box-sizing: border-box;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header Section */
.header-section {
  padding: 4rem 0;
  /* margin-bottom: 4rem; */
}

.text-center {
  text-align: center;
}

.page-title {
  /* border: 2px solid; */
  text-align: left;
  font-size: 3rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 1.5rem;
  font-family: "poppins";
}

.description-container {
  max-width: 95%;
  /* border: 2px solid; */
  text-align: left;
}

.description-paragraph {
  font-size: 1.125rem;
  color: #000000;
  /* margin-bottom: 1rem; */
  line-height: 1.7;
  font-family: "roboto";
  font-weight: 400;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  max-width: 88rem;
  margin: 0 auto;
  padding-bottom: 4rem;
}

/* Testimonial Card */
.testimonial-card {
  background: white;
  border-radius: 2rem;
  padding: 1.5rem;
  /* box-shadow: 8px 8px  rgba(0, 0, 0, 0.2); */
  border: 3px solid #231f20;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 10px;
}
.testimonial-card:hover {
  background: white;
  border-radius: 2rem;
  padding: 1.5rem;
  box-shadow: 8px 8px  rgba(0, 0, 0, 0.2);
  border: 3px solid #231f20;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 10px;
}

/* Card Header */
.card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

/* Student Avatar */
.student-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Student Info */
.student-info {
  flex: 1;
}

.student-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0rem;
  font-family: "poppins";
}

/* Star Rating */
.star-rating {
  display: flex;
  gap: 0;
  margin-top: -10px;
}

.star {
  color: #d1d5db;
  font-size: 1.5rem;
}

.star.filled {
  color: #fbbf24;
}

/* Testimonial Content */
.testimonial-content {
  color: #000000;
  line-height: 1.6;
  font-size: 0.95rem;
  font-family: "roboto";
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-title {
    font-size: 2.25rem;
  }

  .description-paragraph {
    font-size: 1rem;
  }

  .header-section {
    padding: 2rem 0;
    margin-bottom: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-bottom: 2rem;
  }

  .container {
    padding: 0 0.75rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Hero Banner Styles */
.hero-banner {
  background: #312a45;
  padding: 40px 0;
  margin: 40px auto;
  position: relative;
  border-radius: 16px;
  position: relative;
  opacity: 85%;
}

/* .hero-banner .img-review1 {
  position: absolute;
  right: -5%;
  transform: rotate(-30deg);
  bottom: -20%;
  animation: logoFloat 3s ease-in-out infinite;
}

.hero-banner .img-review2 {
  position: absolute;
  top: -38px;
  transform: rotate(30deg);
  left: 50%;
  animation: logoFloat 3s ease-in-out infinite;
} */
 @keyframes logoFloat1 {
  0%, 100% {
    transform: translateY(0) rotate(-30deg);
  }
  50% {
    transform: translateY(-10px) rotate(-30deg);
  }
}

@keyframes logoFloat2 {
  0%, 100% {
    transform: translateY(0) rotate(30deg);
  }
  50% {
    transform: translateY(-10px) rotate(30deg);
  }
}

 .hero-banner .img-review1 {
  position: absolute;
  right: -5%;
  bottom: -20%;
  animation: logoFloat1 3s ease-in-out infinite;
}

.hero-banner .img-review2 {
  position: absolute;
  top: -38px;
  left: 50%;
  animation: logoFloat2 3s ease-in-out infinite;
}


.hero-title-2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 30px;
  text-align: left;
  padding-bottom: 30px;
}

.hero-subtitle {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 0 30px;
  text-align: justify;
}

.btn-consultation-2 {
  background: #a25dd6;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  padding: 16px 26px;
  border: none;
  margin-right: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  border-radius: 0px;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: slideInUp 0.8s ease-out 0.9s forwards;
  transform: translateY(20px);
}

.fa-arrow-right {
  width: 20px;
}
.btn-consultation-2:hover {
  background: #a25dd6;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #a25dd6;
  color: white;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero-banner {
    padding: 40px 0;
    max-width: 90%;
  }

  .hero-title-2 {
    font-size: 2rem;
    text-align: center;
    margin: 0 0 20px 0;
  }

  .hero-subtitle {
    font-size: 1rem;
    text-align: justify;
    margin: 0 15px 20px 15px;
  }

  .btn-consultation-2 {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .text-end {
    text-align: center !important;
  }

  .shape-1 {
    width: 150px;
    height: 150px;
    top: -30px;
    right: 5%;
  }

  .shape-2 {
    width: 100px;
    height: 100px;
    bottom: -20px;
    left: 3%;
  }

  .shape-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 3%;
  }
}

@media (max-width: 575.98px) {
  .hero-banner {
    padding: 30px 0;
    max-width: 95%;
    border-radius: 12px;
  }

  .hero-title-2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 10px 15px 10px;
    text-align: justify;
  }

  .btn-consultation-2 {
    padding: 12px 24px;
    font-size: 0.85rem;
    margin: 0 auto;
  }

  .shape-1 {
    width: 100px;
    height: 100px;
    top: -20px;
  }

  .shape-2 {
    width: 80px;
    height: 80px;
    bottom: -15px;
  }

  .shape-3 {
    width: 60px;
    height: 60px;
    top: 65%;
  }
}

/* Footer Styles */
/* 
.footer-section {
  background: rgb(203 164 235 / 15%);
  padding: 60px 0 0;
  color: #000;
}

.footer-brand {
  margin-bottom: 30px;
}

.logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.logo-icon {
  margin-right: 12px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #8b5cf6;
}

.footer-description {
  text-align: justify;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #000;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #8b5cf6;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #7c3aed;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #8b5cf6;
}

.contact-info {
  font-size: 0.95rem;
}

.contact-item {
  margin-bottom: 15px;
  color: #000000;
}

.contact-item strong {
  color: #000000;
} */

/* Quote Section Styles */
.quote-section {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  border-left: 4px solid #8b5cf6;
}

.quote-mark {
  font-size: 3rem;
  color: #8b5cf6;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.quote-content {
  font-size: 1.1rem;
  line-height: 1.4;
}

.quote-text-1 {
  color: #4a5568;
  font-weight: 500;
}

.quote-text-2 {
  color: #8b5cf6;
  font-weight: 700;
  font-style: italic;
}

.quote-text-3 {
  color: #8b5cf6;
  font-weight: 700;
}

.quote-attribution {
  color: #718096;
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 5px;
}

.success-description {
  font-size: 0.95rem;
  color: #718096;
  margin-bottom: 25px;
}

.btn-journey {
  /* background: #8b5cf6; */
  color: #000000;
  border: 2px solid black;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-journey:hover {
  background: #7c3aed;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

Footer Bottom
.footer-bottom {
  background: #e2e8f0;
  padding: 20px 0;
  margin-top: 50px;
}

.footer-copyright {
  /* color: #718096; */
  font-size: 0.9rem;
  padding-bottom: 18px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2rem;
    text-align: center;
  }

  .hero-subtitle {
    text-align: center;
    margin-bottom: 30px;
  }

  .btn-consultation {
    display: block;
    text-align: center;
    margin: 0 auto;
  }

  .footer-section {
    padding: 40px 0 0;
  }
}

@media (max-width: 767.98px) {
  .hero-banner {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-consultation {
    font-size: 1rem;
    padding: 12px 25px;
  }

  .quote-section {
    padding: 20px;
  }

  .quote-mark {
    font-size: 2.5rem;
  }

  .quote-content {
    font-size: 1rem;
  }

  .social-links {
    justify-content: center;
  }

  .footer-section {
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }

  .contact-info {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .quote-section {
    padding: 15px;
  }

  .btn-consultation {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .btn-journey {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

/* Hover effects for better interactivity */
.footer-links a,
.contact-item {
  transition: all 0.3s ease;
}

.footer-links a:hover {
  padding-left: 5px;
}

/* Focus states for accessibility */
.btn-consultation:focus,
.btn-journey:focus,
.social-link:focus {
  outline: 2px solid #8b5cf6;
  outline-offset: 2px;
}

.review-main-container {
  background: linear-gradient(to bottom, #a25dd649 5%, #ffa2f400);
  padding: 0px !important;
}