/* === Start: Company Profile Video Styling === */
.company-profile-video {
  padding: 4rem 1rem;
  background-color: #f0f0f0;
  text-align: center;
}

.company-profile-video .section-title {
  font-size: 2rem;
  color: #222;
  margin-bottom: 1.5rem;
}

.responsive-video {
  width: 100%;
  max-width: 960px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
/* === End: Company Profile Video Styling === */

.top-bar {
  background-color: #003366;
  color: white;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.top-bar .left,
.top-bar .right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.top-bar {
  transition: transform 0.3s ease;
}


.top-bar a.email-button {
  background-color: #ffaa71;
  color: #003366;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 13px;
  transition: background-color 0.3s ease;
}

.top-bar a.email-button:hover {
  background-color: #ffc491;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-bar .left,
  .top-bar .right {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .top-bar a.email-button {
    font-size: 12px;
    padding: 6px 12px;
  }
}







.global-service {
  background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Mercator-projection.jpg/800px-Mercator-projection.jpg') no-repeat center center/cover;
  padding: 60px 20px;
  color: white;
  text-align: center;
  position: relative;
}

.global-service::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6); /* dark overlay */
  z-index: 0;
}

.global-service .container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: auto;
}

.global-service h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffaa71;
}

.global-service p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.countries {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.country-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #ffaa71;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 1.1rem;
  backdrop-filter: blur(5px);
  transition: transform 0.3s, background 0.3s;
}

.country-card:hover {
  background-color: #ffaa71;
  color: black;
  transform: scale(1.05);
}

:root {
  --primary-color: #003b73;
  --accent-color: #ffd700;
  --white: #ffffff;
  --dark: #333333;
  --light-gray: #f4f4f4;
  --medium-gray: #dddddd;
  --transition: all 0.3s ease;
}

.faq {
  background: var(--light-gray);
  padding: 60px 20px;
}

.faq .container {
  max-width: 800px;
  margin: auto;
}

.faq h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 40px;
  font-size: 2rem;
}

.accordion-item {
  border-bottom: 1px solid var(--medium-gray);
}

.accordion-header {
  width: 100%;
  background: var(--white);
  color: var(--dark);
  text-align: left;
  padding: 15px 20px;
  font-size: 1.1rem;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.accordion-header::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.2rem;
  transition: var(--transition);
}

.accordion-header.active {
  background: var(--accent-color);
  color: var(--white);
}

.accordion-header.active::after {
  content: '−';
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
  padding: 0 20px;
}

.accordion-body p {
  margin: 15px 0;
  color: var(--dark);
  line-height: 1.5;
}
/* chat css */
#live-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
  }

  #chat-toggle {
    background: var(--accent-color);
    border: none;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
  }

  #chat-window {
    width: 300px;
    max-width: 90vw;
    background: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-top: 180px;
  }

  #chat-window.hidden {
    display: none;
  }

  .chat-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px;
    font-weight: bold;
  }

  .chat-body {
    padding: 10px;
    flex: 1;
    overflow-y: auto;
  }

  #chat-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    padding: 8px;
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 8px;
  }

