/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #F9F9F9;
  color: #1E1E1E;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== HEADER (Light Background) ===== */
header {
  background: #3d4087;  
  color: white;       
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 80px;         
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.02);
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-menu a {
  color: white;        
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff112;   
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: #fff112;         
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Hamburger Icon (dark) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.hamburger .bar {
  width: 100%;
  height: 3px;
  background: white;   
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

/* Hamburger Animation to X (with red) */
.hamburger.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background: #fff112;     
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background: #fff112;     
}

/* Mobile Menu Overlay (light background with blur) */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9); 
  backdrop-filter: blur(5px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #3d4087;    
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s ease-in-out;
    z-index: 999;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    font-size: 1.2rem;
    color: #fff112;        
  }

  .nav-menu a:hover {
    color: #fff112;       
  }

  /* Optional gold accent line */
  .nav-menu::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff112, transparent); /* gold */
  }
}
@media (max-width: 768px) {
    .hero-container {
        margin-top: 40px;
       
    }
}
/* ===== FOOTER (Using brand colors) ===== */
/* ===== FOOTER (Premium Redesign) ===== */
footer {
  background: #0A1A2F; /* darker navy for depth */
  color: #fff;
  position: relative;
  z-index: 1;
  border-top: 4px solid #D61F26;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #fff112, transparent);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 2fr;
  gap: 2.5rem;
  padding: 4rem 0 3rem;
}

.footer-col h4 {
  color: #fff112;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.7rem;
  letter-spacing: 0.5px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #D61F26;
  border-radius: 2px;
}

