/* CSS Variables */
:root {
  --primary-blue: #0a4275;
  --primary-gold: #f2a900;
  --light-blue: #e8f4fd;
  --dark-blue: #083659;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --bs-primary: var(--primary-blue);
  --bs-secondary: var(--primary-gold);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700; 
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.2rem; 
  font-weight: 700;
}

h2 {
  font-size: 1.8rem; 
}

h3 {
  font-size: 1.4rem; 
}

h4 {
  font-size: 1.15rem; 
}

p {
  margin-bottom: 1rem;
  font-size: 1rem; 
  line-height: 1.6; 
}

/* --- Top Bar Styles --- */
.top-bar {
  background: var(--primary-blue); 
  color: var(--white);           
  padding: 0.5rem 0;             
  font-size: 0.9rem;             
}

.top-bar-container {
  display: flex;
  flex-direction: column; 
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem; 
  margin-bottom: 0.5rem;
}

.top-bar-info span {
  display: inline-flex;
  align-items: center;
}

.top-bar-info i {
  margin-right: 0.5rem; 
}

.top-bar-info .desktop-only {
  display: none; 
}

.top-bar-social {
  display: flex;
  gap: 1rem; 
}

.top-bar-social a {
  color: var(--white);
  transition: color 0.3s ease; 
}

.top-bar-social a:hover {
  color: var(--primary-gold); 
}

.navbar {
  background: var(--white); 
  padding: 1rem 0;
  /* transition: var(--transition-smooth); */
  position: relative; 
  z-index: 1000; 
  box-shadow: var(--shadow-light);
  height: 81px; 
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow-medium);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 0;
}

.nav-logo a {
  display: flex; 
  align-items: center;
}

.header-logo {
  height: 80px; 
  width: auto;
  max-width: 200px; 
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-gold); 
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none; 
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-blue); 
  margin: 3px 0;
  transition: var(--transition-smooth);
}

.cta-button {
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.primary-cta {
  background: var(--primary-gold);
  color: var(--primary-blue);
  box-shadow: var(--shadow-light);
}

.primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

.secondary-cta-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 10px 24px; 
}

.secondary-cta-outline:hover {
  background: var(--white);
  color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

.cta-button.large {
  padding: 14px 32px;
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  margin-top: -101px; 
  padding-top: 101px;
}

.navbar {
    height: 81px; 
}
.hero {
    margin-top: -81px;
    padding-top: 81px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: url('images/heropage.jpg') center/cover;
  z-index: -2;
  transform: translateZ(0);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 66, 117, 0.8) 0%, rgba(8, 54, 89, 0.9) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
}

.hero-title {
  font-size: 2.5rem; 
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.1rem; 
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 1.8rem;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 0.95rem; 
  opacity: 0.9;
  margin: 0;
}

.hero.parallax .hero-background {
  transform: translate3d(0, var(--scroll-y, 0), 0);
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  color: var(--primary-blue);
  font-size: 1.8rem; 
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem; 
  color: var(--medium-gray);
  max-width: 42rem; 
  margin: 0 auto;
}

/* Services Section */
.services {
  background: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(242, 169, 0, 0.1), transparent);
  transition: var(--transition-smooth);
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
  border: 1px solid var(--primary-blue);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-card:hover {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--primary-gold);
}

.service-icon i {
  font-size: 2.5rem;
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.service-card:hover i{
  color: var(--primary-gold);
  transform: scale(1.1);
}

.service-card h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--medium-gray);
  line-height: 1.6;
}

/* Destinations Section */
.destinations {
  background: var(--primary-blue);
  color: var(--white);
}

.destinations .section-header h2,
.destinations .section-header p {
  color: var(--white);
}

.country-card-animated {
  position: relative;
  display: flex;
  align-items: flex-end; 
  overflow: hidden;
  border-radius: 15px; 
  height: 400px;
  color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.country-card-animated .country-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.country-card-animated .country-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%; 
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.9) 100%);
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.country-card-animated .country-card-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1.5rem;
  transform: translateY(calc(100% - 14rem)); 
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  height: 100%; 
  justify-content: flex-end;
}
.country-card-animated .country-card-flag {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  margin-bottom: 1rem;
  flex-shrink: 0; 
}
.country-card-animated .country-card-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.country-card-animated .country-card-title {
  font-size: 1.5rem; /* Reduced */
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
  text-align: center;
}
.country-card-animated .country-card-details {
  text-align: center;
  transition: opacity 0.7s cubic-bezier(0.19, 1, 0.22, 1), transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0;
  transform: translateY(10px);
}
.country-card-animated .country-card-details p {
  font-size: 0.95rem; 
  margin-bottom: 1.5rem;
}
.country-card-animated .country-card-details .btn {
  background-color: #fff;
  color: var(--bs-primary);
  font-weight: 600;
}
.country-card-animated .country-card-details .btn:hover {
    background-color: var(--bs-secondary); 
    color: #fff;
    transform: translateY(-3px);
}
.country-card-animated:hover .country-card-bg {
  transform: scale(1.05);
}
.country-card-animated:hover .country-card-overlay {
  transform: translateY(-50%);
}
.country-card-animated:hover .country-card-content {
  transform: translateY(0); 
}
.country-card-animated:hover .country-card-details {
  opacity: 1;
  transform: translateY(0);
}

