.elementor-2324 .elementor-element.elementor-element-c5e54bd{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-fe50fe4 */body {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  margin: 0;
  background: #fff;
  overflow-x: hidden;
}

/* HERO SECTION */
.service-hero {
  position: relative;
  background: linear-gradient(120deg, #ffffff 0%, #e6faff 100%);
  overflow: hidden;
  padding: 120px 8%;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text {
  max-width: 500px;
  z-index: 2;
}

.hero-text h1 {
  font-size: 46px;
  color: #0099cc;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  color: #555;
}

.btn-primary {
  display: inline-block;
  background: #0099cc;
  color: #fff;
  padding: 12px 35px;
  border-radius: 30px;
  margin-top: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #007fa8;
  transform: translateY(-2px);
}

.hero-graphic img {
  max-width: 420px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {transform: translateY(0);}
  50% {transform: translateY(-10px);}
}

/* Floating shapes */
.floating-shapes span {
  position: absolute;
  width: 18px;
  height: 18px;
  background: rgba(0,153,204,0.2);
  border-radius: 50%;
  animation: floatShape 8s infinite ease-in-out;
}
.floating-shapes span:nth-child(1){ top: 20%; left: 15%; animation-delay: 0s;}
.floating-shapes span:nth-child(2){ top: 60%; left: 25%; animation-delay: 2s;}
.floating-shapes span:nth-child(3){ top: 40%; right: 15%; animation-delay: 4s;}
.floating-shapes span:nth-child(4){ bottom: 15%; right: 25%; animation-delay: 6s;}
@keyframes floatShape {
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-15px);}
}

/* Separator line */
.section-separator {
  height: 5px;
  background: linear-gradient(90deg, transparent, #0099cc, transparent);
  width: 100%;
  margin: 0 auto;
  animation: moveLine 6s linear infinite;
}
@keyframes moveLine {
  from {background-position: 0 0;}
  to {background-position: 200% 0;}
}

/* ABOUT */
.service-about {
  text-align: center;
  padding: 80px 10%;
}
.service-about h2 {
  color: #0099cc;
  margin-bottom: 15px;
  font-size: 32px;
}

/* OFFERINGS */
.offerings {
  background: #f5f9fc;
  padding: 100px 10%;
  text-align: center;
}
.offerings h2 {
  color: #0099cc;
  margin-bottom: 50px;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}
.offer-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}
.offer-card i {
  font-size: 40px;
  color: #0099cc;
  margin-bottom: 15px;
}

/* WHY CHOOSE */
.why-choose {
  padding: 90px 10%;
  text-align: center;
}
.why-choose h2 {
  color: #0099cc;
  margin-bottom: 50px;
}
.choose-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.choose-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s;
}
.choose-card:hover {
  transform: translateY(-8px);
}
.choose-card i {
  font-size: 36px;
  color: #0099cc;
  margin-bottom: 10px;
}

/* TESTIMONIALS */
.testimonials {
  background: #f9fcff;
  padding: 100px 10%;
  text-align: center;
}
.testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.testimonial {
  display: none;
  animation: fadeIn 1s ease;
}
.testimonial.active {
  display: block;
}
.testimonial p {
  font-size: 18px;
  color: #555;
  font-style: italic;
}
.testimonial h4 {
  margin-top: 15px;
  color: #0099cc;
}
@keyframes fadeIn {
  from {opacity:0;}
  to {opacity:1;}
}

/* CTA SECTION */
.cta-section {
  position: relative;
  background: #0099cc;
  color: #fff;
  padding: 100px 10%;
  text-align: center;
  overflow: hidden;
}
.cta-section .wave-bg {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: wave 8s linear infinite;
}
@keyframes wave {
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}
.cta-content {
  position: relative;
  z-index: 2;
}
.btn-primary.white {
  background: #fff;
  color: #0099cc;
}
.btn-primary.white:hover {
  background: #e6faff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-container {flex-direction: column; text-align: center;}
  .hero-graphic img {margin-top: 40px;}
  .choose-grid {flex-direction: column; align-items: center;}
}/* End custom CSS */