/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #2563EB;
  --primary-dark: #1E40AF;
  --primary-light: #3B82F6;
  --secondary: #0EA5E9;
  --accent: #06B6D4;
  --text-dark: #1E293B;
  --text-gray: #64748B;
  --text-light: #94A3B8;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --border-color: #E2E8F0;
  --success: #10B981;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--bg-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header Styles */
.site-header {
  background: var(--bg-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 16px 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  /* font-size: 24px;
  font-weight: 700;
  color: var(--primary-blue); */
 width: 220px;
}
.logo img{
      max-width: 190px;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;

}

.logo a:hover {
  opacity: 0.8;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.phone-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  font-weight: 600;
}

.phone-info svg {
  color: var(--primary-blue);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

/* Button Styles */
.btn-primary, .btn-secondary {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--primary-blue);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 40px;
  font-size: 18px;
}

.btn-block {
  width: 100%;
  display: block;
}

/* Hero Section */

/* New Hero Section Design */
.hero-section-new {
  padding: 80px 0;
  background-image: url('https://images.unsplash.com/photo-1615474292303-d35ea46de8d1?crop=entropy&cs=srgb&fm=jpg&ixid=M3w3NDQ2MzR8MHwxfHNlYXJjaHw0fHx1bml2ZXJzaXR5JTIwbGlicmFyeXxlbnwwfHx8Ymx1ZXwxNzYyMzQ2MTg5fDA&ixlib=rb-4.1.0&q=85');
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 700px;
}

.hero-background-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.85) 0%, rgba(37, 99, 235, 0.75) 100%);
  z-index: 1;
}

.hero-cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
  align-items: stretch;
}

/* Left Card */
.hero-card-left {
  background: white;
  padding: 48px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-title-new {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero-highlight-blue {
  color: var(--primary-blue);
}

.hero-subtitle-new {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-feature-box {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border: 2px solid var(--primary-blue);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 28px;
}

.feature-box-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 6px;
}

.feature-box-subtitle {
  font-size: 14px;
  color: var(--text-gray);
  margin: 0;
}

.hero-benefits-list {
  list-style: none;
  margin-bottom: 32px;
}

.hero-benefits-list li {
  padding-left: 28px;
  margin-bottom: 14px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark);
}

.hero-benefits-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-size: 20px;
  line-height: 1;
}

.hero-benefits-list li strong {
  color: var(--primary-blue);
}

.hero-university-logos {
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  align-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #1E293B 0%, #1E40AF 100%);
  border-radius: 50px;
}

