body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}
.container1 {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  width: 85%;
  height: 45vh;
  background: #02344b;
  margin-top: 50px;
  border-radius: 15px;
  padding-top: 50px;
}

.container2 {
  width: 65%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 80px 0px 54px;
  background: white;
  margin-top: -170px;
  position: relative; /* <-- Yeh zaroori hai */
  z-index: 1 !important;
  border-radius: 15px;
}

.intro {
  margin-bottom: 40px;
}
.intro p {
  font-size: 16px;
  line-height: 1.6;
}
.highlight {
  color: #00c853;
  text-decoration: underline;
}
.services {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  text-align: center;
}
.service-item {
  flex: 1;
  margin: 0 10px;
}
.service-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}
.service-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.service-item p {
  font-size: 14px;
  color: #666;
}
/* .section {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
}
.section img {
  width: 50%;
  border-radius: 12px;
  object-fit: cover;
}
.section-content {
  width: 50%;
} */
.section {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
}
.section{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.section img {
  width: 47%;
  border-radius: 12px;
  object-fit: cover;
}
.section-content {
  width: 47%;
}
.section-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 44px;
}
.section-content p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #666;
}
.section-content ul {
  list-style: none;
  padding: 0;
}
.section-content ul li {
  margin-bottom: -9px;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
  font-family: "poppins", sans-serif;
  font-weight: 400;
}
.section-content ul li::before {
  content: ". ";
  font-size: 35px;
  font-weight: bold;
  color: #02344b; /* Blue color */
}
@media (max-width: 768px) {
  .services {
    flex-direction: column;
  }
  .section {
    flex-direction: column;
  }
  .section img,
  .section-content {
    width: 100%;
  }
}

.headh4 {
  font-size: 18px;
}

.para {
  font-size: 16px;
}
.built-list li::before {
  content: "Built: ";
  font-weight: bold;
  color: #007bff; /* Blue color */
}

.horizontal-menu {
  display: flex; /* Flexbox layout to align items horizontally */
  justify-content: flex-start; /* Align items to the left */
  list-style: none; /* Remove default list bullets */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margin */
  justify-content: center;
  flex-wrap: wrap;
}

.horizontal-menu li {
  margin-right: 20px; /* Space between the items */
}

.horizontal-menu li a {
  display: flex; /* Flex on the link itself */
  align-items: center; /* Vertically align text and icon */
  text-decoration: none; /* Remove underline */
  color: #000; /* Set the text color */
  font-size: 16px; /* Adjust font size */
}

.horizontal-menu li a:hover {
  color: #007bff; /* Change color on hover */
}

.horizontal-menu li a i {
  margin-left: 5px; /* Space between text and icon */
}

.services-heading {
  color: aliceblue;
}

.zoom-hover {
  transition: transform 0.4s ease;
}

.zoom-hover:hover {
  transform: scale(1.1);
}

.tabs {
  width: 50%;
  height: 60vh;
  border: 5px dashed #02344b;
  border-radius: 15px;
}
.tabsContainer {
  display: flex;
  gap: 70px;
}
.tabsheading {
  font-size: 35px;
  color: #02344b;
}
