* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:Arial, Helvetica, sans-serif;
}
.header {
  width: 100%;
  background: linear-gradient(150deg, #0b1831, #14223f);
  color: white;
  position: sticky;
  top: 0;
  /* padding: 10px; */
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(104, 103, 103, 0.1);
}
.service-card .icon {
  font-size: 40px;
  color: whitesmoke;
  background-color:#1e3768;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid transparent;
  margin: 0 auto 15px;
}

.service-card:hover .icon {
  transform: scale(1.1);
  color: #c1c4c9;
  border: 1px solid white;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  position: relative;
}
.navbar h1{
  margin-left: 120px;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  font-size: 12px;
}
.navbar ul li a:hover {
  color: #ddd;
  text-decoration: none;
}
.navbar ul li a.active {
  background-color: white;
  color: black;
  transition:all 0.3s ease, color 0.3s ease;
  border: 1px solid white;

  border-radius: 5px;
  padding:5px 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}
.uppernav {
 
  color: white;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 35px;
  padding: 8px 2%;
  font-size: 10px;
  background-color: #111;
}
.uppernav a {
  display: flex;
  align-items: center;
  gap: 8px; 
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.uppernav a:hover,.uppernav i:hover {
  color: #93c5fd;
}
.uppernav i {
  color: white;
  font-size: 14px;
}
@media (max-width: 900px) {
  .uppernav {
    gap: 30px;
    padding: 10px 5%;
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .uppernav {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 4%;
    font-size: 13px;
    text-align: center;
  }

  .uppernav a {
    justify-content: center;
    gap: 6px;
  }

  .uppernav i {
    font-size: 12px;
  }
}

.contact-top {
  color: #25d366; 
  font-weight: bold;
}
.contact-top:hover {
  color: white;
}
.email-top {
  color: #f0f0f0;
  font-weight: normal;
}
.email-top:hover {
  color: #14223f;
}
.hero {
  background: url('./image/wangxi_09_04_2022_25.jpg') center/cover no-repeat ;
  padding-top: 30px; /* separate from background */
  height: 90vh; /* or whatever height you want */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, rgba(11,24,49,0.8), rgba(20,34,63,0.8));
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  margin-left: 100px;
  max-width: 700px;
  padding: 0 30px;
}
.hero-content h2 {
  font-size: 50px;
  font-weight: 300;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 22px;
  margin-bottom: 30px;
}
.btn {
  position: relative;
  overflow: hidden;
  background-color: transparent;
  color: white;
  border: 1px solid white;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 20px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block; 
  transition: color 0.3s ease;
  z-index: 0; 
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}
.btn:hover::before,
.btn:active::before {
  transform: translateX(0);
}
.btn:hover,
.btn:active {
  color: #1e3768;
}
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}
.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}
.why-choose-us {
  text-align: center;
  margin-top: 5%;
  background: #f9f9ff;
}
.why-choose-us h1 {
  font-size: 2.2rem;
  color: #1e3768;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.why-choose-us h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #4a3aff;
  margin: 12px auto 0;
  border-radius: 3px;
}
.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
  justify-items: center;
}
.choose-grid1{
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-left: 200px;
  margin-right: 200px;
  margin-top: 30px;
  justify-items: center;
}
.choose-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border: 1px solid #eee;
}
.choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border-color: #4a3aff;
}
.choose-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #4a3aff;
  background: #f0f0ff;
  border-radius: 50%;
  transition: background 0.3s, color 0.3s;
}
.icon {
  background: #4a3aff;
  color: #fff;
}
.choose-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}
.choose-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  padding: 0 5px;
}
.info-section {
  background-color: #f44336;
  text-align: center;
  padding: 60px 20px;
}
.info-section p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: black;
}
.info-section button {
  padding: 14px 30px;
  border: none;
  background: #4a3aff;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.info-section button:hover {
  background: #ff6600;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
main {
  width: 100%;
  padding: 60px 20px;
  background: #f9f9ff;
}
.intro {
  max-width: 1000px;
  margin: 0 auto ;
  text-align: center;
  color: #222;
}
.intro p {
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}
.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}
.why-text {
  font-size: 1.1rem;
  color: #333;
  margin-top: 40px;
  text-align: center;
}
.why-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.btn-primary {
  background-color: #4a3aff;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.btn-primary:hover {
  background-color: #182641;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
.btn-secondary {
  background-color: transparent;
  color: #4a3aff;
  border: 2px solid #4a3aff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background-color: #182641;
  color: white;
  border: none;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}
.about-services {
  display: flex;
  flex-wrap: wrap; 
  justify-content: space-between;
  align-items: center;
  background-color: #1e3768; 
  color: white;
  width: 100%;
  margin-top: 20px;
  padding: 50px 50px; 
  
  box-sizing: border-box;
}
.about-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.text-content {
  width: 60%; 
  text-align: left;
  padding-right: 20px;
}
.text-content h2 {
  font-size: 18px;
  font-weight: 200;
  line-height: 1.6;
  margin-bottom: 15px;
}
.contact-btn {
  background-color: #ffcc00; 
  color: #1f3c6a;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
  display: inline-block;
}
.contact-btn:hover {
  background-color: #e6b800; 
}
.image-content {
  width: 35%; 
  display: flex;
  justify-content: center;
  align-items: center; 
  height: auto;
}
.image-content img {
  width: 100%;
  height: auto;
  border-radius: 10px; 
   
}
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}
.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}
.services-section {
  background: #f9f9ff;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  color: #222;
}