/* Success Stories Section */
.success-preview {
  background: var(--light-gray);
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.success-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
}

.success-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.success-card:hover {
  transform: scale(1.05);
}

.success-content {
  padding: 2rem;
}

.success-content h4 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.success-university {
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.success-quote {
  font-style: italic;
  color: var(--medium-gray);
  margin-bottom: 1rem;
}

.success-rating {
  color: var(--primary-gold);
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  color: var(--white);
  text-align: center;
  padding: 40px 20px;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem; /* Standardized */
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  color: var(--white);
  text-align: center;
  padding: 120px 0 80px;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.1rem; 
  opacity: 0.9;
}

/* --- NEW About Page Styles --- */
.content-image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.content-image-grid-text h2 {
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.content-image-grid-text p {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.content-image-grid-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
}

.mission-vision-section {
  background: var(--light-gray);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.info-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-light);
  text-align: center;
}

.info-card-icon {
  width: 80px;
  height: 80px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.info-card-icon i {
  font-size: 2rem;
  color: var(--primary-blue);
}

.info-card h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.info-card p {
  color: var(--medium-gray);
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.value-item {
  text-align: center;
}

.value-item-icon {
  width: 90px;
  height: 90px;
  background: var(--light-blue); 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition-smooth);
}

.value-item-icon i {
  font-size: 2.2rem;
  color: var(--primary-gold); 
}

.value-item:hover .value-item-icon {
  background: var(--primary-gold);
  transform: scale(1.1);
}

.value-item:hover .value-item-icon i {
  color: var(--white);
}

.value-item h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.value-item p {
  color: var(--medium-gray);
  line-height: 1.7;
}

.founder-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.founder-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    align-items: center;
}

.founder-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-gold);
    margin: 0 auto; 
    flex-shrink: 0;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-content {
    text-align: center; 
}

.founder-content h4 {
    font-size: 1.5rem; 
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.founder-content .founder-role {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.05rem; 
}

.founder-content .founder-bio-text {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--medium-gray);
    text-align: left; 
}

.founder-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 1rem;
}

.founder-contact span {
    display: inline-flex;
    align-items: center;
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 0.95rem;
}

.founder-contact i {
    margin-right: 0.75rem;
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.stats-section {
  background: var(--primary-blue);
  color: var(--white);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card h3 {
  font-size: 2rem; 
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

/* --- Services Page - New Sections --- */
.services-page-grid-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.services-page-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr; 
}

.services-page-card {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-light); 
  transition: var(--transition-smooth);
  border: 1px solid transparent; 
}

.services-page-card:hover {
  box-shadow: var(--shadow-heavy);
  transform: translateY(-5px);
  border-color: var(--primary-gold);
}

.services-page-card .card-icon-wrapper {
  width: 5rem; 
  height: 5rem; 
  background-color: rgba(10, 66, 117, 0.1); 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem; 
}

.services-page-card .card-icon-wrapper i {
  font-size: 2.25rem; 
  color: var(--primary-blue);
}

.services-page-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem; 
  text-align: center;
}

.services-page-card p {
  color: var(--medium-gray);
  line-height: 1.625; 
  margin-bottom: 1.5rem;
  text-align: center;
}

.services-page-card ul {
  text-align: left;
  color: var(--medium-gray);
  list-style: none;
  padding-left: 0;
}

.services-page-card ul li {
  margin-bottom: 0.5rem; 
  display: flex;
  align-items: center;
}

.services-page-card ul li i {
  color: var(--primary-gold); 
  margin-right: 0.75rem;
}

.additional-services {
  padding: 5rem 0;
  background-color: var(--light-gray); 
}

.additional-services .section-header {
  margin-bottom: 4rem; 
}

.additional-services .section-header h2 {
  font-size: 1.8rem; 
}

.additional-services .section-header p {
  font-size: 1.1rem; 
  color: var(--medium-gray);
  max-width: 42rem; 
  margin-left: auto;
  margin-right: auto;
}

.additional-services-grid {
  display: grid;
  gap: 2rem; 
  grid-template-columns: 1fr; 
}