.uni-logo-item {
  font-size: 11px;
  font-weight: 700;
  color: white;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

/* Right Card */
.hero-card-right {
  background: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
  padding: 0;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.form-banner-yellow {
  background: linear-gradient(135deg, #FCD34D 0%, #FDE68A 100%);
  padding: 32px 32px 28px;
  text-align: center;
  position: relative;
}

.form-banner-yellow h3 {
  font-size: calc(20px + (30 - 20) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.form-banner-yellow p {
  font-size: 14px;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.5;
}

.hero-form-new {
  padding: 48px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-form-new input[type="text"],
.hero-form-new input[type="email"],
.hero-form-new input[type="tel"] {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  background: white;
}

.hero-form-new input::placeholder {
  color: #9CA3AF;
}

.phone-input-wrapper-new {
  display: flex;
  gap: 8px;
}

.country-code-select {
  width: 100px;
  padding: 14px 8px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  cursor: pointer;
}

.phone-input-wrapper-new input[type="tel"] {
  flex: 1;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 14px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-checkbox label {
  cursor: pointer;
  user-select: none;
}

.btn-form-yellow {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #FCD34D 0%, #FDE68A 100%);
  color: var(--text-dark);
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.btn-form-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(252, 211, 77, 0.4);
}

/* Old Hero Section - Keep for reference */

.hero-section {
  padding: 100px 0;
  background-image: url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?w=1920&h=1080&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 650px;
}

.hero-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.92) 0%, rgba(37, 99, 235, 0.88) 100%);
  z-index: 1;
}

.hero-content-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left {
  color: white;
}

.hero-main-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}

.title-line {
  display: block;
  color: white;
}

.title-highlight {
  color: #FCD34D;
  font-size: 60px;
}

.hero-supporting-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 600px;
}

.hero-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary {
  background: white;
  color: var(--primary-blue);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary {
  background: #FCD34D;
  color: var(--primary-dark);
}

.btn-hero-secondary:hover {
  background: #FDE68A;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(252, 211, 77, 0.4);
}

/* Hero Form Card */
.hero-right {
  position: relative;
  z-index: 2;
}

.hero-form-card-new {
  background: white;
  padding: 40px 36px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.form-card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--text-dark);
  text-align: center;
}

.form-group-new {
  margin-bottom: 20px;
}

.form-group-new input,
.form-group-new select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

.form-group-new input:focus,
.form-group-new select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group-new input::placeholder {
  color: #9CA3AF;
}

.country-code-new {
  width: 120px;
  flex-shrink: 0;
}

.btn-form-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.btn-form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 14px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.phone-input-wrapper {
  display: flex;
  gap: 8px;
}

.phone-input-wrapper .country-code {
  width: 110px;
  flex-shrink: 0;
}

.phone-input-wrapper input[type="tel"] {
  flex: 1;
}

/* Benefits Section */
.benefits-section {
  padding: 0 0 60px 0;
  background: linear-gradient(180deg, rgba(30, 64, 175, 0.92) 0%, rgba(37, 99, 235, 0.88) 50%, white 50%, white 100%);
  position: relative;
  margin-top: -60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 10;
}

/* New Benefit Cards with Images */
.benefit-card-new {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.benefit-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.benefit-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.benefit-card-new:hover .benefit-image img {
  transform: scale(1.05);
}

.benefit-card-content {
  padding: 28px 24px;
}

.benefit-card-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.benefit-card-content p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

/* Old Benefit Box - Keep for reference */
.benefit-box {
  background: white;
  padding: 32px;
  border-radius: 16px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.benefit-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 8px;
  line-height: 1.3;
}

.benefit-content p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

/* Universities Slider */
.universities-slider {
  padding: 60px 0;
  background: var(--bg-white);
  overflow: hidden;
  text-align: center;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 48px;
}

.slider-container {
  overflow: hidden;
  padding: 20px 0;
}

.slider-track {
  display: flex;
  gap: 60px;
  padding-left: 20%;
  animation: scroll 30s linear infinite;
}
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }

.university-logo {
  flex-shrink: 0;
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.university-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.university-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.uni-placeholder {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-blue);
  text-align: center;
  letter-spacing: 1px;
}

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

/* About Section - New Design */
.about-section-new {
  /* padding: 100px 0; */
  padding-bottom: 100px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.about-header-section {
  text-align: center;
  margin-bottom: 60px;
}

.about-main-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.text-highlight-yellow {
  color: #FCD34D;
}

.about-main-subtitle {
  font-size: 20px;
  color: var(--text-gray);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.stat-box {
  text-align: center;
  padding: 32px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.stat-number-large {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 12px;
  line-height: 1;
}

.stat-label-new {
  font-size: 15px;
  color: var(--text-gray);
  font-weight: 500;
}

.about-main-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  /* align-items: start; */
  align-items: center;
}

.about-content-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-content-text {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 40px;
}

.about-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.service-item-new {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.service-icon-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.service-item-new h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.service-item-new p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

.btn-about-cta {
  padding: 16px 40px;
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-about-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.testimonial-card-about {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
  position: relative;
}

.quote-icon {
  font-size: 80px;
  color: #FCD34D;
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 24px;
  opacity: 0.3;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.testimonial-author-section {
  display: flex;
  gap: 16px;
  align-items: center;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.testimonial-author-info {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 6px;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
}

.testimonial-rating .star {
  color: #FCD34D;
  font-size: 16px;
}

.about-image-modern {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.about-image-modern img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.about-image-modern:hover img {
  transform: scale(1.05);
}

/* Rankings Section */
.rankings-section {
  padding: 100px 0;
  background: white;
}

.rankings-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 60px;
}

.rankings-highlight {
  color: #3B82F6;
}

.rankings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ranking-card {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ranking-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.ranking-card-header {
  background: #3B82F6;
  color: white;
  padding: 20px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.ranking-list {
  padding: 24px;
}

.ranking-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #F3F4F6;
}

.ranking-item:last-child {
  border-bottom: none;
}

.rank-number {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  flex-shrink: 0;
}

.rank-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.4;
}

.rank-info p {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}

.btn-ranking {
  width: 100%;
  padding: 16px;
  background: #3B82F6;
  color: white;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-ranking:hover {
  background: #2563EB;
}

/* Inline Form Section */
.inline-form-section {
  padding: 80px 0;
  background: #1E3A8A;
  color: white;
}

.inline-form-content {
  max-width: 900px;
  margin: 0 auto;
}

.inline-form-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.inline-form-subtitle {
  font-size: 20px;
  text-align: center;
  margin-bottom: 12px;
  opacity: 0.95;
}

.inline-form-urgency {
  font-size: 16px;
  text-align: center;
  margin-bottom: 48px;
  opacity: 0.9;
}

.inline-application-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.form-field-inline input,
.form-field-inline select {
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  background: white;
  color: var(--text-dark);
}

.form-field-inline input::placeholder {
  color: #9CA3AF;
}

.form-field-inline input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(252, 211, 77, 0.3);
}

.btn-inline-submit {
  width: 100%;
  padding: 18px;
  background: #FCD34D;
  color: #1E3A8A;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-inline-submit:hover {
  background: #FDE68A;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(252, 211, 77, 0.4);
}

/* CTA Sections */
.cta-section {
  padding: 80px 0;
  background: var(--primary-blue);
  color: white;
}

.cta-alt {
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 100%);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-section .btn-primary {
  background: white;
  color: var(--primary-blue);
}

.cta-section .btn-primary:hover {
  background: var(--bg-light);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

/* Top Ranked Programs Section */
.top-programs-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%);
}

.top-programs-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 60px;
}

.title-highlight-blue {
  color: #00AEEF;
}

.top-programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.top-program-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.top-program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.top-program-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.top-program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.top-program-card:hover .top-program-image img {
  transform: scale(1.08);
}

.top-program-content {
  padding: 24px;
}

.top-program-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
  line-height: 1.3;
}

.program-degree {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 16px;
}

.program-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #00AEEF;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.program-link:hover {
  gap: 10px;
}

.program-link svg {
  transition: transform 0.3s ease;
}

.program-link:hover svg {
  transform: translateX(4px);
}

/* Process Section */
.process-section {
  /* padding: 100px 0; */
  padding-bottom: 100px;
  background: white;
}

.process-main-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.process-subtitle {
  font-size: 18px;
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 60px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Journey Timeline */
.journey-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto 80px;
  position: relative;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.timeline-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
}

.timeline-step.completed .timeline-circle {
  background: var(--primary-blue);
  color: white;
}

.timeline-line {
  flex: 1;
  height: 3px;
  background: var(--primary-blue);
  margin: 0 -2px;
  position: relative;
  top: -24px;
}

/* Service Cards */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.service-card {
  background: #F8FAFC;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-description {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* CTA Buttons */
.process-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.btn-secondary-outline {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  padding: 16px 40px;
  font-size: 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
  margin-bottom: 20px;
}

.star {
  color: #FCD34D;
  font-size: 20px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.testimonial-author p {
  font-size: 14px;
  color: var(--text-gray);
}

/* Scholarships Section */
.scholarships-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.scholarship-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.scholarship-card {
  background: white;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.scholarship-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.scholarship-card:hover::before {
  transform: scaleX(1);
}

.scholarship-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.15);
}

.scholarship-card-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.scholarship-card:hover .scholarship-card-icon {
  background: var(--primary-blue);
  color: white;
  transform: scale(1.1);
}

.scholarship-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.scholarship-card p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 24px;
  min-height: 80px;
}

.scholarship-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.scholarship-amount {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-blue);
}

.arrow-icon {
  color: var(--primary-blue);
  transition: transform 0.3s ease;
}

.scholarship-card:hover .arrow-icon {
  transform: translateX(8px);
}

.scholarship-cta {
  text-align: center;
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #1E293B 0%, #312E81 100%);
  color: white;
  padding: 60px 0 24px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><path d="M0,100 Q300,150 600,100 T1200,100 L1200,400 L0,400 Z" fill="rgba(79,70,229,0.2)"/></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
  pointer-events: none;
}

.footer-main-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.footer-left {
  max-width: 500px;
}

.footer-logo-section {
  margin-bottom: 24px;
}

.footer-logo-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}
.footer-logo-icon img{
  max-width: 180px;
}
.footer-cta-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
  line-height: 1.2;
}

.footer-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

.btn-footer-cta {
  padding: 14px 40px;
  background: #FCD34D;
  color: #1E293B;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-footer-cta:hover {
  background: #FDE68A;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(252, 211, 77, 0.3);
}

.footer-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 15px;
}

