body {
  margin: 0;
  /* font-family: 'Segoe UI', sans-serif; */
  font-style: italic;
}

footer {
  text-align: center;
  padding: 15px;
  background-color: black;
  color: white;
  font-weight: bold;
}

.top-header {
  color: black;
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding: 25px 20px;
}

.top-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 25px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), transparent);
  pointer-events: none;
  z-index: -1;
}

.logo {
  display: flex;
  text-align: center;
}

.logo ul {
  list-style: none;
  display: flex;
  gap: 50px;
  margin-left: 350px;
  padding: 0;
  align-items: center;
}

.logo a {
  color: #0f2842;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.logo h1{
  text-align: center;
  padding:  15px 14px;;
}
.logo a:hover,
.logo a.active {
  background-color: #0f2842;
  color: #5db2fd;
}

.home-tab{
  display: none;
  /* background: linear-gradient(to bottom, #02c4aa, #01325a); */
  /* background: linear-gradient(to bottom, #f6f9ed, #dbf786); */
  padding: 4rem 2rem;
  color: white;
  background-color: rgba(255, 255, 255, 0.893);
}

.home-tab.active {
  display: block;
}

.welcome-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.text-content {
  flex: 1 1 400px;
  min-width: 280px;
}

.text-content a {
  cursor: pointer;
  background-color: #0f2842;
  color: #5db2fd;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 14px;
  border-radius: 8px;
}

.image-content {
  flex: 1 1 400px;
  min-width: 280px;
  text-align: center;
}

.text-content h1 {
  color: #0f2842;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

.text-content h1 span {
  color: green;
  font-style: italic;
}

.text-content h3 {
  color: #0f2842;
}

.image-content img {
  max-width: 100%;
  height: auto;
}

.content-section {
  display: none;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.893);
  /* background: linear-gradient(to bottom, #faf9fb, #371a37); */
  /*border: 1px solid #ddd;
  border-radius: 8px; */
  margin-bottom: 20px;
  color: #000000;
  font-weight: bold;
}

.content-section.active {
  display: block;
}

@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

.contact-title {
text-align: center;
font-size: 32px;
font-weight: bold;
margin-top: 0;
margin-bottom: 30px;
color: #0e2239;
}

