
header{position: absolute;top: 0;width: 100%;left: 0;z-index: 10;border-bottom-color:none;}
.heroSection .inner{width:100%;height:600px;position: relative;padding-top:11rem;overflow: hidden;background: url('../img/e/hero1.jpg') no-repeat bottom center/cover;background-blend-mode:darken;}
.heroSection .ball{width:400px;height:400px;background:#e9f5ff;border-radius:50%;position:relative;display: grid;place-items:center;margin:0 auto;margin-top:5rem;transform:translateY(100px);box-shadow:0 0 1rem #1d5281;text-align: center;}
.heroSection .ball .ttl{position: absolute;top:3rem;font-size:2rem;color:rgb(0, 80, 130);background: linear-gradient(40deg, #4598cc, #184490,#4598cc);
  -webkit-background-clip: text;-webkit-text-fill-color: transparent;background-clip: text;color: transparent;}
.heroSection .ball .item{position: absolute;height:800px;}
.heroSection .ball .item:nth-child(1){transform:rotateZ(-50deg);}
.heroSection .ball .item:nth-child(2){transform:rotateZ(-15deg);}
.heroSection .ball .item:nth-child(3){transform:rotateZ(15deg);}
.heroSection .ball .item:nth-child(4){transform:rotateZ(50deg);}
.heroSection .ball .item .a{display: flex;align-items: center;flex-direction:column;text-transform: uppercase;font-weight: bold;color:#4598cc;}
.heroSection .ball .item:nth-child(1) .a{transform:rotateZ(50deg);}
.heroSection .ball .item:nth-child(2) .a{transform:rotateZ(15deg);}
.heroSection .ball .item:nth-child(3) .a{transform:rotateZ(-15deg);}
.heroSection .ball .item:nth-child(4) .a{transform:rotateZ(-50deg);}
.heroSection .ball .item .a .iBox{font-size:3rem;color:#4598cc;background:#fff;width:5rem;height:5rem;border-radius:1rem;display: grid;place-items: center;margin-bottom:1rem;}
.heroSection .ball .item .a .iBox i{background: linear-gradient(40deg, #ff7e5f, #feb47b);-webkit-background-clip: text;-webkit-text-fill-color: transparent;background-clip: text;color: transparent;}

@media screen and (max-width:700px) {

.heroSection .ball{width:300px;height:300px;transform:translateY(150px);}
.heroSection .ball .ttl{top:3rem;font-size:1.5rem;}
.heroSection .ball .item{position: absolute;height:950px;}
.heroSection .ball .item:nth-child(1){transform:rotateZ(-10deg);}
.heroSection .ball .item:nth-child(2){transform:rotateZ(-15deg);height:600px;}
.heroSection .ball .item:nth-child(3){transform:rotateZ(15deg);height:600px;}
.heroSection .ball .item:nth-child(4){transform:rotateZ(10deg);}
.heroSection .ball .item .a{font-size:1rem;}
.heroSection .ball .item:nth-child(1) .a{transform:rotateZ(10deg);}
.heroSection .ball .item:nth-child(2) .a{transform:rotateZ(15deg);}
.heroSection .ball .item:nth-child(3) .a{transform:rotateZ(-15deg);}
.heroSection .ball .item:nth-child(4) .a{transform:rotateZ(-10deg);}
.heroSection .ball .item .a .iBox{font-size:1.5rem;width:4rem;height:4rem;}
}

.mainBox{background:linear-gradient(175deg, hsl(209, 100%, 94%) 0%,#fff 20%);padding-block:2rem;}

/* Services Section */
#services {padding: 2rem 0;
  box-shadow:inset 1rem 0 1rem rgb(244, 240, 255);
}
#services h3 {
  text-align: center;
  margin-bottom: 2rem;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 1rem;
  padding:2rem 1rem;
  flex:1 1 300px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.card p {
  opacity:.9;
}

.ourServicesBox i{font-size:2rem;color:var(--colPri);}
.ourServicesBox .ttl{margin-top:1rem;color: var(--colPri);}

/* Testimonials Section */
#testimonials {
  padding: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
#testimonials h3 {
  text-align: center;
  margin-bottom: 2rem;
}
.testimonial {
  max-width:300px;
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #0078d4;
  color: #fff;
  border-radius: 5px;
}

/* Contact Section */
#contact {
  padding: 2rem 0;
  background: #f4f4f4;
}
#contact h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}
#contact .mainBoxBody{display: flex;flex-wrap: wrap;gap:2rem;align-items: center;}
#contact img{width:minmax(300px,80vw);}
#contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#contact input, #contact textarea, #contact button {
  width: 100%;
  min-width: 350px;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}
#contact button {
  background: #0078d4;
  color: #fff;
  border: none;
  cursor: pointer;
}
