/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  overflow: auto;
  /* Allow page scrolling */
  overflow-x: hidden;
  /* Prevent horizontal scroll */
  background: #fff;
  height: 100%;
  width: 100%;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.top-bar {
  background-color: #001f56;
  color: #fcfcfc;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: normal;
  width: 100%;
  position: relative;
  /* Normal scrolling */
  z-index: 1100;
}

.top-bar a {
  text-decoration: none;
  /* Removes underline */
  color: inherit;
  /* Makes the link color inherit from the surrounding text */
}

.top-bar span {
  margin-right: 10px;
}

nav {
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: #ffffff;

  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', sans-serif;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

/* When navbar becomes fixed */
.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.logo {
  margin-left: 20px;
}

.logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 2px;
  text-decoration: none;
  color: #020545;
  font-weight: normal;
}

.nav-links a:hover {
  color: #005c90;
}

.Contact-Us-Button {
  background-color: #001F56;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 0px;
  background: linear-gradient(45deg, #155dc4, #001f56);
  text-decoration: none;
  transition: background 0.4s ease;

}

.Contact-Us-Button:hover {
  background: linear-gradient(45deg, #001f56, #155dc4);
}

.services-tab {
  position: relative;
}


/* Position the WhatsApp icon in the right corner */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  /* Ensure it stays on top of other elements */
}

li .submenu-link {
  font-size: 13px;
  font-weight: bold !important;
  color: #1e3a63 !important;
  padding: 5px 0 !important;
  cursor: pointer !important;
  text-align: left !important;
  letter-spacing: 0 !important;
}

.whatsapp-icon img {
  width: 60px;
  /* Adjust size as needed */
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  /* Optional: background color to match WhatsApp branding */
  padding: 10px;
  /* Optional: to create some padding around the icon */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  /* Optional: adds a shadow effect */
  transition: transform 0.3s ease;
}

.whatsapp-icon img:hover {
  transform: scale(1.1);
  /* Optional: scale effect on hover */
}

/* Gradient Section */
.gradient-section {
  display: flex;
  height: 100%;
  /* Full viewport height */
  background: linear-gradient(to right, #081e5b, #1a73e8);
  align-items: center;
}

.left-content {
  flex: 1;
  color: white;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left-content h2 {
  font-size: 50px;
}

.left-content h3 {
  font-size: 17px;
}

.left-content h1,
.left-content h2,
.left-content h3 {
  margin-bottom: 20px;
}

.left-content .buttons {
  margin-top: 30px;
}

.left-content .buttons button {
  margin-right: 15px;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 0;
  /* Rectangular buttons */
  cursor: pointer;
  background: linear-gradient(45deg, #47a3e1, #155dc4);
  color: #ffffff;
  transition: background 0.3s;
  margin: 10px 0px 10px 0;

}

.left-content .buttons button:hover {
  background: linear-gradient(45deg, #155dc4, #47a3e1);
}

/* Override styles for the second button */
.left-content .buttons .outlined-button {
  background: transparent;
  color: #fdfcfc;
  border: 2px solid #ffffff;
  border-radius: 0;
  transition: all 0.3s ease;
}

/* Hover effect for the second button */
.left-content .buttons .outlined-button:hover {
  border-color: #007BFF;

}

.curve-divider {
  line-height: 0;
  position: relative;
  top: -1px;
  /* Removes unwanted gap */
}

.curve-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

.extra {
  position: absolute;
  /* or use absolute if positioning relative to nearest parent */
  top: 40%;
  /* Change this value to move up/down */
  left: 71%;
  /* Change this value to move left/right */
  width: 200px;
  z-index: 9999;
}

.right-image {
  flex: 0.75;
  overflow: hidden;
}

.right-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Moving image aligned with the curve */
.moving-image {
  position: absolute;
  top: 99%;
  width: 100px;
  transform: translateY(-50%);
  animation: moveImage 10s infinite;
}

@keyframes moveImage {
  0% {
    right: 0;
    transform: translateY(-50%) scaleX(1);
  }

  50% {
    right: calc(100% - 100px);
    transform: translateY(-50%) scaleX(1);
  }

  51% {
    transform: translateY(-50%) scaleX(-1);
    /* Flip horizontally */
  }

  100% {
    right: 0;
    transform: translateY(-50%) scaleX(-1);
    /* Continue flipped */
  }
}

/* Info Section */
.info-section {
  /* display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 50px;
  background-color: #fff; */
  gap: 20px;
}

.margin-botom-80 {
  margin-bottom: 80px;
}

.heading-container {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
  /* Space between heading and boxes */
}

.main-heading {
  font-size: 48px;
  font-weight: bold;
  color: #022169;
}

.info-box {
  position: relative;
  padding: 0px 60px 60px;
  background: linear-gradient(to bottom, #005b8e, #1a73e8);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  font-family: Arial, sans-serif;
  text-align: center;
  clip-path: polygon(0% 0%,
      /* top-left */
      100% 0%,
      /* top-right */
      100% 85%,
      /* bottom-right start */
      50% 100%,
      /* bottom triangle tip */
      0% 85%
      /* bottom-left end */
    );
  border-radius: 20px 20px 0 0;
  /* top corners */

}

.info-box h3 {
  color: #ffffff;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  top: 8px;
  /* Negative = move up, positive = move down */
}

.info-box p {
  color: #333;
  font-size: 14px;
  line-height: 1.4;
}

.info-box:hover {
  background: linear-gradient(to bottom, #4d8bdd, #005b8e);
}

.info-box:hover h3,
.info-box:hover p {
  color: white;
  /* Change text color to white on hover */
}

.icon-container {

  z-index: 2;
}

.infobox-img {
  width: 70px;
  height: auto;
  position: relative;
  top: -18px;
  /* Negative = move up, positive = move down */
}


.info-box:hover .icon-container {
  color: white;
  /* Change icon color to white on hover */
}

.counter-section {}

.counter-box {

  background: linear-gradient(to right, #08365b, #1a73e8);
  color: white;
  border-radius: 10px;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);

}

.icon-container {

  font-size: 25px;
  /* Adjust icon size */
  color: white;
  z-index: 2;
}

.icon-container {
  font-size: 15px;
  color: white;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.icon-container1 {
  font-size: 15px;
  /* Adjust icon size */
  color: white;
  z-index: 2;
}

.counter {
  font-size: 35px;
  font-weight: bold;
  margin-left: 20px;

}

.text {
  font-size: 14px;
  margin-top: 5px;
  margin-left: 20px;
  opacity: 0.8;
}

/* Animation */
.counter-box {
  animation: counterAnimation 2.5s ease-out forwards;
}

@keyframes counterAnimation {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.half-bg-section {
  width: auto;
  padding: 40px 20px;
  background-image: url('images/Blue background with white lines.png');
  /* Replace with your image path */
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  /* Rounded corners */
  box-sizing: border-box;
  margin: 40px 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.content-wrapper {
  max-width: 50%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.content-wrapper h1 {
  /* font-size: 48px; */
  font-weight: bold;
  margin: 0;
}

.content-wrapper p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.content-wrapper button {
  padding: 12px 24px;
  background-color: #001f56;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  width: fit-content;
  transition: background 0.3s;
}

.content-wrapper button:hover {
  background-color: #004e92;
}

.clients-section {
  width: 100%;
  background-image: url('images/world-map-with-ribbion3.png');
  /* Replace with your image path */
  background-size: cover;
  /* Ensure the image covers the entire section */
  background-position: top center;
  /* Ensure it starts from the top and is centered */
  background-repeat: no-repeat;
  /* Ensure no repeat of the background image */
  /* Full viewport width */
  min-height: 340px;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  /* Remove padding to prevent any space */
  margin: 0;
  /* Ensure no margin is causing extra space */
  overflow: hidden;
}

.clients-section h2 {
  /* font-size: 54px; */
  color: #022169;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 140px;
  z-index: 1;
}

.logo-slider {
  overflow: hidden;
  width: 100%;
  z-index: 1;
}

.logos {
  display: flex;
  animation: scrollLogos 30s linear infinite;
  width: max-content;
}

.logos img {
  height: 50px;
  margin: 0 40px;
  /* Adjusted space between logos */
  flex-shrink: 0;
  filter: grayscale(100%);
  /* Make all logos black and white by default */
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logos img:hover {
  filter: grayscale(0%);
  /* Show original color on hover */
  transform: scale(1.1);
  /* Optional: gives zoom effect on hover */
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.security-section {
  background-image: url('images/Blue background.png');
  /* Replace with your background image */
  background-size: cover;
  /* Ensure the background image covers the entire section */
  background-position: top center;
  /* Ensure it starts from the top and is centered horizontally */
  background-repeat: no-repeat;
  /* Prevent repetition of the background image */
  width: 100%;
  /* Full viewport width */
  /* Increased height for more vertical space */
  display: flex;
  flex-direction: column;
  /* Stack items vertically */
  align-items: center;
  /* Center content horizontally */
  justify-content: flex-start;
  /* Align items to the top */
  padding: 0;
  /* Remove padding */
  margin: 0;
  /* Remove margin */
  overflow: hidden;
  padding-bottom: 40px;
  /* Prevent horizontal scroll */
}

.security-section h1 {
  color: white;
  text-align: center;
  margin-top: 50px;
  margin-left: 40px;
  /* Increased gap from the top */
  margin-right: 40px;
  margin-bottom: 60px;
  /* Increased space between heading and content */
  padding: 0 20px;
  /* Padding to avoid heading touching the sides */
  width: 100%;
  /* Make the heading span the full width */
  line-height: 1.5;
  /* Increase line spacing for the heading */
}

.content-container {
  position: relative;
  /* Make sure the content can be positioned inside */
  width: 80%;
  /* Set the width of the content */
  max-width: 1000px;
  /* Optional: Add a max width */
  margin-top: 40px;
  /* Increased space between heading and content */
  padding: 20px;
  /* Add padding around the image */
}

.content-container img {
  width: 100%;
  /* Make sure the image fits inside the container */
  height: auto;
  position: relative;
  /* Ensure the image stays inside the container */
  z-index: 1;
  /* Ensure the image is on top of the background */
}

.partners-section {
  background-image: url('images/white background.png');
  /* Replace with your image path */
  background-size: cover;
  /* Ensure the image covers the entire section */
  background-position: top center;
  /* Ensure it starts from the top and is centered */
  background-repeat: no-repeat;
  /* Ensure no repeat of the background image */
  width: 100%;
  /* Full viewport width */
  min-height: 300px;
  /* Full min-height: 300px;viewport height */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  /* Remove padding to prevent any space */
  margin: 0;
  /* Ensure no margin is causing extra space */
  overflow: hidden;
}

.partners-section h2 {
  /* font-size: 54px; */
  color: #022169;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 140px;
  z-index: 1;
}

.logo-slider {
  overflow: hidden;
  width: 100%;
  z-index: 1;
}

.logos {
  display: flex;
  animation: scrollLogos 30s linear infinite;
  width: max-content;
}

.logos img {
  height: 50px;
  margin: 0 40px;
  /* Adjusted space between logos */
  flex-shrink: 0;
  filter: grayscale(100%);
  /* Make all logos black and white by default */
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logos img:hover {
  filter: grayscale(0%);
  /* Show original color on hover */
  transform: scale(1.1);
  /* Optional: gives zoom effect on hover */
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.category-section {
  padding: 30px;
}

.category-section h1 {
  text-align: center;
  /* font-size: 48px; */
  color: #022169;
  margin-bottom: 30px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab {
  padding: 16px 14px;
  background-color: #ffffff;
  color: #b0b0b0;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 14px;
}

.tab:hover {
  background-color: #f5f5f5;
}

.tab.active {
  background: linear-gradient(45deg, #001f56, #155dc4);
  color: white;
  font-weight: bold;
}

.content {
  display: none;
}

.content.active {
  display: block;
}

.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.subcategory-card {
  display: flex;
  flex-direction: column;
  height: 350px;
  /* total card height */
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 0px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.subcategory-card:hover {
  transform: translateY(-5px);
  border-color: #022169;
}

.subcategory-card img {
  height: 65%;
  /* top half */
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.subcategory-card h3 {
  font-size: 16px;
  color: #022169;
  margin: 10px 0 5px;
}

.subcategory-card hr {
  border: 0;
  border-top: 1px solid #ccc;
  margin: 5px 0;
}

.subcategory-card p {
  font-size: 14px;
  color: #071153;
  padding: 0 10px;
}

/* footer*/
.image-on-top {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: -50px;
  /* Pulls the image down into the footer */
  z-index: 2;
}

.image-on-top img {
  width: 1500px;
  /* Increased width */
  height: auto;
  /* Maintain aspect ratio */
  position: center;
  top: -20px;
  /* Adjust to move up/down */
}

.footer {
  background: linear-gradient(to right, #092465, #1a71e4);
  color: #fff;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  width: 100%;
  padding-top: 90px;


}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1300px;
  margin: auto;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-column h3 {
  color: #00bfff;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.socialmedia1 {
  width: 25px;
  transition: filter 0.3s ease;
  /* Smooth transition for color change */
}

.socialmedia2 {
  width: 19px;
  position: relative;
  right: -5px;
  transition: filter 0.3s ease;
  /* Smooth transition for color change */
}

.socialmedia3 {
  width: 25px;
  position: relative;
  bottom: -7px;
}

.socialmedia1:hover,
.socialmedia2:hover {
  filter: brightness(0) saturate(100%) invert(30%) sepia(100%) hue-rotate(200deg);
  /* Example color change */
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #00bfff;
}

.contact-column p {
  margin-bottom: 10px;
}

.moving-image2 {
  position: absolute;
  top: 1107%;
  width: 100px;
  transform: translateY(-50%);
  animation: moveImage 10s infinite;
}

@keyframes moveImage {
  0% {
    right: 0;
    transform: translateY(-50%) scaleX(1);
  }

  50% {
    right: calc(100% - 100px);
    transform: translateY(-50%) scaleX(1);
  }

  51% {
    transform: translateY(-50%) scaleX(-1);
    /* Flip horizontally */
  }

  100% {
    right: 0;
    transform: translateY(-50%) scaleX(-1);
    /* Continue flipped */
  }
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
}

.footer-line {
  border: none;
  height: 1px;
  background-color: #00bfff;
  width: 100%;
  margin: 0 0 20px 0;
}

.copyright {
  color: #ccc;
  font-size: 14px;
  margin: 0;
}

/*about us*/
/* Hero Section Container */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to left, #081e5b, #1a73e8);
  padding: 50px;
  gap: 40px;
  flex-wrap: wrap;
}

/* Logo Box */
.hero-logo-box {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-img {
  max-width: 200%;
  width: 440px;
  height: auto;
}

/* Text Content Box */
.hero-text-box {
  flex: 2;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.hero-heading {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-subheading {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-description {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.5;
}

.hero-button-group {
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* Buttons */
.hero-btn {
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  font-weight: bold;
  background-color: #ffffff;
  color: #081e5b;
  border-radius: 0px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.hero-btn:hover {
  background-color: #f0f0f0;
}

.hero-btn-outline {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.hero-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.custom-banner-button {
  margin-right: 15px;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  background: linear-gradient(45deg, #47a3e1, #155dc4);
  color: #ffffff !important;
  transition: background 0.3s;
}

.custom-banner-button:hover {
  background: linear-gradient(45deg, #155dc4, #47a3e1);
  color: #ffffff !important;
}

.custom-outlined-button {
  background: transparent;
  color: #fdfcfc !important;
  border: 2px solid #ffffff !important;
  border-radius: 0;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text-box {
    text-align: center;
  }

  .hero-logo-box {
    margin-bottom: 30px;
  }
}

.white-image {
  filter: invert(100%);
}

.contact-section {
  display: flex;
  max-width: 1100px;
  margin: 40px auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-info {
  flex: 1;
  background: linear-gradient(to bottom right, #081e5b, #1a73e8);
  color: white;
  padding: 30px;
}

.contact-info h2 {
  margin-top: 0;
  font-size: 30px;
  font-weight: 600;
}

.contact-info p {
  margin: 10px 0;
  font-size: 16px;
}

.social-icons a {
  margin: 5px;
  display: inline-block;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.btn-meeting {
  display: inline-block;
  margin-top: 20px;
  cursor: pointer;
  background: linear-gradient(45deg, #47a3e1, #155dc4);
  transition: background 0.3s;
  padding: 10px 18px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.btn-meeting:hover {
  background: linear-gradient(45deg, #0044ba, #155dc4);
  color: white;
  text-decoration: none;
}

.contact-form {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form button {
  margin-right: 15px;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 0;
  /* Rectangular buttons */
  cursor: pointer;
  background: linear-gradient(45deg, #47a3e1, #155dc4);
  color: #ffffff;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: linear-gradient(45deg, #0044ba, #155dc4);
}

.mv-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  background: #ffffff;
  flex-wrap: wrap;
}

.mv-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 350px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-10px);
}

.mv-icon {
  width: 147px;
  height: 140px;
  margin-bottom: 20px;
}

.mv-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #010847;
  font-weight: 600;
}

.mv-card h3 span {
  color: #007bff;
}

.mv-divider {
  width: 90px;
  height: 2px;
  background: #007bff;
  margin: 10px auto 20px auto;
  border-radius: 2px;
  position: relative;
}

.mv-divider::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #007bff;
  position: absolute;
  left: 50%;
  top: -2px;
  transform: translateX(-50%);
  border-radius: 50%;
}

.mv-card p {
  color: #1f1b53;
  font-size: 15px;
  line-height: 1.6;
}

/* Promotional Banner Section */
.promo-banner {
  background: linear-gradient(to right, #073153, #0c3366);
  /* Dark blue background */
  color: #fff;
  padding: 60px 20px;
  overflow: visible;
}

/* Flex container to align text and image */
.promo-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Text area styling */
.promo-text {
  flex: 1;
  padding: 20px;
}

.promo-text h1 {
  font-size: 2.5rem;
  margin: 0 0 20px;
  line-height: 1.2;
  font-weight: 600;

}

/* Button styling */
.promo-btn {
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  font-weight: bold;
  background-color: #ffffff;
  color: #081e5b;
  border-radius: 0px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
}

.promo-btn:hover {
  background-color: #f0f0f0;
}

.promo-btn-outline {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.promo-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Image area styling */
.promo-image {
  flex: 1;
  position: relative;
  overflow: visible;
  padding: 20px;
}

.promo-image img {
  width: 100;
  height: auto;
  display: block;
  /* Adjust the negative margin to have the image slightly overflow */
  margin-left: 40px;
}

/* Responsive styling */
@media (max-width: 768px) {
  .promo-container {
    flex-direction: column;
    text-align: center;
  }

  .promo-image img {
    margin-left: 0;
  }

  .promo-image {
    padding: 20px 0;
  }
}

.testimonials {
  padding: 60px 20px;
  background: #ffffff;
}

.testimonial-container {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 300px;
  padding: 20px;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

.client-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
}

.testimonial-content {
  margin-top: 60px;
}

.client-name {
  font-weight: bold;
  margin: 10px 0 5px;
  font-size: 1.1em;
}

.client-role {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 0.95em;
  color: #555;
  line-height: 1.5;
}



h5 {
  color: #081e5b;
  font-size: 54px;
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  margin-left: 20px;
  margin-right: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  height: 350px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 0px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #022169;
}

.card img {
  height: 65%;
  width: 100%;
  object-fit: cover;
}

.card h3 {
  font-size: 16px;
  color: #022169;
  margin: 10px 0 5px;
}

.card hr {
  border: 0;
  border-top: 1px solid #ccc;
  margin: 5px 0;
}

.card p {
  font-size: 14px;
  color: #071153;
  padding: 0 10px;
}

.slider-section {
  position: relative;
  background: linear-gradient(to right, #081e5b, #1a73e8);
  padding: 30px 5% 50px;
  overflow: hidden;
}

.slider-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease-in-out;
  display: flex;
  align-items: center;
  gap: 30px;
}

.slider-content.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}


.slider-text {
  flex: 1;
}

.slider-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.slider-image img {
  max-width: 100%;
  width: 70%;
  height: auto;
}

.slider-subheading {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
}

.slider-heading {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
}

.slider-description {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #ffffff;
  margin-bottom: 20px;
}

.slider-button {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
}

.slider-button:hover {
  background-color: #f0f0f0;
}

.slider-button-outline {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.slider-button-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
}

.slider-dot.active {
  background-color: #022169;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
}

.top-bar {
  background: #005c90;
  padding: 8px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
}

.top-bar span,
.top-bar a {
  margin-right: 15px;
  color: #fff;
}

nav.navbar {
  background: #fff;
  padding: 10px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border-bottom: 1px solid #ddd;
}

.logo img {
  height: 50px;
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 0px !important;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.Contact-Us-Button {
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 0px;
  background: linear-gradient(45deg, #155dc4, #001f56);
  text-decoration: none;
  transition: background 0.4s ease;
  font-size: 13px;
  letter-spacing: 2px;
}


/* Responsive */
@media screen and (max-width: 991px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    padding: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

  }

  .nav-links.active {
    display: flex;
  }

  /* .services-tab .mega-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    padding: 10px 0;
  }

  .services-tab.open .mega-menu {
    display: flex;
    flex-direction: column;
  } */

  .desktop-contact {
    display: none;
  }

  .mobile-contact {
    display: block;
    margin-top: 10px;
  }
}

@media screen and (min-width: 992px) {
  .mobile-contact {
    display: none;
  }
}

/* Mobile-specific logo height */
@media (max-width: 767px) {
  .logo img {
    height: 30px;
  }

  .content-wrapper {
    max-width: 100%;
  }

  .tab {
    padding: 16px 14px;
    background-color: #ffffff;
    color: #b0b0b0;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 12px;
  }

  .main-heading {
    font-size: 30px;
  }

  .left-content h2 {
    font-size: 30px;
  }

  .mega-menu {
    left: unset;
    right: 0;
  }
}