.contact-container {
display: flex;
justify-content: center;
gap: 50px;
/* background-color: #ffffff; */
background-color: #edf5fa; /*0c2e4e Dark blue background */
border: 4px solid #0c2e4e; /* 23b4fc Light blue border */
padding: 30px;
border-radius: 12px;
max-width: 1000px;
margin: 0 auto;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-box {
flex: 1;
text-align: center;
color: #0e2239;
}

.contact-icon {
font-size: 36px;
color: #004080;
margin-bottom: 10px;
}

.contact-box h3 {
margin: 10px 0 5px;
font-size: 18px;
color: #0e2239;
word-break: break-word;
}

.contact-box p {
margin: 0;
color: #8a94a6;
font-size: 14px;
}

.logo img {
  width: 300px;
  margin-right: 10px;
}

.top-bar {
  background-color: #f2f2f2;
  padding: 5px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.social-icons img {
  width: 20px;
  margin-left: 10px;
}

.hero {
  position: relative;
  background: #332218;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.hero-img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  margin: 20px 0;
}

.hero-caption {
  background-color: rgba(255,255,255,0.7);
  color: black;
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  margin-top: 10px;
}

.register-btn {
  display: inline-block;
  margin-top: 20px;
  background: #004aad;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}

.vma-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  color: #003366;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background-color: #003366;
  margin: 10px auto 0;
}

.vma-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.vma-card {
  display: block;
  /* margin: auto; */
  background: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 30px 20px;
  width: 300px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-bottom: 4px solid #0f2842; 
}

.vma-icon {
  display: block;
  margin: auto;
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.vma-card h3 {
  text-align: center;
  color: #003366;
  margin-bottom: 15px;
  font-size: 20px;
}

.vma-card p {
  margin: auto;
  color: #003366;
  font-size: 15px;
  line-height: 1.6;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: #f5f5f8;
  color: #333;
}

.container {
  /*display: none; */
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}
.container h1 {
  font-style:italic;
}

/* .container.active {
  display: block;
} */

h1 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.tabs {
  display: flex;
  gap: 3rem; /* Adds space between tabs */
  margin-bottom: 2rem;
  border-bottom: 3px solid #ccc;
 /* justify-content: center;  Center tabs horizontally */
}

.tabs button{
  font-style: italic;
  font-weight: 700;
}

.tab {
  background: none;
  border: none;
  font-size: 1.1rem;
  padding: 1rem 2rem; /* Makes them broader */
  cursor: pointer;
  color: #555;
  position: relative;
  border-radius: 8px 8px 0 0;
  background-color: #e6e6f8;
  transition: background-color 0.3s ease;
  min-width: 150px;
  text-align: center;
}

.tab:hover {
  background-color: #dcdcf1;
}

.tab.active {
  color: #5d3fd3;
  font-weight: bold;
  background-color: #fff;
}

.tab.active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #5d3fd3;
}

.content {
  background-color: #edf5fa; /*0c2e4e Dark blue background */
  border: 4px solid #0c2e4e; /* 23b4fc Light blue border */
  /* background: #fff; */
  /* color: #fff; */
  padding: 2rem;
  border-radius: 12px;
  position: relative;
}

.highlight {
  color: #000;
}

.tab-content {
  display: none;
}
.tab-content p{
  color: #0f2842;
  font-weight: 00;
}
.tab-content ul{
  color: #0f2842;
  font-weight: 500;
}
.tab-content.active {
  display: block;
}

.bullet{
  list-style-type: circle;
}

.clients {
  padding: 3rem 1rem;
  text-align: center;
}

.clients h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #333;
  font-weight: 600;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.logo-card {
  background: white;
  padding: 1rem;
  border-radius: 12px;
  border-bottom: 4px solid #0f2842; 
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  width: 140px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.logo-card img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}

.logo-card p {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: #333;
  font-weight: 500;
}

.leader {
  display: none;
  /* background: linear-gradient(to bottom, #faf9fb, #371a37); */
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  
  /* color: white; */
}

.leader.active{
  display: block;
}
.person-card {
  /* background: linear-gradient(to bottom, #e9d6f7, #cc2bd7); */
  background-color: #0c2e4e; /* 0c2e4e Dark blue background */
  border: 4px solid #23b4fc; /* 23b4fc Light blue border */
  border-radius: 10px;
  padding: 30px;
  border-radius: 12px;
  max-width: 1400px;
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.person-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
}

.person-info {
  flex: 1;
  color: #000000;
  font-weight: bold;
}

.person-info h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.person-info p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.profile-box {
  display: flex;
  align-items: center;
  gap: 20px; /* spacing between name and description */
  margin: 20px 0;
  flex-wrap: wrap; /* Optional: allows wrapping on smaller screens */
}

.name {
  font-size: 2.5em;
  font-weight: bold;
  margin: 0;
  white-space: nowrap; /* Keeps name on one line */
}

.title {
  font-size: 1em;
  color: #000102;
  margin: 0;
  line-height: 1.4;
}

.service-title {
  text-align: center;
  font-size: 28px;
  margin-top: 30px;
  font-weight: 700;
  color: #00264d;
}

.services-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 20px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.services-table thead {
  background-color: #004080;
  color: #ffffff;
}

.services-table th,
.services-table td {
  padding: 16px 20px;
  text-align: left;
  vertical-align: top;
}

.services-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.services-table tbody tr:hover {
  background-color: #e6f0ff;
  transition: background-color 0.3s ease;
}

.services-table th:first-child,
.services-table td:first-child {
  border-top-left-radius: 12px;
}

.services-table th:last-child,
.services-table td:last-child {
  border-top-right-radius: 12px;
}
.services-table tbody tr:nth-child(odd) {
  background-color: #ffffff; /* white */
}

.services-table tbody tr:nth-child(even) {
  background-color: #f0f0f0; /* light grey */
}

.services-table td {
  color: #00264d; /* consistent dark font color */
}

.client-segments {
  width: 80%;
  margin: 50px auto;
  padding: 30px;
  background: #f7faff;
  border: 1px solid #d6e4f0;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 64, 128, 0.05);
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
}

.client-segments h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 20px;
  color: #00264d;
  font-weight: 700;
}

.client-segments ul {
  list-style-type: disc;
  padding-left: 25px;
  line-height: 1.8;
  color: #333;
}

.client-segments ul li {
  margin-bottom: 10px;
}

.about-header{
  text-align: center;
  background-color: #003366;
  color: white;
}

.about-info{
  background-color: #edf5fa; /* 0c2e4e Dark blue background */
  border: 4px solid #0c2e4e; /* 23b4fc Light blue border */
  border-radius: 10px;
}

.why-header {
  text-align: center;
  font-size: 24px;
  color: #00264d;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: 'Segoe UI', sans-serif;
}

.why-choose {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 30px;
  background-color: #f5faff;
  border: 1px solid #d0e6ff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 64, 128, 0.05);
  list-style: none;
  font-size: 16px;
  line-height: 1.8;
  color: #003366;
  font-family: 'Segoe UI', sans-serif;
}

.best-employee {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f0f4ff, #e0eaff);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.employee-card {
  background-color: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 300px;
  transition: transform 0.3s ease;
}

.employee-card:hover {
  transform: scale(1.05);
}

.employee-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #0246bc;
}

.employee-name {
  font-size: 1.5em;
  color: #333;
  margin: 10px 0 5px;
}

.employee-title {
  font-size: 1.1em;
  color: #0f2842;
  font-weight: 500;
}
