/* === GLOBAL === */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* === NAVIGATION === */
.main-header {
  background-color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  height: 50px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.main-nav a {
  color: #002f6c;
  font-weight: 500;
}

.main-nav a:hover {
  color: #c80000;
}

.cta-link-red {
  background-color: #c80000;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: 700;
}

/* === HERO SECTION === */
.hero {
  background: url('images/background.png') center/cover no-repeat;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* === SLIDESHOW === */
.slideshow {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  overflow: hidden;
}

.slides-wrapper {
  position: relative;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
  width: 100%;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

.slide-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  background-color: rgba(0, 0, 0, 0);
  color: white;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.slide-btn:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.slide-left {
  left: 0;
}

.slide-right {
  right: 0;
}

.arrow-icon {
  font-size: 2rem;
  pointer-events: none;
}

/* === CONTACT PAGE === */
.contact-page {
  padding: 4rem 2rem;
  background-color: white;
  text-align: center;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.contact-box {
  background-color: #f1f1f1;
  padding: 2rem;
  border-radius: 10px;
  flex: 1 1 200px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
}

/* === FAQ === */
.faq-question {
  width: 100%;
  background: #eee;
  padding: 1rem;
  border: none;
  text-align: left;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 0.5rem;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #ddd;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f9f9f9;
  padding: 0 1rem;
  transition: max-height 0.4s ease, padding 0.3s ease;
  display: block;
}

.faq-answer.open {
  max-height: 500px;
  padding: 1rem;
  background: #e3f0ff;
  display: block;
}

/* === FOOTER === */
.footer {
  background-color: #002f6c;
  color: white;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

/* === ICON BUTTONS === */
.right-icons {
  position: absolute;
  top: 100%;
  right: 20px;
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.icon-box {
  width: 38px;
  height: 38px;
  background-color: #1877f2;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.icon-box i {
  color: white;
  font-size: 20px;
  line-height: 1;
}

/* === LANGUAGE TOGGLE === */
.language-toggle {
  position: relative;
}

.language-options {
  position: absolute;
  top: 120%;
  right: 0;
  display: none;
  flex-direction: column;
  background: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.language-toggle.open .language-options {
  display: flex;
}

.language-options a {
  padding: 0.5rem 1rem;
  color: #002f6c;
}

.language-options a:hover {
  background: #f5f5f5;
}

.language-toggle i {
  color: white;
  font-size: 20px;
}

.language-toggle .fa-globe {
  background-color: #1877f2;
  border-radius: 6px;
  padding: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === ABOUT US === */
.about-hero {
  height: 85vh;
  background: url('images/about us.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-hero-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.about-card {
  padding: 2rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 900px;
  margin-bottom: 3rem;
  text-align: center;
}

.about-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-buttons button {
  background-color: white;
  color: #002f6c;
  padding: 1rem 1.5rem;
  border: 2px solid #002f6c;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 150px;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.about-buttons button span {
  font-size: 1.2rem;
  color: #002f6c;
  transition: transform 0.3s ease;
}

.about-buttons button:hover {
  background-color: #002f6c;
  color: white;
  border-color: #002f6c;
}

.about-buttons button:hover span {
  color: white;
  transform: translateX(4px);
}

.about-section {
  padding: 4rem 1rem;
  background-color: white;
  text-align: center;
}

.about-section h2 {
  color: #002f6c;
  margin-bottom: 1rem;
}

.about-section p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.1rem;
}
html {
  scroll-behavior: smooth;
}
.section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.section-content p {
  flex: 1 1 400px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.section-content img {
  flex: 1 1 300px;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-buttons button span {
  font-size: 1.2rem;
  color: #002f6c;
  transition: transform 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.visible {
  opacity: 1;
  transform: none;
}
.hero-heading {
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-top: 2rem;
}
.map-area {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 600px;
  margin: 4rem auto;
}

.country-group {
  position: absolute;
  transition: transform 0.3s ease;
}

.country-group:hover {
  transform: scale(1.05);
  z-index: 3;
}

.country-img {
  display: block;
  width: 100%;
}

.label-img {
  width: auto;
  transition: transform 0.3s ease;
}

.country-group:hover .label-img {
  transform: scale(1.2);
  z-index: 4;
}
/* === MOBILE OPTIMIZATIONS ONLY === */
@media (max-width: 480px) {

  /* Navigation */
  .nav-container {
    flex-wrap: wrap;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: 0.5rem;
  }
  .main-nav li {
    text-align: center;
  }

  /* Hero */
  .hero h1 {
    font-size: 2rem;
    padding: 0 1rem;
  }
  .hero p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  /* Slideshow buttons */
  .slide-btn {
    width: 40px;
  }

  /* About section content */
  .section-content {
    flex-direction: column;
  }
  .section-content p,
  .section-content img {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Contact page */
  .contact-page {
    padding: 2rem 1rem;
  }
  .contact-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .contact-box {
    width: 100% !important;
  }

  /* FAQ */
  .faq-question {
    font-size: 1.1rem;
    padding: 1rem;
  }
  .faq-answer.open {
    max-height: 400px;
    padding: 1rem;
  }

  /* Footer */
  .footer {
    font-size: 0.85rem;
    padding: 1rem 0;
  }

  /* Right icons (Facebook & Language toggle) */
  .right-icons {
    position: static;
    justify-content: center;
    margin-top: 1rem;
  }
  .icon-box {
    width: 36px;
    height: 36px;
  }
  .language-toggle .fa-globe {
    padding: 8px;
  }
}
/* === ENHANCED FOOTER === */
.footer-content {
  background-color: #1c2e5b;
  color: white;
  padding: 3rem 0 0;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  border-bottom: 2px solid #c80000;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.4;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-links i {
  width: 16px;
  text-align: center;
  color: white;
  transition: color 0.3s ease;
}

.footer-links a:hover i {
  color: #c80000;
}

.contact-info {
  color: #e0e0e0;
  line-height: 1.6;
}

.contact-info p {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.4;
}

.contact-info i {
  width: 16px;
  text-align: center;
  color: white;
}

.footer-bottom {
  background-color: #001f4d;
  text-align: center;
  padding: 1.5rem 0;
  width: 100%;
  margin: 0;
}

.footer-bottom p {
  margin: 0;
  color: #e0e0e0;
  font-size: 0.9rem;
}

/* Mobile optimization for footer */
@media (max-width: 768px) {
  .footer-content {
    padding: 2rem 0 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem 1.5rem;
  }
  
  .footer-section h3 {
    font-size: 1.1rem;
  }
  
  .footer-links li {
    margin-bottom: 0.7rem;
  }
  
  .contact-info p {
    margin-bottom: 0.7rem;
  }
}
/* Fix alignment between sections */
.footer-section {
  align-self: flex-start;
}

.footer-section h3 {
  margin-top: 0;
  margin-bottom: 1.2rem;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.contact-info p {
  margin-bottom: 0.8rem;
  margin-top: 0;
}
/* Justify text in About Us and Services sections */
.about-section p,
.service-text {
  text-align: justify;
  text-justify: inter-word;
}