.benefit-check-icon {
  width: 24px;
  height: 24px;
  background: rgba(252, 211, 77, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FCD34D;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 2;
}

.copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: white;
}

.legal-links .separator {
  color: rgba(255, 255, 255, 0.4);
}

/* Popup Modal */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.popup-overlay.active {
  display: flex;
}

.popup-content {
  background: white;
  padding: 48px;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--text-gray);
  transition: color 0.3s ease, transform 0.3s ease;
}

.popup-close:hover {
  color: var(--text-dark);
  transform: rotate(90deg);
}

.popup-content h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.popup-content > p {
  color: var(--text-gray);
  margin-bottom: 32px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Legal Pages */
.legal-page {
  padding: 80px 0;
  background: var(--bg-white);
}

.legal-page h1 {
  font-size: 48px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.last-updated {
  color: var(--text-gray);
  margin-bottom: 48px;
  font-size: 14px;
}

.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.legal-content p,
.legal-content ul {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 32px;
}

.legal-content ul li {
  margin-bottom: 8px;
}

.back-link {
  margin-top: 48px;
}

.back-link a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.back-link a:hover {
  color: var(--primary-dark);
}

/* Thank You Page */
.thank-you-page {
  padding: 100px 0;
  background: var(--bg-light);
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleUp 0.5s ease;
}

.success-icon svg {
  color: white;
}

@keyframes scaleUp {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.thank-you-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.thank-you-message {
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 60px;
}

.next-steps {
  background: white;
  padding: 48px;
  border-radius: 16px;
  margin-bottom: 40px;
  text-align: left;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.next-steps h2 {
  font-size: 28px;
  margin-bottom: 32px;
  text-align: center;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-text h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.step-text p {
  color: var(--text-gray);
  line-height: 1.6;
}

.thank-you-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 48px;
}

.contact-info {
  color: var(--text-gray);
}

.contact-info p {
  margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-right {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .phone-info {
    font-size: 14px;
  }
  
  .hero-content-split,
  .about-main-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .hero-title-new {
    font-size: 32px;
  }
  
  .hero-card-left,
  .hero-card-right {
    padding: 32px 24px;
  }
  
  .hero-university-logos {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .about-services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .scholarship-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .hero-main-title {
    font-size: 36px;
  }
  
  .title-highlight {
    font-size: 40px;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
  
  
  .footer-main-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-left {
    max-width: 100%;
  }
  
  .footer-right {
    align-items: flex-start;
    width: 100%;
  }
  
  .btn-footer-cta {
    width: 100%;
  }
  
  .footer-bottom-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .rankings-grid,
  .top-programs-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .process-main-title {
    font-size: 32px;
  }
  
  .process-subtitle {
    font-size: 16px;
  }
  
  .journey-timeline {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .service-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .process-cta-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
  }
  
  .process-cta-buttons button {
    width: 100%;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .cta-content h2 {
    font-size: 32px;
  }
  
  .popup-content {
    padding: 32px 24px;
  }
  
  .thank-you-actions {
    flex-direction: column;
  }
  
  .form-fields-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .inline-form-title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-section {
    padding: 60px 0;
  }

  .form-banner-yellow {
    padding: 20px 16px 16px;
  }

  .hero-form-new {
    padding: 10px 0 0;
  }

  .hero-section-new {
      min-height: auto;
      padding: 40px 0;
  }

  .universities-slider {
      padding: 30px 0;
  }

  .about-main-title {
      line-height: 40px;
      font-size: 30px;
  }

  .about-stats-grid {
      display: block;
  }

  .stat-box {
      margin-bottom: 20px;
      padding: 20px;
  }

  .about-content-heading {
      font-size: 30px;
      line-height: 40px;
      margin-bottom: 10px;
  }

  .about-section-new {
      padding-bottom: 30px;
  }

  .rankings-section {
      padding: 30px 0;
  }

  .rankings-title {
      font-size: 30px;
      line-height: 40px;
      margin-bottom: 20px;
  }

  .inline-form-section {
      padding: 30px 0;
  }

  .inline-form-urgency {
      margin-bottom: 20px;
  }

  .top-programs-section {
      padding: 30px 0;
  }

  .top-programs-title {
      font-size: 30px;
      line-height: 40px;
      margin-bottom: 20px;
  }

  .process-subtitle {
      margin-bottom: 20px;
  }

  .service-cards-grid {
      margin-bottom: 30px;
  }

  .btn-large {
      padding: 14px 22px;
  }

  .process-section {
      padding-bottom: 30px;
  }

  .site-footer {
      padding: 40px 0 20px;
  }

  .footer-main-content {
      gap: 20px;
      margin-bottom: 20px;
  }
  
  .hero-main-title {
    font-size: 28px;
  }
  
  .title-highlight {
    font-size: 32px;
  }
  
  .hero-supporting-text {
    font-size: 16px;
  }

  .hero-card-left{
    padding: 20px 14px;
  }
  
  .hero-form-card-new {
    padding: 28px 24px;
  }
  
  .section-title {
    font-size: 28px;
  }
}
.status.js-status.err {
    color: #f00;
}
.iti{
  width: 100%;
}
.inline-application-form .iti .iti__selected-dial-code {
    color: #000;
}
.inline-application-form .iti__country-name{
     color: #000;
}