.services-list {
  margin-top: 20px;
  flex: 1 8 55%;
}
.services-list h2 {
  font-size: 30px;
  margin-bottom: 20px;
  margin-left: 200px;
  color: #111;
  position: relative;
  font-weight: 700;
}
.services-list p {
  font-size: 14px;
  margin-left: 200px;
  font-weight: lighter;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}
.services-list ul {
  margin-left: 180px;
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}
.services-list ul li {
  margin-bottom: 10px;
  color: #555;
  font-size: 1rem;
  list-style: none;
  line-height: 1.6;
}
.services-highlight {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.highlight i{
  color:#14223f;
  margin-right: 10px;
  margin-left: 10px;
}
.services-page {
  padding: 50px 20px;
}
.services-page .container {
  max-width: 1200px;
  margin: 0 auto;
}
.container h1::after{
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #1e3768;
  margin: 12px auto 0;
  border-radius: 3px;
}
.services-page h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1e3768;
}
.services-page .intro {
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}
.services-grid1 {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-left: 200px;
  margin-right: 200px;
}
.service-card {
    background-color: #1e3768;

  color: white;
  padding: 25px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
.services-page .highlight {
  background-color: #ddd;
  color: white;
  padding: 25px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  margin-top: 40px;
  transition: all 0.3s ease;
}
.aboout{
  text-align: center;
  margin-top: 40px;
}
.aboout h1{
  font-size: 2.6rem;
  color: #1e3768;
  font-weight: 700;
}
.aboout h1::after{
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #1e3768;
  margin: 12px auto 0;
  border-radius: 3px;
}
.services-page .highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}
.grid{
  display: flex;
  gap: 20px;
  justify-items: center;
  margin-top: 30px;
}
.vahi-p{
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto;
  margin-top: 20px;
  max-width: 800px;
  text-align: center;
  border-bottom: 2px solid #f7f8fc;
}
.footer {
  background-color: #1e3768;
  color: white;
  text-align: center;
  padding: 20px 0;
}
.whatsapp-btn, .email-btn {
  position: fixed;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 10000;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  animation: floatBtn 3s ease-in-out infinite;
}
.whatsapp-btn {
  background-color: #25d366;
  bottom: 20px;
  animation-delay: 0s;
}
.email-btn {
  background-color: #0072c6;
  bottom: 100px; 
  animation-delay: 0.2s;
}
.whatsapp-btn:hover, .email-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  animation: none; 
}
@keyframes floatBtn {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (max-width: 768px) {
  .text-content h2 {
    font-size: 30px;
  }
  .aboout h1{
    font-size: 1.8rem;
  }
  .aboout h1::after{
    width: 50px;
  }
  .whatsapp-btn, .email-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
    right: 15px;
  }
  .email-btn { bottom: 90px; }
  .whatsapp-btn { bottom: 15px; }
}
.designation{
  color: #555;
  margin-top: -10px;
}

.designation p{
  font-size: 14px;
  font-weight: 300;
  margin-top: 5px;
}
.hero-signature {
  text-align: right;
  font-size: 16px;
  margin-top: 30px;
  font-style: italic;
}

.services-list {
  flex: 1 1 55%;
  margin-top: 20px;
}
.services-list p {
  font-size: 14px;
  font-weight: lighter;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}
