* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
}

body {
    min-height: 100vh;
    background-color: #ffffff;
}

header {
    padding: 1.5rem 5%;
    border-bottom: 1px solid #DEDEDE
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    width: 90px;
}
.logo img {
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-links a.active {
    background-color: #e6e6ff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.hero {
    display: flex;
    padding: 2rem 7%;
    gap: 4rem;
    width: 100%;
}

.hero-content {
    flex: 1;
    padding-top: 4rem;
}

h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.highlight {
    color: #4040ff;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    line-height: 1.6;
}


.image-grid {
    display: flex;
    flex-wrap: wrap;
    width: 640px;
    gap: 21px;
}
.image-item {
    background-color: #f5f5f5;
    min-height: 200px;
    background-size: cover;
    background-position: center;
    height: 200.86px;
    width: 197.33px;
}

.image-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.rounded-top-left {
    border-top-right-radius: 100px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
  }
  
.item2 {
    background-color: #BEC0FF; /* Adjust color as needed */
    height: 200.86px;
    width: 197.33px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 0;
    overflow: hidden;
}

.item3{
    border-top-right-radius: 0;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
}

.item4 {
        background: conic-gradient(from 0.2deg at 50% 50%, #010125 0deg, #0E12F0 360deg);
        height: 200.86px;
        width: 197.33px;
        border-bottom-left-radius: 100px;
        border-bottom-right-radius: 100px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        overflow: hidden;
}

.item5{
    width: 394.67px;
    height: 200.86px;
    border-top-right-radius: 100px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 0;
    overflow: hidden;
}
.shape-1{
    min-height: 200px;
    height: 200.86px;
    width: 197.33px;
    background-color: #BEC0FF;
    border-radius: 50%;

}
.shape-2{
    min-height: 200px;
    height: 200.86px;
    width: 197.33px;
    border-top-right-radius: 0;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 100px;
    overflow: hidden;
}




#service-section {
    padding: 12px 5vw;
    background-color: #fff;
    text-align: center;
    margin-bottom: 60px;
  }
  
  .service-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .service-list ul li {
    background-color: #fff;
    width: 100%;
    max-width: 360px;
    box-sizing: border-box;
    padding: 20px;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
  }
  
  .service-list ul li:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .service-list ul li .icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px auto;
    border-radius: 50%;
    background-color: #F9F5FF;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .service-list ul li .icon img {
    width: 28px;
    height: 28px;
  }
  
  .type-h3 {
    margin: 12px 0;
    font-size: 18px;
    font-weight: 600;
    font-family: Poppins;
  }
  
  .p {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #475467;
    text-align: center;
  }
  
  /* Responsive tweaks */
  @media (max-width: 992px) {
    .service-list ul {
      gap: 30px;
    }
  
    .service-list ul li {
      max-width: 300px;
    }
  }
  
  @media (max-width: 600px) {
    .service-list ul li {
      max-width: 100%;
    }
  }
  