.additional-service-item {
  background-color: var(--white);
  border-radius: 0.75rem; 
  padding: 1.5rem; 
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: var(--transition-smooth);
}

.additional-service-item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.additional-service-item .item-icon-wrapper {
  width: 4rem; 
  height: 4rem; 
  background-color: rgba(242, 169, 0, 0.1); 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem; 
}

.additional-service-item .item-icon-wrapper i {
  font-size: 1.5rem; 
  color: var(--primary-gold); 
}

.additional-service-item h3 {
  font-size: 1.1rem; 
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.75rem; 
}

.additional-service-item p {
  color: var(--medium-gray);
  font-size: 0.95rem; 
  margin: 0;
}

.process-section {
  background: var(--light-gray);
  padding: 80px 0;
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
}

.process-step:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-medium);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-gold);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 2rem;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--medium-gray);
  margin: 0;
}

/* --- Countries Page Specific Styles --- */
.featured-destinations-section {
  padding: 80px 0;
  background-color: var(--white);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

.featured-country-card {
  background-color: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-country-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.card-image-header {
  position: relative;
  height: 250px; 
  overflow: hidden;
  margin-bottom: 1.5rem;
  flex-shrink: 0; 
}

.card-image-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.card-image-content {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
}

.card-image-flag {
  width: 3rem; 
  height: 3rem;
  border-radius: 50%;
  margin-right: 0.75rem;
  border: 2px solid var(--white);
}

.card-image-content h3 {
  font-size: 1.6rem; 
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.card-content-wrapper {
  padding: 0 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-grow: 1;
  justify-content: space-between;
}

.card-content-wrapper h4 {
  font-size: 1.15rem; 
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.card-content-wrapper p {
  color: var(--medium-gray);
  line-height: 1.6;
}

.card-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.card-sub-item {
  background-color: var(--light-gray);
  border-radius: 0.5rem;
  padding: 1rem;
}

.card-sub-item h5 {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.card-sub-item ul {
  list-style: none;
  font-size: 0.9rem;
  color: var(--medium-gray);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.card-stats-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(10, 66, 117, 0.05); 
  border-radius: 0.5rem;
  padding: 1rem;
}

.card-stat-item {
  text-align: center;
}

.card-stat-item span {
  font-size: 1.3rem; 
  font-weight: 700;
  color: var(--primary-blue);
}

.card-stat-item p {
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin: 0;
}

.card-image-header-other {
  position: relative;
  height: 200px; 
  overflow: hidden;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.other-destinations-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.other-destinations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}

.other-destinations-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.other-destinations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem; 
  align-items: stretch;
}

.requirements-section {
  padding: 80px 0;
  background-color: var(--white);
}

.requirements-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.requirement-item {
  text-align: center;
}

.requirement-icon-wrapper {
  width: 5rem; 
  height: 5rem; 
  background-color: rgba(10, 66, 117, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.requirement-icon-wrapper i {
  font-size: 2.25rem; 
  color: var(--primary-blue);
}

.requirement-item h3 {
  font-size: 1.15rem; 
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.requirement-item ul {
  list-style: none;
  color: var(--medium-gray);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Success Stories Page Styles */
.filter-section {
  background: var(--light-gray);
  padding: 40px 0;
}

.filter-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid var(--primary-blue);
  background: transparent;
  color: var(--primary-blue);
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-blue);
  color: var(--white);
}

.success-stories-section {
  padding: 80px 0;
}

.success-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.success-story-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.success-story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.success-story-card:hover {
  transform: scale(1.05);
}

.success-story-content {
  padding: 2rem;
}

.success-story-content h4 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.story-university {
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.story-preview {
  color: var(--medium-gray);
  font-style: italic;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-rating {
  color: var(--primary-gold);
}

/* --- Contact Page Styles --- */
.contact-section {
  padding: 80px 0;
  background-color: var(--light-gray); 
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 3rem;
  align-items: stretch;
}

.contact-form-container,
.contact-info-container {
  background: var(--white);
  padding: 2rem; 
  border-radius: 1rem;
  height: 100%; 
  display: flex;
  box-shadow: var(--shadow-light);
  flex-direction: column; 
}

.contact-form-title,
.contact-info-title {
  font-size: 1.8rem; 
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem; 
  flex-grow: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.form-group {
  margin-bottom: 0.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--primary-blue);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(242, 169, 0, 0.1);
}

.form-group-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-group-consent input[type="checkbox"] {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.form-group-consent label {
  color: var(--medium-gray);
  font-size: 0.9rem;
  font-weight: 400;
}

.contact-info p {
  color: var(--medium-gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-details-new {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item-new {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon-new {
  background: var(--light-blue);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-new i {
  color: var(--primary-blue);
  font-size: 1.2rem;
  line-height: 1; 
}

.contact-text-new h3 {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
  font-size: 1.1rem; 
}

.contact-text-new p {
  color: var(--medium-gray);
  margin: 0;
  line-height: 1.6;
}

.contact-socials-new {
  margin-top: auto; 
}

.contact-socials-new h3 {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.1rem; 
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.contact-socials-new .social-icons {
    margin-top: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: var(--primary-blue); 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-icons a i {
  line-height: 1; 
  color: var(--white); 
  transition: color 0.3s ease; 
}

.social-icons a:hover {
  background: var(--primary-gold); 
  transform: translateX(1.5px);
}

.social-icons a:hover i {
    color: var(--primary-blue);
}

.map-section {
  background: var(--light-gray);
  padding: 80px 0;
}

.map-section h2 {
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 2rem;
}

.map-container {
  height: 400px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.map-placeholder {
  text-align: center;
  color: var(--medium-gray);
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.faq-section {
  padding: 80px 0;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-light);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--light-gray);
  transition: var(--transition-smooth);
}

.faq-question:hover {
  background: var(--light-blue);
}

.faq-question h4 {
  color: var(--primary-blue);
  margin: 0;
}

.faq-question i {
  color: var(--primary-gold);
  transition: var(--transition-smooth);
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-answer {
  padding: 1.5rem 2rem;
  max-height: 200px;
}

.faq-answer p {
  color: var(--medium-gray);
  margin: 0;
}

/* Footer */
.footer {
  background: var(--dark-blue);
  color: var(--white);
  padding: 60px 0 20px;
}
.footer-logo {
  width: 180px;          
  height: auto;           
  margin-bottom: 1.5rem; 
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-section ul li a:hover {
  color: var(--primary-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--primary-gold);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-links a:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.contact-info i {
  margin-right: 0.5rem;
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1; 
}

::-webkit-scrollbar-thumb {
  background: var(--bs-primary); 
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #08335a; 
}

/* --- Responsive Styles --- */
@media (min-width: 768px) { 
  .top-bar-container {
    flex-direction: row;
  }

  .top-bar-info {
    margin-bottom: 0; 
    justify-content: flex-start;
  }

  .section-header h2 {
    font-size: 2.2rem; 
  }

  .mission-vision-grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .founder-card {
    grid-template-columns: 200px 1fr; 
    gap: 3rem;
    padding: 3rem;
  }

  .founder-image {
    width: 200px; 
    height: 200px;
    margin: 0; 
  }

  .founder-content {
    text-align: left; 
  }

  .founder-contact {
    flex-direction: row; 
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .services-page-grid {
    grid-template-columns: 1fr 1fr; 
  }

  .additional-services .section-header h2 {
    font-size: 2.2rem; /* Reduced */
  }

  .additional-services-grid {
    grid-template-columns: repeat(2, 1fr); 
  }

  .card-content-grid {
    grid-template-columns: 1fr 1fr;
  }

  .other-destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .other-destinations-grid {
    grid-template-columns: repeat(2, 1fr); 
  }

  .requirements-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .content-image-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) { 
  .top-bar-info .desktop-only {
    display: inline-flex; 
  }

  .services-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .additional-services-grid {
    grid-template-columns: repeat(4, 1fr); 
  }

  .featured-grid {
    grid-template-columns: 1fr 1fr;
  }

  .other-destinations-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .other-destinations-grid {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px; 
    flex-direction: column;
    background-color: var(--white); 
    width: 100%;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-medium);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .navbar .primary-cta {
    display: none;
  }
  .header-logo {
    height: 40px; 
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px; 
    flex-direction: column;
    background-color: var(--primary-blue);
    width: 100%;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-medium);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hero-title {
    font-size: 2.2rem; /* Reduced */
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    position: static;
    transform: none;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .success-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .countries-grid {
    grid-template-columns: 1fr;
  }

  .filter-controls {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 1rem;
  }

  .success-stories-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .modal-content {
    margin: 10% auto;
    padding: 2rem;
    width: 95%;
  }

  h1 {
    font-size: 2.2rem; /* Reduced */
  }

  h2 {
    font-size: 1.8rem; /* Reduced */
  }

  h3 {
    font-size: 1.4rem; /* Reduced */
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .service-card,
  .success-card {
    padding: 1.5rem;
  }

  .contact-form-container {
    padding: 2rem;
  }

  .modal-content {
    padding: 1.5rem;
  }

  .close {
    right: 1.5rem;
    top: 1.5rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .cta-section,
  .modal {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .page-header {
    margin-top: 0;
  }
}


/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-up {
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

.slide-up.visible {
  transform: translateY(0);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

html {
  scroll-behavior: smooth;
}

button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}