.footer-col p {
  color: #B0B0B0;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Social Icons in Footer */
.footer-social {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover {
  background: #fff112;
  transform: translateY(-3px);
  border-color: transparent;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: #B0B0B0;
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: #fff112;
  padding-left: 5px;
}

/* Contact list with icons */
.footer-contact li {
  display: flex;
  gap: 0.8rem;
  color: #B0B0B0;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-contact i {
  color: #fff112;
  width: 20px;
  margin-top: 3px;
}

.footer-bottom {
  background: #051220;
  padding: 1.5rem 0;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

.footer-bottom i {
  color: #D61F26;
  margin: 0 3px;
}

/* Floating Buttons */
.whatsapp-float {
  position: fixed;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366; /* WhatsApp green */
  color: white;
  padding: 12px 12px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  z-index: 999;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.whatsapp-float {
  bottom: 50px;
  background: #25D366;
}

.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(0,0,0,0.3);
}

.whatsapp-float i {
  font-size: 1.4rem;
}

/* Hide text on very small screens if needed */
@media (max-width: 480px) {
  .whatsapp-float span {
    display: none;
  }
  .whatsapp-float {
    padding: 12px;
    border-radius: 50%;
  }
  .whatsapp-float i {
    font-size: 1.6rem;
    margin: 0;
  }
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact li {
    justify-content: center;
  }
}
/* ===== MAIN CONTENT ===== */
main {
  min-height: 60vh;
  /* padding: 3rem 0; */
}

.page-title {
  text-align: center;
  margin-bottom: 2rem;
  color: white;           
  font-size: 2.2rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 1rem;
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #D61F26;       
}

/* ===== HOMEPAGE STYLES ===== */

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 100%);
  /* padding: 4rem 0; */
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-tagline {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #D61F26;
  background: rgba(214, 31, 38, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0B3C6D;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.1rem;
  color: #6E6E6E;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  border: 2px solid transparent;
}

.btn-primary {
  background: #D61F26;
  color: #fff;
  box-shadow: 0 10px 20px rgba(214, 31, 38, 0.2);
}

.btn-primary:hover {
  background: #b0101a;
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(214, 31, 38, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid #0B3C6D;
  color: #0B3C6D;
}

.btn-outline:hover {
  background: #0B3C6D;
  color: #fff;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  /* border-radius: 20px; */
  /* box-shadow: 0 20px 40px rgba(0,0,0,0.1); */
}

/* Stats Section */
.stats {
  background: #fff;
  padding: 3rem 0;
  border-bottom: 1px solid #eee;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #D61F26;
  line-height: 1.2;
}

.stat-label {
  font-size: 1rem;
  color: #6E6E6E;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #D61F26;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: 2.2rem;
  color: #0B3C6D;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-header p {
  color: #6E6E6E;
  max-width: 600px;
  margin: 0 auto;
}

/* About / Why Us */
.about {
  padding: 4rem 0;
  background: #F9F9F9;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.about-card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-card i {
  font-size: 2.5rem;
  color: #D61F26;
  margin-bottom: 1rem;
}

.about-card h3 {
  color: #0B3C6D;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.about-card p {
  color: #6E6E6E;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Services */
.services {
  padding: 4rem 0;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: #F9F9F9;
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.service-card:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-color: transparent;
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.service-card h3 {
  color: #0B3C6D;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.service-card p {
  color: #6E6E6E;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Destinations */
.destinations {
  padding: 4rem 0;
  background: #F9F9F9;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.destination-item {
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.destination-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.country-flag {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.3rem;
}

.country-name {
  font-weight: 500;
  color: #0B3C6D;
  font-size: 0.9rem;
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0B3C6D 0%, #1F5A8B 100%);
  color: #fff;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta .btn-primary {
  background: #fff112;
  border-color: #fff112;
  color: #0B3C6D;
  box-shadow: 0 10px 20px rgba(212, 160, 23, 0.3);
}

.cta .btn-primary:hover {
  background: #c28f0e;
  border-color: #c28f0e;
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .about-grid, .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ===== LIFE ABROAD SECTION ===== */
.life-abroad {
  padding: 5rem 0;
  background: #fff;
  position: relative;
   
}

.life-abroad::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/background.png');
  background-position: center!important;
  background-size: cover!important;
  background-repeat: no-repeat!important;

  /* opacity: 0.3; */
  /* pointer-events: none; */
 
}

.life-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center!important;
  /* margin-top: 2rem; */
}

.life-image {
  position: relative;
  /* border-radius: 20px; */
  overflow: hidden;
  /* box-shadow: 0 20px 40px rgba(0,0,0,0.1); */
  height: fit-content;
}

.life-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.life-image:hover img {
  transform: scale(1.02);
}

.image-fallback {
  display: none;
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #0B3C6D 0%, #1F5A8B 100%);
  border-radius: 20px;
}

.life-image img[style*="display: none"] + .image-fallback {
  display: block;
}

.life-content {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.life-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.life-feature i {
  font-size: 1.8rem;
  min-width: 2.5rem;
  margin-top: 0.2rem;
}

.life-feature h3 {
  color: #0B3C6D;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.life-feature p {
  color: #6E6E6E;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== COUNTRIES WE SERVE ===== */
.countries {
  padding: 4rem 0;
  background: #F9F9F9;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.country-card {
  background: #fff;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.country-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(11, 60, 109, 0.1);
  border-color: transparent;
}

.country-flag {
  font-size: 3rem;
  line-height: 1;
  filter: drop-shadow(0 4px 4px rgba(0,0,0,0.1));
}

.country-name-full {
  font-weight: 600;
  color: #0B3C6D;
  font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .life-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .life-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .countries-grid {
    grid-template-columns: 1fr;
  }

  .life-feature {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ===== ABOUT PAGE STYLES ===== */

/* Page Hero (shared style for inner pages) */
.page-hero {
  background: linear-gradient(135deg, #0B3C6D 0%, #1F5A8B 100%);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.page-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Story Section */
.story {
  padding: 5rem 0;
  background: #fff;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text h2 {
  color: #0B3C6D;
  font-size: 2.2rem;
  margin: 1rem 0 1.5rem;
}

.story-text p {
  color: #6E6E6E;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.mission, .vision {
  background: #F9F9F9;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid;
}

.mission {
  border-left-color: #D61F26;
}

.vision {
  border-left-color: #0B3C6D;
}

.mission i, .vision i {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.mission h3, .vision h3 {
  color: #0B3C6D;
  margin-bottom: 0.5rem;
}

.mission p, .vision p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #D61F26;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 20px rgba(214, 31, 38, 0.3);
}

.experience-badge .years {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

/* Values Section */
.values {
  padding: 4rem 0;
  background: #F9F9F9;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.value-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  color: #0B3C6D;
  margin-bottom: 0.8rem;
}

.value-card p {
  color: #6E6E6E;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Team Section */
.team {
  padding: 5rem 0;
  background: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s;
  text-align: center;
  padding-bottom: 1.5rem;
  border: 1px solid #eee;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(11, 60, 109, 0.1);
}

.team-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;

  filter: blur(8px); 
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-card h3 {
  color: #0B3C6D;
  margin: 1rem 0 0.2rem;
  font-size: 1.2rem;
}

.team-role {
  color: #D61F26;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.team-bio {
  color: #6E6E6E;
  font-size: 0.85rem;
  padding: 0 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-social a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  background: #f0f0f0;
  color: #0B3C6D;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}

.team-social a:hover {
  background: #D61F26;
  color: #fff;
}

/* Stats Impact (reuse existing .stats but with different background) */
.stats-impact {
  background: #0B3C6D;
  color: #fff;
  padding: 3rem 0;
}

.stats-impact .stat-number {
  color: #fff112;
}

.stats-impact .stat-label {
  color: rgba(255,255,255,0.8);
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background: #F9F9F9;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  position: relative;
  border: 1px solid #eee;
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.quote-icon {
  color: #fff112;
  font-size: 2rem;
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: #6E6E6E;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.student-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.student-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #D61F26;
}

.student-info h4 {
  color: #0B3C6D;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.student-info p {
  font-size: 0.8rem;
  margin-bottom: 0;
  color: #888;
  font-style: normal;
}

/* Responsive */
@media (max-width: 1024px) {
  .values-grid,
  .team-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 2.5rem;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .team-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .stats-impact .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 2rem;
  }

  .experience-badge {
    padding: 0.8rem 1.2rem;
  }

  .experience-badge .years {
    font-size: 1.5rem;
  }
}
/* ===== SERVICES PAGE STYLES ===== */

/* Services Overview (reusing .services-grid from homepage but with enhancements) */
.services-overview {
  padding: 5rem 0;
  background: #fff;
}

.service-card {
  background: #F9F9F9;
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-color: transparent;
}

.service-card h3 {
  color: #0B3C6D;
  margin: 1rem 0 0.8rem;
  font-size: 1.3rem;
}

.service-card p {
  color: #6E6E6E;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  margin-top: auto;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.service-features i {
  color: #fff112;
  font-size: 0.9rem;
}

/* Specializations Section */
.specializations {
  padding: 4rem 0;
  background: #F9F9F9;
}

.specializations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.specialization-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s;
  border: 1px solid #eee;
}

.specialization-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(11, 60, 109, 0.1);
}

.specialization-icon {
  width: 70px;
  height: 70px;
  background: rgba(214, 31, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
}

.specialization-card h3 {
  color: #0B3C6D;
  margin-bottom: 0.5rem;
}

.specialization-card p {
  color: #6E6E6E;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Process Section */
.process {
  padding: 5rem 0;
  background: #fff;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: #F9F9F9;
  padding: 1.5rem;
  border-radius: 16px;
  transition: transform 0.3s;
}

.step:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.step-number {
  width: 50px;
  height: 50px;
  background: #D61F26;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 5px 10px rgba(214, 31, 38, 0.3);
}

.step-content h3 {
  color: #0B3C6D;
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
}

.step-content p {
  color: #6E6E6E;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .specializations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .specializations-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .step {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ===== CONTACT PAGE STYLES ===== */

.contact {
  padding: 5rem 0;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* Contact Info */
.contact-info h2 {
  color: #0B3C6D;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: #6E6E6E;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.info-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.info-item i {
  font-size: 1.5rem;
  min-width: 2rem;
  margin-top: 0.2rem;
}

.info-item h3 {
  color: #0B3C6D;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.info-item p {
  color: #6E6E6E;
  line-height: 1.6;
}

.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  color: #0B3C6D;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}

.contact-social a:hover {
  background: #D61F26;
  color: #fff;
}

/* Contact Form */
.contact-form {
  background: #F9F9F9;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.contact-form h2 {
  color: #0B3C6D;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #0B3C6D;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #D61F26;
  box-shadow: 0 0 0 3px rgba(214, 31, 38, 0.1);
}

/* Captcha */
.captcha-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.captcha-question {
  background: #fff;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-weight: 600;
  color: #0B3C6D;
  min-width: 100px;
  text-align: center;
}

.captcha-container input {
  flex: 1;
}

.refresh-captcha {
  background: #0B3C6D;
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.refresh-captcha:hover {
  background: #D61F26;
}

.captcha-error {
  color: #D61F26;
  font-size: 0.85rem;
  margin-top: 0.3rem;
  min-height: 20px;
}

.btn-block {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

.form-success {
  text-align: center;
  padding: 2rem;
}

.form-success i {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 1rem;
}

.form-success p {
  color: #0B3C6D;
  font-size: 1.2rem;
}

/* Map */
.map {
  width: 100%;
  height: 350px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info {
    order: 1;
  }

  .contact-form {
    order: 2;
  }

  .captcha-container {
    flex-wrap: wrap;
  }

  .captcha-question {
    width: 100%;
  }

  .refresh-captcha {
    width: 100%;
  }
}
/* ===== DESTINATIONS PAGE STYLES ===== */

.destinations-intro {
  padding: 4rem 0 2rem;
  background: #fff;
}

/* Category Headers */
.destination-category {
  padding: 2rem 0 3rem;
  background: #fff;
}

.destination-category:nth-child(even) {
  background: #F9F9F9;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.category-header i {
  font-size: 2rem;
}

.category-header h3 {
  color: #0B3C6D;
  font-size: 1.8rem;
  margin-left: 0.5rem;
}

/* Destinations Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.destination-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(11, 60, 109, 0.1);
  border-color: transparent;
}

.destination-flag {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 4px rgba(0,0,0,0.1));
}

.destination-card h4 {
  color: #0B3C6D;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.destination-card p {
  color: #6E6E6E;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.destination-highlights {
  list-style: none;
  margin-bottom: 1.5rem;
}

.destination-highlights li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.destination-highlights i {
  color: #fff112;
  width: 1.2rem;
  text-align: center;
}

.btn-destination {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #D61F26;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s;
  margin-top: auto;
}

.btn-destination:hover {
  gap: 0.8rem;
  color: #0B3C6D;
}

/* Why Study Abroad */
.why-abroad {
  padding: 5rem 0;
  background: #F9F9F9;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.why-content h2 {
  color: #0B3C6D;
  font-size: 2.2rem;
  margin: 1rem 0 1.5rem;
}

.why-content p {
  color: #6E6E6E;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.benefit i {
  font-size: 1.2rem;
}

.benefit span {
  color: #333;
  font-weight: 500;
}

.why-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .category-header h3 {
    font-size: 1.5rem;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .category-header {
    flex-wrap: wrap;
  }
}