@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@700&family=Raleway:wght@500&display=swap");

:root {
  --primary: #3899c3;
  --accent: #64ae44;
  --text: #333;
  --white: #fff;
  --primary-dark: #2c7a9c;
  --accent-dark: #4f8d36;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 5%;
  background: var(--white);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 70px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin-left: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent);
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background: var(--primary);
  margin: 5px;
  transition: all 0.3s ease;
}

.logo {
  padding: 0;
  margin: 0;
  display: inline-block;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.hero {
  height: 100vh;
  background: linear-gradient(
      135deg,
      rgba(56, 153, 195, 0.85) 0%,
      rgba(100, 174, 68, 0.3) 100%
    ),
    url("images/hero-bg.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 5% 0;
}

.hero-content {
  max-width: 1200px;
  color: var(--white);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeInUp 1s ease;
  opacity: 0;
  transform: translateY(30px);
  animation-fill-mode: forwards;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
  animation: fadeInUp 1s ease 0.2s;
  opacity: 0;
  transform: translateY(30px);
  animation-fill-mode: forwards;
}

.services-pills {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease 0.4s;
  opacity: 0;
  transform: translateY(30px);
  animation-fill-mode: forwards;
}

.services-pills span {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  backdrop-filter: blur(5px);
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  animation: fadeInUp 1s ease 0.6s;
  opacity: 0;
  transform: translateY(30px);
  animation-fill-mode: forwards;
}

.cta-btn {
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background: var(--accent);
  color: var(--white);
}

.cta-btn.secondary {
  border: 2px solid var(--white);
  color: var(--white);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary:hover {
  background: var(--accent-dark);
}

.cta-btn.secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--accent);
}

.services {
  padding: 5rem 5%;
  background: #f8fafc;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #64748b;
  margin-bottom: 4rem;
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(100, 174, 68, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: 0.5s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
  animation: borderEffect 1.5s linear infinite;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: rotate(15deg) scale(1.1);
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.service-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-cta {
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.service-cta::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.service-cta:hover::after {
  width: 100%;
}
/* ===== Beautiful Popup Styling ===== */
.service-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-out;
}

.popup-content {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  opacity: 0;
  animation: slideUp 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
  position: relative;
}

.popup-body {
  padding: 30px;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  color: #888;
  cursor: pointer;
  transition: all 0.3s;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.popup-close:hover {
  color: #333;
  background: #f5f5f5;
}

.popup-content h2 {
  color: #2c3e50;
  margin-top: 0;
  font-size: 28px;
  border-bottom: 2px solid #f1f1f1;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.popup-content ul {
  padding-left: 20px;
  line-height: 1.6;
}

.popup-content li {
  margin-bottom: 10px;
  position: relative;
}

.popup-content li:before {
  content: "•";
  color: #3498db;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.popup-content strong {
  color: #2c3e50;
}

.popup-content em {
  display: block;
  margin-top: 20px;
  font-style: italic;
  color: #7f8c8d;
  text-align: center;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .popup-content {
    width: 95%;
    padding: 20px;
  }

  .popup-body {
    padding: 20px 15px;
  }

  .popup-content h2 {
    font-size: 24px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-30px) translateX(-50%);
  }
  60% {
    transform: translateY(-15px) translateX(-50%);
  }
}

@keyframes borderEffect {
  0% {
    left: -50%;
  }
  100% {
    left: 150%;
  }
}

@media screen and (max-width: 768px) {
  .nav-links {
    position: fixed;
    right: -100%;
    top: 70px;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    align-items: center;
    width: 100%;
    transition: right 0.5s ease;
    padding: 2rem 0;
  }

  .nav-links.active {
    right: 0;
  }

  .burger {
    display: block;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

/* About Section */
.about {
  padding: 5rem 5%;
  background: var(--white);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 10px 10px 0 var(--accent);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.feature-card {
  padding: 2rem;
  border: 2px solid rgba(56, 153, 195, 0.1);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(100, 174, 68, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon i {
  font-size: 1.8rem;
  color: var(--accent);
}

.stats-card {
  text-align: center;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 10px;
  position: relative;
}

.stats-card h3 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-bar {
  width: 40%;
  height: 3px;
  background: var(--accent);
  margin: 1rem auto;
  transition: width 0.5s ease;
}

.stats-card:hover .stat-bar {
  width: 60%;
}

/* Contact Section */
.contact {
  padding: 5rem 5%;
  background: var(--white);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-content {
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.section-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

/* Form Styling */
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
  position: relative;
  margin-bottom: 1rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
  transition: all 0.3s ease;
  background: var(--white);
  padding: 0 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group input:focus + label,
.form-group select:valid + label,
.form-group textarea:valid + label,
.form-group input:not(:placeholder-shown) + label {
  top: 0;
  font-size: 0.8rem;
  color: var(--primary);
}

.form-group textarea {
  min-height: 350px;
  resize: none;
}

.contact-form .cta-btn {
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  width: auto;
  margin: 0 auto;
  grid-column: 1 / -1;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form .cta-btn:hover {
  background-color: var(--primary-dark);
}

/* Info Cards */
.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.info-card {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(56, 153, 195, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  margin-bottom: 1rem;
}

.info-icon i {
  color: var(--primary);
  font-size: 1.5rem;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: 1;
  }

  .contact-form .cta-btn {
    width: 100%;
    margin-top: 1rem;
  }

  .info-card {
    margin-bottom: 1.5rem;
  }
}

/* My Journey Section */
.journey {
  padding: 5rem 5%;
  background: #f8fafc;
}

.journey-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Profile Header */
.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .profile-header {
    flex-direction: row;
    text-align: left;
    gap: 3rem;
    align-items: center;
  }
}

.profile-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info {
  flex: 1;
}

.section-title {
  font-size: 2.5rem;
  color: #3899c3;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: #64748b;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 400;
}

.profile-role {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.role-title {
  font-weight: 600;
  color: #2c3e50;
  font-size: 1.1rem;
}

.company-name {
  color: #64748b;
  font-style: italic;
}

/* Dual Mission Layout */
.dual-mission {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

@media (min-width: 992px) {
  .dual-mission {
    grid-template-columns: 1fr 1fr;
  }
}

.mission-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mission-card:hover {
  transform: translateY(-5px);
}

.mission-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mission-header i {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: rgba(100, 174, 68, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mission-teaching .mission-header i {
  color: #3899c3;
}

.mission-expats .mission-header i {
  color: #64ae44;
}

.mission-header h3 {
  color: #2c3e50;
  margin: 0;
  font-size: 1.4rem;
}

.mission-card h4 {
  color: #64748b;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.mission-benefits {
  padding-left: 0;
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.mission-benefits li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.mission-benefits i {
  color: #64ae44;
  margin-top: 3px;
  flex-shrink: 0;
}

.mission-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.95rem;
}

.mission-footer p {
  margin: 0;
}

.mission-footer strong {
  color: #2c7a9c;
}

/* Unifying Message */
.unifying-message {
  text-align: center;
  max-width: 700px;
  margin: 2rem auto 0;
  padding: 1.5rem;
  background: rgba(56, 153, 195, 0.05);
  border-radius: 8px;
}

.unifying-message p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.unifying-message strong {
  color: #2c7a9c;
  font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .journey {
    padding: 3rem 5%;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .profile-image {
    width: 150px;
    height: 150px;
  }

  .mission-card {
    padding: 1.5rem;
  }

  .mission-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .mission-header i {
    margin-bottom: 10px;
  }
}
/* FAQ Section */
.faq {
  padding: 5rem 5%;
  background: #f8fafc;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
}

.faq-question h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin: 0;
}

.faq-question i {
  color: var(--primary);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  padding-bottom: 1.5rem;
}

/* Active State */
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-top: 1rem;
}

/* Final Footer Styles */
footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 40px 20px;
  margin-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-section {
  flex: 1 1 250px;
  margin-bottom: 20px;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-section p,
.footer-section a {
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-section a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.social-media {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  justify-content: left;
}

.social-media a {
  color: var(--white);
  font-size: 1.6rem;
  transition: color 0.3s ease;
}

.social-media a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--primary-dark);
}

.footer-bottom p {
  font-size: 0.8rem;
  margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    flex: 1 1 100%;
    margin-bottom: 30px;
  }

  .social-media {
    justify-content: center;
  }
}
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: var(--white);
  color: var(--text);
  padding: 20px;
  border: 2px solid var(--primary);
  border-left: 10px solid var(--accent);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  display: none;
  z-index: 1000;
  font-family: sans-serif;
  font-size: 14px;
}

.cookie-popup button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cookie-popup button:hover {
  background-color: var(--accent-dark);
}

/* Pricacy */
/* Privacy Policy Page Styling */
.privacy-policy {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  color: var(--text);
  background-color: var(--white);
  border-left: 6px solid var(--primary);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", sans-serif;
  line-height: 1.7;
}

.privacy-policy h1 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 10px;
}

.privacy-policy h2 {
  color: var(--accent);
  margin-top: 40px;
  font-size: 1.5rem;
}

.privacy-policy p {
  margin-bottom: 16px;
  font-size: 1rem;
}

.privacy-policy a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
}

.privacy-policy a:hover {
  text-decoration: underline;
}

.big-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 200px;
  height: auto;
}
