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: -98px;
    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-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: center; /* Align items to the left */
    list-style: none; /* Remove default list bullets */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
}

.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);
}