.services-list ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}
.services-list ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}
.services-highlight {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.highlight-box {
  background-color: #1e3768;
  color: white;
  padding: 30px 25px;
  border-top-right-radius: 80px;
  border-bottom-left-radius: 80px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
  transition: all 0.3s ease;
}
.highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}
.highlight-box .icon {
  font-size: 2rem;
  margin-bottom: 15px;
  display: inline-block;
}
.highlight-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.highlight-box p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.highlight i {
  color:#14223f;
  margin: 0 10px;
}
.designation i{
  color: yellow;
  margin-right: 8px;
}
@media (max-width: 1024px) {
  .navbar h1 {
    margin-left: 30px;
    font-size: 28px;
  }
  .hero-content {
    margin-left: 50px;
    max-width: 500px;
  }
  .hero-content h2 {
    font-size: 36px;
  }
  .hero-content p {
    font-size: 18px;
  }
  .choose-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .choose-grid1 {
    margin: 10px 100px;
    flex-direction: column;

  }
  .services-grid1 {
    margin: 0 10px;
    flex-direction: row;
    
  }
  .about-container {
    flex-direction: row;
    text-align: center;
  }
  .text-content, .image-content {
    width: 100%;
    padding: 0;
  }
  .text-content h2 {
    margin-top: 40px;
    margin-right: 10px;
    font-size: 14px;
  }
  .services-list h2,
  .services-list p,
  .services-list ul {
    margin-left: 50px;
    margin-right: 50px;
    text-align: left;
  }
  .services-container{
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .navbar h1 {
    margin-left: 0;
    padding: 10px;
    font-size: 24px;
  }
  .navbar ul {
    display: none;
    flex-direction: column;
    background: #14223f;
    position: absolute;
    top: 42px;
    right: 0;
    width: 92px;
    padding: 10px;
    gap: 8px;
    border-radius:0 0 8px 8px;
  }
   .navbar ul li{
    float: left;
   }
  .navbar ul.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
.choose-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .hero {
    height: 60vh;
    justify-content: center;
    text-align: center;
  }
  .highlight-box {
    border-radius: 20px;
    padding: 20px 15px;
  }
  .hero-content {
    margin-left: 0;
    padding: 0 15px;
    max-width: 100%;
  }
  .hero-content h2 {
    font-size: 28px;
  }
  .hero-content p {
    font-size: 16px;
  }
  
  .choose-grid {
    grid-template-columns: 3fr;
  }
  .choose-grid1 {
    margin: 10px 20px;
  }
  .choose-grid1>service-card{
    margin-bottom: 20px;  
    
  }
  .why-choose-us h1 {
    font-size: 1.8rem;
  }
  .text-content h2 {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .contact-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
  .why-buttons{
    flex-direction: row;
  }
  .services-container {
    flex-direction: row;
    gap: 20px;
  }
.services-list h2 {
    font-size: 22px;
}
  .services-list p {
    font-size: 13px;
  }
  .services-list ul li {
    font-size: 14px;   
  }
}
@media (max-width: 480px) {
  .navbar h1 {
    font-size: 20px; 
  }
  .about-container{
  flex-direction: column;
  margin: 0 0px;
}
  .hero {
    height: 55vh;
  }
  .hero-content h2 {
    font-size: 22px;
  }
  .hero-content p {
    font-size: 14px;
  }
  .btn {
    padding: 10px 18px;
    font-size: 16px;
  }
  .choose-card {
    padding: 20px 15px;
  }
  .choose-card h3 {
    font-size: 1rem;
  }
  .choose-card p {
    font-size: 0.85rem;
  }
  .services-page h1 {
    font-size: 1.8rem;
  }
  .services-page {
    font-size: 12px;
  }
  .intro p{
    font-size: 12px;
  }
  .services-grid1{
    flex-direction: column;
  }
  .vahi-p {
    font-size: 14px;
    padding: 0 10px;
  }
  .about-services{
    padding: 30px 20px;
  }
  .why-text{
    font-size: 12px;
    padding: 0 10px;
  }
  .why-buttons{
    flex-direction: column;
    gap: 10px;
  }
  .text-content{
    padding: 0 10px;
  }
  .service-list p{
    font-size: 0.8rem;
  }
}
@media (max-width: 320px) {
  .navbar h1 {
    font-size: 18px;
  }
  .hero-content h2 {
    font-size: 20px;
  }
  .services-grid1{flex-direction: column;}
  .hero-content p {
    font-size: 12px;
  }
  .btn {
    padding: 8px 15px;
    font-size: 14px;
  }
  .about-services{
    padding: 30px 20px;
  }
  .choose-card {
    padding: 15px 10px;
  }
  .choose-card h3 {
    font-size: 0.9rem;
  }
  .choose-card p {
    font-size: 0.8rem;
  }
  .choose-grid1 {
    margin-top:10px;
  }
}
.choose-card .icon {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
}
.service-card .icon {
  font-size: 2rem;
}
.btn-primary, .btn-secondary {
  padding: 12px 24px;
  font-size: 0.9rem;
}
.highlight-box {
  padding: 20px 15px;
}
.highlight-box h3 {
  font-size: 1.2rem;
}
.highlight-box p {
  font-size: 0.9rem;
}
.footer {
  padding: 15px 0;
}
.whatsapp-btn, .email-btn {
  width: 50px;
  height: 50px;
  font-size: 24px;
}
.email-btn {
  bottom: 80px;
}
.whatsapp-btn {
  bottom: 15px;
}
.services-list {
  flex: 1 1 55%;
  margin-top: 20px;
}
.services-grid1{
  flex-direction: column;
}
.services-list p {
  font-size: 14px;
  font-weight: lighter;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}
.services-list ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}
.services-list ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}
@media (max-width: 1024px) {
  .services-list {
    flex: 1 1 100%;
  }
  .services-list h2, 
  .services-list p,
  .services-list ul {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .services-section {
    padding: 40px 15px;
    flex-direction: row;
  }
  .text-content{
    text-align: center;
  }

}

@media (max-width: 768px) {
  .services-list h2 {
    font-size: 22px;
    text-align: center;
  }
  
  .services-list p {
    font-size: 13px;
  }
  .services-list ul li {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .services-box {
    padding: 30px 20px;
  }
.services-list h1{
  font-size: 14px;
}
  .services-list p,
  .services-list li,
  .highlight {
    font-size: 12px;
  }
  .services-list li{
    font-size: 1px;
  }
}
.services-container {
  width: 100%;
  background: linear-gradient(145deg, #f6f7fb, #e8ebf0);
  display: flex;
  justify-content: center;
  align-items: center;
}
.services-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
  padding: 50px;
  border-radius: 16px;
}
.services-list {
  flex: 1;
  min-width: 280px;
  text-align: left;
}
.services-list h1 {
  font-size: 28px;
  color: #0b1831;
  margin-bottom: 20px;
  position: relative;
}
.services-list h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #1e3a8a;
  margin-top: 10px;
  border-radius: 5px;
}
.services-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left; 
}
.services-list ul li {
  font-size: 18px;
  margin-bottom: 14px;
  color: #333;
  position: relative;
  padding-left: 28px;
  line-height: 1.6;
  transition: color 0.3s ease;
}
.services-list ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #1e3a8a;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.6;
}
.service-list {
  flex: 1;
  min-width: 280px;
}
.highlight {
  background: #f8fafc;
  border-left: 4px solid #1e3a8a;
  padding: 20px;
  margin-bottom: 25px;
  font-size: 17px;
  line-height: 1.6;
  color: #444;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.highlight i {
  color: #1e3a8a;
  margin: 0 6px;
}
@media (max-width: 768px) {
  .navbar{padding: 0px 10px;}
  .hamburger span{width: 18px;}
  .services-box {
    flex-direction: column;
    padding: 30px;
  }
  .services-list h1 {
    font-size: 24px;
  }
  .services-list ul li {
    font-size: 0.8rem;
  }
  .highlight {
    font-size: 16px;
    padding: 15px;
  }
}

/* contact form or css */
/* .contact-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #222;
}

.contact-title {
  font-size: 1.8rem;
  margin-bottom: 40px;
  font-weight: 600;
}

.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.info-box {
  text-align: center;
  width: 200px;
}

.info-box i {
  font-size: 28px;
  color: #2bb6e0;
  margin-bottom: 10px;
}

.info-box a {
  color: #2bb6e0;
  text-decoration: none;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.form-box {
  background: #fff;
  flex: 1;
  min-width: 320px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.form-box h3 {
  margin-bottom: 20px;
  font-weight: 600;
}

.form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
  font-size: 15px;
  margin-bottom: 20px;
  transition: border-color 0.3s;
}

input:focus, textarea:focus {
  border-bottom: 2px solid #2bb6e0;
}

.btn {
  background: #2bb6e0;
  color: white;
  padding: 10px 25px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.3s;
}

.btn:hover {
  background: #1994c4;
}

.image-box {
  flex: 1;
  min-width: 320px;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .info-box {
    width: 100%;
  }
} */
