 *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    html,
    body{
      width:100%;
      overflow-x:hidden;
    }

    body{
      font-family: Arial, Helvetica, sans-serif;
      padding-bottom: 72px;
    }

    a{
      text-decoration:none;
    }

    /* =========================
       TOP BAR
    ========================== */

    .top-bar{
      background:#ececec;
      padding:12px 0;
      font-size:15px;
      color:#444;
    }

    .top-bar span{
      font-weight:600;
    }

    /* =========================
       HEADER
    ========================== */

    .main-header{
      background:#fff;
      /* padding:30px 0; */
    }

    .logo-box{
      display:flex;
      align-items:center;
      gap:15px;
    }

    .logo-icon{
      font-size:55px;
      color:#4cbfed;
    }

    .logo-text h2{
      margin:0;
      font-size:24px;
      font-weight:700;
      color:#4cbfed;
      line-height:1.1;
    }

    .logo-text p{
      margin:0;
      font-size:18px;
      font-weight:700;
      color:#4cbfed;
    }

    .header-info{
      display:flex;
      align-items:center;
      gap:15px;
    }

    .header-info i{
      font-size:32px;
      color:#4cbfed;
    }

    .header-info h5{
      margin:0;
      font-size:18px;
      font-weight:700;
      color:#333;
    }

    .header-info p{
      margin:0;
      color:#666;
      font-size:15px;
    }

    /* =========================
       NAVBAR
    ========================== */

    .custom-navbar{
      background:#343c4c;
      padding:0;
      position:sticky;
      top:0;
      z-index:9999;
      box-shadow:0 2px 10px rgba(0,0,0,0.08);
    }

    .navbar-nav .nav-link{
      color:#fff;
      padding:22px 20px !important;
      font-size:17px;
      font-weight:500;
    }

    .navbar-nav .nav-link:hover{
      background:#4cbfed;
      color:#fff;
    }

    .navbar-nav .active{
      background:#4cbfed;
    }

    .call-btn{
      background:#4cbfed;
      color:#fff;
      padding:20px 38px;
      font-weight:700;
      transition:0.3s;
      white-space:nowrap;
    }

    @media(max-width:991px){
      .call-btn.mobile-btn{
        padding:10px 18px;
        font-size:14px;
      }
    }

    .call-btn:hover{
      background:#4cbfed;
      color:#fff;
    }

    .navbar-toggler{
      border:1px solid #777;
      padding:7px 12px;
    }

    .navbar-toggler:focus{
      box-shadow:none;
    }

    .navbar-toggler i{
      color:#fff;
      font-size:24px;
    }

  /* =========================
   DROPDOWN
========================= */

.dropdown-menu{
  border-radius:0;
  border:none;
  padding:0;
  min-width:320px;
}

.dropdown-item{
  padding:14px 18px;
  font-size:15px;
  border-bottom:1px solid #eee;
  white-space:normal;
  word-break:break-word;
  line-height:1.5;
}

.dropdown-item:hover{
  background:#4cbfed;
  color:#fff;
}

/* DESKTOP DROPDOWN */
@media(min-width:992px){

  .dropdown:hover .dropdown-menu{
    display:block;
    margin-top:0;
  }

}

/* MOBILE DROPDOWN */
@media(max-width:991px){

  .dropdown-menu{
    min-width:100%;
    background:#3d4658;
  }

  .dropdown-item{
    color:#fff;
    font-size:14px;
    padding:12px 15px;
    overflow-wrap:break-word;
    word-break:break-word;
  }

  .dropdown-item:hover{
    background:#4cbfed;
  }

}

/* =========================
   MOBILE HEADER
========================= */

@media(max-width:991px){

  /* HIDE TOP BAR */
  .top-bar{
    display:none;
  }

  /* SMALL HEADER */
  .main-header{
    padding:15px 0;
  }

  /* HIDE RIGHT SIDE INFO */
  .header-right{
    display:none !important;
  }

  /* LOGO ALIGN */
  .logo-box{
    justify-content:center;
  }

  /* SMALL LOGO */
  .logo-icon{
    font-size:38px;
  }

  .logo-text h2{
    font-size:20px;
  }

  .logo-text p{
    font-size:15px;
  }

}
/* =========================
   SLIDER
========================= */

.slider-img{
  height:650px;
  object-fit:cover;
}

/* CAPTION */

.carousel-caption{
  bottom:20%;
}

.carousel-caption h2{
  font-size:52px;
  font-weight:700;
}

.carousel-caption p{
  font-size:20px;
}

/* MOBILE VIEW */

@media(max-width:991px){

  .slider-img{
    height:300px;
  }

  .carousel-caption{
    bottom:10%;
  }

  .carousel-caption h2{
    font-size:24px;
  }

  .carousel-caption p{
    font-size:14px;
  }

}
/* =========================
   SLIDER OVERLAY
========================= */

.carousel-item{
  position:relative;
}

.carousel-item::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;

  /* GRADIENT OVERLAY */
  background:linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.20)
  );

  z-index:1;
}

/* CONTENT ABOVE OVERLAY */
.carousel-caption{
  z-index:2;
}



.about-section{
  background:#f8fbff;
}

/* IMAGE */
.about-img-wrapper{
  position:relative;
}

.about-img-wrapper img{
  height:650px;
  object-fit:cover;
}

/* EXPERIENCE BADGE */
.experience-badge{
  position:absolute;
  bottom:30px;
  right:-20px;
  background:#4cbfed;
  color:#fff;
  padding:25px 30px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
  text-align:center;
}

.experience-badge h2{
  font-size:42px;
  font-weight:700;
  margin-bottom:5px;
}

.experience-badge span{
  font-size:16px;
}

/* TAG */
.about-tag{
  display:inline-block;
  padding:10px 20px;
  background:#e8f0ff;
  color:#4cbfed;
  border-radius:50px;
  font-weight:600;
  font-size:14px;
  letter-spacing:0.5px;
}

/* TITLE */
.about-title{
  font-size:46px;
  font-weight:800;
  line-height:1.3;
  color:#111;
}

/* TEXT */
.about-text{
  color:#666;
  font-size:17px;
  line-height:1.9;
}

/* COUNTER BOX */
.counter-box{
  background:#fff;
  padding:35px 25px;
  border-radius:22px;
  text-align:center;
  transition:0.4s;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  height:100%;
  border:1px solid #eef2f7;
}

.counter-box:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.counter-box h3{
  font-size:42px;
  font-weight:800;
  color:#4cbfed;
  margin-bottom:10px;
}

.counter-box p{
  margin:0;
  color:#555;
  font-size:16px;
  font-weight:500;
  line-height:1.6;
}

.home-about-section{
  position:relative;
  background:
    linear-gradient(180deg, #f5f9fe 0%, #ffffff 100%);
}

.home-about-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 12% 18%, rgba(21,117,190,0.14), transparent 20%),
    radial-gradient(circle at 88% 72%, rgba(8,28,68,0.08), transparent 24%);
  pointer-events:none;
}

.about-home-shell{
  position:relative;
  z-index:1;
  padding:32px;
  border-radius:34px;
  background:#fff;
  box-shadow:0 28px 70px rgba(8,28,68,0.08);
  border:1px solid #e7eef7;
}

.home-about-section .about-tag{
  background:#0f5d98;
  color:#fff;
  box-shadow:0 12px 24px rgba(15,93,152,0.18);
}

.home-about-section .about-title{
  font-size:48px;
  line-height:1.15;
  max-width:560px;
}

.home-about-section .about-text{
  color:#536277;
  max-width:560px;
}

.about-home-points{
  display:grid;
  gap:16px;
  margin:30px 0 24px;
}

.about-home-point{
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:18px 20px;
  border-radius:20px;
  background:linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border:1px solid #e3edf8;
}

.about-home-point i{
  flex:0 0 48px;
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:#e8f2fb;
  color:#4cbfed;
  font-size:22px;
}

.about-home-point strong{
  display:block;
  margin-bottom:4px;
  font-size:17px;
  color:#12233f;
}

.about-home-point span{
  display:block;
  color:#617188;
  font-size:14px;
  line-height:1.7;
}

.about-home-stat-card{
  height:100%;
  padding:24px 22px;
  border-radius:22px;
  background:#4cbfed;
  color:#fff;
  box-shadow:0 20px 40px rgba(13,34,63,0.16);
}

.about-home-stat-card h3{
  margin:0 0 8px;
  font-size:38px;
  font-weight:800;
}

.about-home-stat-card p{
  margin:0;
  font-size:15px;
  line-height:1.7;
  color:rgba(255,255,255,0.78);
}

.about-home-visual{
  position:relative;
  min-height:620px;
}

.about-home-pattern{
  position:absolute;
  top:24px;
  right:12px;
  width:220px;
  height:220px;
  border-radius:32px;
  background-image:radial-gradient(rgba(21,117,190,0.18) 2px, transparent 2px);
  background-size:18px 18px;
}

.about-home-main-card{
  position:absolute;
  inset:0 58px 70px 0;
  padding:18px;
  border-radius:34px;
  background:linear-gradient(160deg, #eff6fc, #dfeef9);
  box-shadow:0 32px 70px rgba(8,28,68,0.14);
}

.about-home-main-card img{
  height:100%;
  min-height:530px;
  object-fit:cover;
  border-radius:26px;
}

.about-home-floating-card{
  position:absolute;
  border-radius:24px;
  box-shadow:0 22px 50px rgba(8,28,68,0.16);
}

.about-home-service-card{
  right:0;
  top:52px;
  width:270px;
  padding:24px;
  background:#fff;
  border:1px solid #e6edf7;
}

.about-home-label{
  display:inline-block;
  margin-bottom:14px;
  padding:8px 14px;
  border-radius:999px;
  background:#edf6ff;
  color:#4cbfed;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.3px;
  text-transform:uppercase;
}

.about-home-service-card h3{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.35;
  color:#0f2039;
}

.about-home-service-card p{
  margin:0;
  font-size:15px;
  line-height:1.7;
  color:#65768d;
}

.about-home-trust-card{
  left:26px;
  bottom:0;
  padding:20px 24px;
  min-width:220px;
  background:linear-gradient(160deg, #4cbfed, #0d5488);
  color:#fff;
}

.about-home-trust-card strong{
  display:block;
  margin-bottom:6px;
  font-size:34px;
  font-weight:800;
}

.about-home-trust-card span{
  display:block;
  font-size:14px;
  line-height:1.7;
  color:rgba(255,255,255,0.84);
}

/* RESPONSIVE */
@media(max-width:991px){

  .about-title{
    font-size:34px;
  }

  .about-img-wrapper img{
    height:auto;
  }

  .experience-badge{
    right:20px;
    bottom:20px;
  }

  .home-about-section .about-title{
    font-size:38px;
  }

  .about-home-shell{
    padding:24px;
  }

  .about-home-visual{
    min-height:auto;
    padding-top:16px;
  }

  .about-home-main-card{
    position:relative;
    inset:auto;
    margin-right:0;
  }

  .about-home-main-card img{
    min-height:auto;
    height:auto;
  }

  .about-home-service-card,
  .about-home-trust-card,
  .about-home-pattern{
    position:relative;
    top:auto;
    right:auto;
    left:auto;
    bottom:auto;
  }

  .about-home-service-card,
  .about-home-trust-card{
    width:100%;
    margin-top:18px;
  }

}

@media(max-width:576px){

  .about-title{
    font-size:28px;
  }

  .counter-box{
    padding:28px 20px;
  }

  .counter-box h3{
    font-size:34px;
  }

  .home-about-section .about-title{
    font-size:30px;
  }

  .about-home-shell{
    padding:18px;
    border-radius:24px;
  }

  .about-home-point{
    padding:16px;
  }

  .about-home-point i{
    flex-basis:42px;
    width:42px;
    height:42px;
    font-size:18px;
  }

  .about-home-stat-card h3{
    font-size:32px;
  }

}


.services-section{
  background:#f8fbff;
}

/* SECTION TITLE */
.service-tag{
  display:inline-block;
  background:#e9f1ff;
  color:#4cbfed;
  padding:10px 22px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
}

.service-title{
  font-size:46px;
  font-weight:800;
  color:#111;
  line-height:1.3;
}

.service-subtitle{
  max-width:780px;
  color:#666;
  font-size:17px;
  line-height:1.9;
}

/* CARD */
.service-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  transition:0.4s;
  box-shadow:0 10px 35px rgba(0,0,0,0.06);
  border:1px solid #eef2f7;
  position:relative;
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 18px 50px rgba(0,0,0,0.12);
}

/* IMAGE */
.service-img{
  overflow:hidden;
  height:260px;
}

.service-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s;
}

.service-card:hover .service-img img{
  transform:scale(1.08);
}

/* CONTENT */
.service-content{
  padding:30px;
}

.service-small-title{
  display:inline-block;
  color:#4cbfed;
  font-size:13px;
  font-weight:600;
  margin-bottom:12px;
  text-transform:uppercase;
  letter-spacing:0.5px;
}

.service-content h3{
  font-size:28px;
  font-weight:700;
  margin-bottom:15px;
  color:#111;
}

.service-content p{
  color:#666;
  font-size:16px;
  line-height:1.8;
  margin:0;
}

.home-services-section{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(135deg, #0d5747 0%, #4cbfed 46%, rgba(240, 246, 255, 0.98) 46%, #ffffff 100%);
}

.home-services-section::before,
.home-services-section::after{
  content:"";
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}

.home-services-section::before{
  width:420px;
  height:420px;
  top:-180px;
  left:-160px;
  background:radial-gradient(circle, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 70%);
}

.home-services-section::after{
  width:360px;
  height:360px;
  right:-120px;
  bottom:-120px;
  background:radial-gradient(circle, rgba(76,191,237,0.22) 0%, rgba(76,191,237,0) 72%);
}

.home-services-section .container{
  position:relative;
  z-index:1;
}

.home-services-section .services-header{
  margin-bottom:56px;
}

.home-services-section .service-tag,
.home-services-section .service-title,
.home-services-section .service-subtitle{
  color:#fff;
}

.home-services-section .service-tag{
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.16);
  box-shadow:none;
}

.home-services-section .service-title{
  max-width:640px;
  font-size:52px;
  line-height:1.15;
}

.home-services-section .service-subtitle{
  max-width:620px;
  color:rgba(255,255,255,0.82);
}

.services-aside{
  position:relative;
  background:rgba(255,255,255,0.9);
  color:#10263d;
  padding:30px;
  border-radius:32px;
  border:1px solid rgba(255,255,255,0.45);
  box-shadow:0 28px 80px rgba(7,31,51,0.18);
  backdrop-filter:blur(18px);
  overflow:hidden;
}

.services-aside::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:6px;
  background:linear-gradient(90deg, #0d3557 0%, #4cbfed 60%, #9edfff 100%);
}

.services-aside-label{
  display:inline-block;
  margin-bottom:12px;
  padding:8px 14px;
  border-radius:999px;
  background:#e7f3ff;
  color:#0d67a8;
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
}

.services-aside h3{
  margin:0;
  font-size:30px;
  line-height:1.35;
  font-weight:800;
}

.services-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.services-points span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:#f4f8fc;
  border:1px solid #d8e7f4;
  font-size:13px;
  font-weight:600;
}

.services-points i,
.choose-panel-points i{
  font-size:14px;
  animation:chipPulse 2.8s ease-in-out infinite;
}

.home-services-section .services-grid{
  row-gap:28px;
  align-items:stretch;
}

.home-services-section .service-card-home{
  display:flex;
  flex-direction:column;
  border:none;
  border-radius:32px;
  overflow:hidden;
  background:linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
  box-shadow:0 24px 60px rgba(11,39,63,0.12);
}

.home-services-section .service-card-home::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:32px;
  padding:1px;
  background:linear-gradient(145deg, rgba(13,53,87,0.15), rgba(76,191,237,0.28), rgba(158,223,255,0.26));
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}

.home-services-section .service-card-home::after{
  content:"";
  position:absolute;
  inset:auto 24px 0 24px;
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg, #0d3557 0%, #4cbfed 62%, transparent 100%);
  opacity:0.55;
  transition:0.35s ease;
}

.home-services-section .service-card-home:hover{
  transform:translateY(-14px);
  box-shadow:0 34px 86px rgba(11,39,63,0.18);
}

.home-services-section .service-card-home:hover::after{
  opacity:1;
  inset:auto 24px 18px 24px;
}

.home-services-section .service-index{
  position:absolute;
  top:18px;
  right:18px;
  z-index:2;
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:20px;
  background:rgba(255,255,255,0.92);
  border:1px solid rgba(13,53,87,0.08);
  color:#0d3557;
  font-size:16px;
  font-weight:800;
  letter-spacing:0.5px;
  box-shadow:0 14px 30px rgba(10,34,54,0.16);
}

.home-services-section .service-img{
  position:relative;
  height:220px;
  margin:18px 18px 0;
  border-radius:24px;
}

.home-services-section .service-img::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(8,41,69,0.02) 0%, rgba(8,41,69,0.42) 100%);
}

.home-services-section .services-grid > div:nth-child(2n) .service-img{
  clip-path:polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.home-services-section .services-grid > div:nth-child(2n+1) .service-img{
  clip-path:polygon(0 0, 100% 0, 100% 100%, 0 88%);
}

.home-services-section .service-content{
  display:flex;
  flex:1;
  flex-direction:column;
  align-items:flex-start;
  padding:24px 28px 34px;
}

.service-icon-badge{
  width:58px;
  height:58px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:-52px 0 18px;
  border-radius:18px;
  background:linear-gradient(135deg, #ffffff 0%, #eaf5ff 100%);
  color:#0d67a8;
  border:1px solid rgba(13,103,168,0.12);
  box-shadow:0 18px 28px rgba(21,117,190,0.14);
  animation:serviceIconFloat 3.4s ease-in-out infinite;
  position:relative;
  z-index:2;
}

.service-icon-badge i{
  font-size:28px;
}

.home-services-section .services-grid > div:nth-child(2) .service-icon-badge{
  animation-delay:0.2s;
}

.home-services-section .services-grid > div:nth-child(3) .service-icon-badge{
  animation-delay:0.4s;
}

.home-services-section .services-grid > div:nth-child(4) .service-icon-badge{
  animation-delay:0.6s;
}

.home-services-section .services-grid > div:nth-child(5) .service-icon-badge{
  animation-delay:0.8s;
}

.home-services-section .services-grid > div:nth-child(6) .service-icon-badge{
  animation-delay:1s;
}

.home-services-section .service-card-home:hover .service-icon-badge{
  transform:translateY(-4px) rotate(-4deg) scale(1.05);
  background:linear-gradient(135deg, #4cbfed 0%, #0d3557 100%);
  color:#ffffff;
}

.home-services-section .service-small-title{
  color:#0f6db3;
  letter-spacing:1.5px;
  margin-bottom:14px;
}

.home-services-section .service-content h3{
  font-size:30px;
  line-height:1.2;
  max-width:280px;
}

.home-services-section .service-content p{
  margin-bottom:24px;
  color:#556473;
}

.home-services-section .services-grid > div:nth-child(3n+2){
  margin-top:18px;
}

.home-services-section .services-grid > div:nth-child(3n){
  margin-top:36px;
}

.service-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#0d3557;
  font-weight:700;
  font-size:15px;
  margin-top:auto;
}

.service-link i{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:50%;
  background:#e8f3ff;
  color:#4cbfed;
  transition:0.3s;
}

.service-link:hover{
  color:#4cbfed;
}

.service-link:hover i{
  transform:translate(2px, -2px);
  background:#4cbfed;
  color:#fff;
}

/* RESPONSIVE */
@media(max-width:991px){

  .home-services-section{
    background:linear-gradient(180deg, #0d3557 0%, #4cbfed 38%, #f3f8ff 38%, #fcfdff 100%);
  }

  .home-services-section .service-title{
    font-size:40px;
  }

  .home-services-section .services-grid > div:nth-child(3n+2),
  .home-services-section .services-grid > div:nth-child(3n){
    margin-top:0;
  }

  .services-aside h3{
    font-size:24px;
  }

  .service-title{
    font-size:34px;
  }

}

@media(max-width:576px){

  .home-services-section{
    background:linear-gradient(180deg, #0d3557 0%, #4cbfed 30%, #f5f9ff 30%, #ffffff 100%);
  }

  .home-services-section .services-header{
    margin-bottom:40px;
  }

  .home-services-section .service-title{
    font-size:32px;
  }

  .home-services-section .service-subtitle{
    color:rgba(255,255,255,0.86);
  }

  .services-aside{
    padding:22px;
    border-radius:22px;
  }

  .home-services-section .service-img{
    height:210px;
    margin:14px 14px 0;
    border-radius:20px;
    clip-path:none;
  }

  .service-icon-badge{
    width:54px;
    height:54px;
    margin-bottom:16px;
  }

  .home-services-section .service-icon-badge{
    margin:-46px 0 16px;
  }

  .services-points span{
    width:100%;
    justify-content:center;
  }

  .service-title{
    font-size:28px;
  }

  .service-content{
    padding:24px;
  }

  .home-services-section .service-content{
    padding:24px;
  }

  .service-content h3{
    font-size:24px;
  }

  .home-services-section .service-content h3{
    max-width:none;
  }

  .home-services-section .service-index{
    top:14px;
    right:14px;
    width:52px;
    height:52px;
  }

}




.why-choose-section{
  background:#f8fbff;
  position:relative;
  overflow:hidden;
}

/* TAG */
.choose-tag{
  display:inline-block;
  background:#e9f1ff;
  color:#4cbfed;
  padding:10px 24px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  letter-spacing:0.5px;
}

/* TITLE */
.choose-title{
  font-size:46px;
  font-weight:800;
  color:#111;
  line-height:1.3;
}

/* SUBTITLE */
.choose-subtitle{
  max-width:780px;
  color:#666;
  font-size:17px;
  line-height:1.9;
}

/* CARD */
.choose-card{
  position:relative;
  background:#ffffff;
  padding:40px 30px;
  border-radius:28px;
  overflow:hidden;
  transition:0.4s;
  border:1px solid #edf2f8;
  box-shadow:0 10px 35px rgba(0,0,0,0.05);
  z-index:1;
}

.choose-card:hover{
  transform:translateY(-10px);
  background:#4cbfed;
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* NUMBER */
.choose-number{
  position:absolute;
  top:20px;
  right:25px;
  font-size:70px;
  font-weight:800;
  color:#eef4ff;
  line-height:1;
  transition:0.4s;
}

.choose-card:hover .choose-number{
  color:rgba(255,255,255,0.12);
}

/* ICON */
.choose-icon{
  width:80px;
  height:80px;
  background:#f4f8ff;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  color:#4cbfed;
  margin-bottom:30px;
  transition:0.4s;
}

.choose-card:hover .choose-icon{
  background:rgba(255,255,255,0.15);
  color:#ffffff;
}

/* TITLE */
.choose-card h3{
  font-size:26px;
  font-weight:700;
  line-height:1.4;
  margin-bottom:18px;
  color:#111;
  transition:0.4s;
}

/* TEXT */
.choose-card p{
  font-size:16px;
  line-height:1.9;
  color:#666;
  margin:0;
  transition:0.4s;
}

/* HOVER TEXT */
.choose-card:hover h3,
.choose-card:hover p{
  color:#ffffff;
}

.home-choose-section{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
}

.home-choose-section::before,
.home-choose-section::after{
  content:"";
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}

.home-choose-section::before{
  width:440px;
  height:440px;
  top:-160px;
  left:-180px;
  background:radial-gradient(circle, rgba(21,117,190,0.18) 0%, rgba(21,117,190,0) 70%);
}

.home-choose-section::after{
  width:360px;
  height:360px;
  right:-120px;
  bottom:-140px;
  background:radial-gradient(circle, rgba(12,53,88,0.12) 0%, rgba(12,53,88,0) 72%);
}

.home-choose-section .container{
  position:relative;
  z-index:1;
}

.home-choose-section .choose-header{
  margin-bottom:54px;
}

.home-choose-section .choose-tag{
  background:#e5f1ff;
  color:#0d67a8;
  border:1px solid #cfe3f8;
}

.home-choose-section .choose-title{
  color:#10263d;
  max-width:660px;
  font-size:52px;
  line-height:1.14;
}

.home-choose-section .choose-subtitle{
  max-width:620px;
  color:#5a6a79;
}

.choose-panel{
  position:relative;
  background:linear-gradient(155deg, #0f3658 0%, #4cbfed 100%);
  border:none;
  border-radius:32px;
  padding:32px;
  color:#ffffff;
  box-shadow:0 28px 80px rgba(13,53,87,0.22);
  overflow:hidden;
}

.choose-panel::before{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  right:-40px;
  top:-50px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 72%);
}

.choose-panel-label{
  display:inline-block;
  margin-bottom:12px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.16);
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
}

.choose-panel h3{
  margin:0;
  position:relative;
  z-index:1;
  font-size:30px;
  line-height:1.4;
  font-weight:800;
}

.choose-panel-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
  position:relative;
  z-index:1;
}

.choose-panel-points span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.12);
  color:#f4f8ff;
  font-size:13px;
  font-weight:600;
}

.home-choose-section .choose-grid{
  row-gap:28px;
  align-items:stretch;
}

.home-choose-section .choose-card-home{
  display:flex;
  flex-direction:column;
  min-height:100%;
  padding:112px 28px 32px;
  background:linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(243,248,255,0.98) 100%);
  border:none;
  border-radius:30px;
  box-shadow:0 18px 45px rgba(8,36,58,0.12);
}

.home-choose-section .choose-card-home::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:30px;
  padding:1px;
  background:linear-gradient(160deg, rgba(12,53,88,0.12), rgba(21,117,190,0.18), rgba(130,207,255,0.18));
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}

.home-choose-section .choose-card-home::after{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:96px;
  background:linear-gradient(135deg, #0f3658 0%, #4cbfed 100%);
  pointer-events:none;
}

.home-choose-section .choose-card-home:hover{
  transform:translateY(-14px);
  box-shadow:0 30px 75px rgba(8,36,58,0.18);
  background:linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
}

.home-choose-section .choose-number{
  top:18px;
  right:18px;
  width:54px;
  height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:rgba(255,255,255,0.16);
  border:1px solid rgba(255,255,255,0.16);
  font-size:16px;
  font-weight:800;
  color:#ffffff;
  line-height:1;
  letter-spacing:0.5px;
}

.home-choose-section .choose-card-home:hover .choose-number{
  background:#0f3658;
  border-color:#0f3658;
  color:#ffffff;
}

.home-choose-section .choose-icon{
  width:74px;
  height:74px;
  border-radius:22px;
  background:#ffffff;
  box-shadow:0 16px 30px rgba(8,36,58,0.14);
  animation:chooseIconLift 3.2s ease-in-out infinite;
  position:absolute;
  top:58px;
  left:28px;
  z-index:2;
}

.home-choose-section .choose-icon i{
  animation:chooseIconSpin 6s linear infinite;
}

.home-choose-section .choose-grid > div:nth-child(2) .choose-icon{
  animation-delay:0.2s;
}

.home-choose-section .choose-grid > div:nth-child(3) .choose-icon{
  animation-delay:0.4s;
}

.home-choose-section .choose-grid > div:nth-child(4) .choose-icon{
  animation-delay:0.6s;
}

.home-choose-section .choose-card-home:hover .choose-icon{
  transform:translateY(-6px) scale(1.06);
}

.home-choose-section .choose-card h3{
  font-size:26px;
  line-height:1.28;
  margin-bottom:16px;
  color:#10263d;
}

.home-choose-section .choose-card p{
  color:#5d6c7d;
  margin-top:auto;
}

.home-choose-section .choose-card-home:hover p,
.home-choose-section .choose-card-home:hover h3{
  color:inherit;
}

.home-choose-section .choose-grid > div:nth-child(2n){
  margin-top:24px;
}

.home-choose-section .choose-grid > div:nth-child(4){
  margin-top:48px;
}

@keyframes serviceIconFloat{
  0%,
  100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-8px);
  }
}

@keyframes chooseIconLift{
  0%,
  100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-7px);
  }
}

@keyframes chooseIconSpin{
  0%,
  92%,
  100%{
    transform:rotate(0deg);
  }
  96%{
    transform:rotate(10deg);
  }
  98%{
    transform:rotate(-10deg);
  }
}

@keyframes chipPulse{
  0%,
  100%{
    transform:scale(1);
    opacity:1;
  }
  50%{
    transform:scale(1.12);
    opacity:0.85;
  }
}

/* RESPONSIVE */
@media(max-width:991px){

  .home-choose-section .choose-title{
    font-size:40px;
  }

  .home-choose-section .choose-grid > div:nth-child(2n),
  .home-choose-section .choose-grid > div:nth-child(4){
    margin-top:0;
  }

  .choose-panel h3{
    font-size:24px;
  }

  .choose-title{
    font-size:36px;
  }

}

@media(max-width:576px){

  .home-choose-section .choose-header{
    margin-bottom:40px;
  }

  .home-choose-section .choose-title{
    font-size:32px;
  }

  .choose-panel{
    padding:22px;
    border-radius:22px;
  }

  .home-choose-section .choose-card-home{
    padding:104px 24px 26px;
    border-radius:24px;
  }

  .home-choose-section .choose-card-home::before{
    border-radius:24px;
  }

  .home-choose-section .choose-card-home::after{
    height:88px;
  }

  .home-choose-section .choose-icon{
    left:24px;
    top:54px;
    width:68px;
    height:68px;
  }

  .home-choose-section .choose-number{
    top:16px;
    right:16px;
    width:50px;
    height:50px;
  }

  .choose-panel-points span{
    width:100%;
    justify-content:center;
  }

  .choose-title{
    font-size:28px;
  }

  .choose-card{
    padding:35px 25px;
  }

  .choose-card h3{
    font-size:22px;
  }

  .choose-number{
    font-size:55px;
  }

}


/* BOX */
.service-box{
  background:#ffffff;
  padding:40px 35px;
  border-radius:28px;
  position:relative;
  overflow:hidden;
  border:1px solid #edf2f8;
  box-shadow:0 10px 35px rgba(0,0,0,0.05);
  height:100%;
}

/* REMOVE NUMBER */
.service-number{
  display:none;
}

/* TITLE */
.service-box h3{
  font-size:28px;
  font-weight:700;
  line-height:1.4;
  margin-bottom:18px;
  color:#111;
}

/* TEXT */
.service-box p{
  font-size:16px;
  line-height:1.9;
  color:#666;
  margin:0;
}

.home-service-details-section{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.home-service-details-section::before,
.home-service-details-section::after{
  content:"";
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}

.home-service-details-section::before{
  width:440px;
  height:440px;
  top:-200px;
  right:-140px;
  background:radial-gradient(circle, rgba(21,117,190,0.14) 0%, rgba(21,117,190,0) 72%);
}

.home-service-details-section::after{
  width:320px;
  height:320px;
  left:-120px;
  bottom:-140px;
  background:radial-gradient(circle, rgba(13,53,87,0.10) 0%, rgba(13,53,87,0) 72%);
}

.home-service-details-section .container{
  position:relative;
  z-index:1;
}

.home-service-details-section .text-center{
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
}

.home-service-details-section .service-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 18px;
  border-radius:999px;
  background:#e8f3ff;
  border:1px solid #d4e6f8;
  color:#0d67a8;
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
}

.home-service-details-section .service-badge::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:50%;
  background:linear-gradient(135deg, #4cbfed 0%, #0d3557 100%);
  box-shadow:0 0 0 6px rgba(21,117,190,0.10);
}

.home-service-details-section .service-main-title{
  font-size:50px;
  line-height:1.14;
  color:#10263d;
}

.home-service-details-section .service-main-text{
  max-width:680px;
  font-size:17px;
  line-height:1.9;
  color:#5c6d7c;
}

.home-service-details-section .row.g-4{
  align-items:stretch;
}

.home-service-details-section .service-box{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  min-height:100%;
  padding:34px 32px 30px;
  border:none;
  border-radius:30px;
  background:linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow:0 20px 55px rgba(9,36,58,0.10);
}

.home-service-details-section .service-box::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:30px;
  padding:1px;
  background:linear-gradient(150deg, rgba(13,53,87,0.10), rgba(21,117,190,0.18), rgba(130,207,255,0.18));
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}

.home-service-details-section .service-box::after{
  content:"";
  position:absolute;
  left:32px;
  top:0;
  width:74px;
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg, #0d3557 0%, #4cbfed 100%);
}

.home-service-details-section .service-box:hover{
  transform:translateY(-12px);
  box-shadow:0 30px 76px rgba(9,36,58,0.16);
}

.home-service-details-section .service-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:54px;
  height:54px;
  margin-bottom:24px;
  border-radius:18px;
  background:#0f3658;
  color:#ffffff;
  font-size:16px;
  font-weight:800;
  letter-spacing:0.5px;
  box-shadow:0 16px 28px rgba(13,53,87,0.18);
}

.home-service-details-section .service-box h3{
  font-size:27px;
  line-height:1.28;
  margin-bottom:16px;
  color:#10263d;
}

.home-service-details-section .service-box p{
  color:#5a6b7b;
}

.home-service-details-section .row.g-4 > div:nth-child(2n) .service-box{
  margin-top:20px;
}

.home-service-details-section .row.g-4 > div:nth-child(3n) .service-box{
  margin-top:40px;
}

/* RESPONSIVE */
@media(max-width:576px){

  .service-box{
    padding:35px 25px;
  }

  .service-box h3{
    font-size:24px;
  }

}

@media(max-width:991px){

  .home-service-details-section .service-main-title{
    font-size:40px;
  }

  .home-service-details-section .row.g-4 > div:nth-child(2n) .service-box,
  .home-service-details-section .row.g-4 > div:nth-child(3n) .service-box{
    margin-top:0;
  }

}

@media(max-width:576px){

  .home-service-details-section .service-main-title{
    font-size:32px;
  }

  .home-service-details-section .service-main-text{
    font-size:16px;
  }

  .home-service-details-section .service-box{
    padding:30px 24px 24px;
    border-radius:24px;
  }

  .home-service-details-section .service-box::before{
    border-radius:24px;
  }

  .home-service-details-section .service-box::after{
    left:24px;
    width:64px;
  }

  .home-service-details-section .service-number{
    width:50px;
    height:50px;
    margin-bottom:20px;
  }

  .home-service-details-section .service-box h3{
    font-size:24px;
  }

}


/* SECTION */
.testimonial-section{
  background:#f8fbff;
  padding:80px 20px;
}



/* TITLE */
.section-title{
  text-align:center;
  margin-bottom:50px;
}

.section-title span{
  display:inline-block;
  background:#eaf2ff;
  color:#4cbfed;
  padding:10px 22px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  margin-bottom:20px;
}

.section-title h2{
  font-size:42px;
  font-weight:800;
  color:#111;
  line-height:1.3;
  margin-bottom:20px;
}

.section-title p{
  font-size:17px;
  color:#666;
  line-height:1.9;
}

/* SLIDER */
.testimonial-slider{
  position:relative;
  overflow:hidden;
}

/* CARD */
.testimonial-card{
  background:#fff;
  padding:50px 40px;
  border-radius:25px;
  box-shadow:0 10px 35px rgba(0,0,0,0.06);
  text-align:center;
  display:none;
  animation:fade 0.5s ease;
}

.testimonial-card.active{
  display:block;
}

/* ANIMATION */
@keyframes fade{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* STARS */
.stars{
  color:#ffb400;
  font-size:26px;
  margin-bottom:25px;
  letter-spacing:3px;
}

/* TEXT */
.testimonial-text{
  font-size:18px;
  line-height:1.9;
  color:#555;
  margin-bottom:30px;
}

/* NAME */
.testimonial-card h3{
  font-size:24px;
  color:#111;
  margin-bottom:8px;
}

.testimonial-card span{
  color:#4cbfed;
  font-size:15px;
  font-weight:500;
}

/* BUTTONS */
.slider-buttons{
  display:flex;
  justify-content:center;
  gap:15px;
  margin-top:35px;
}

.slider-buttons button{
  width:55px;
  height:55px;
  border:none;
  border-radius:50%;
  background:#4cbfed;
  color:#fff;
  font-size:24px;
  cursor:pointer;
  transition:0.3s;
}

.slider-buttons button:hover{
  background:#003fc2;
}

.home-testimonial-section{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(135deg, #0d3557 0%, #4cbfed 46%, #f4f9ff 46%, #ffffff 100%);
}

.home-testimonial-section::before,
.home-testimonial-section::after{
  content:"";
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}

.home-testimonial-section::before{
  width:420px;
  height:420px;
  left:-180px;
  top:-160px;
  background:radial-gradient(circle, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 72%);
}

.home-testimonial-section::after{
  width:360px;
  height:360px;
  right:-140px;
  bottom:-120px;
  background:radial-gradient(circle, rgba(76,191,237,0.22) 0%, rgba(76,191,237,0) 72%);
}

.home-testimonial-section .container{
  position:relative;
  z-index:1;
}

.home-testimonial-section .section-title{
  max-width:760px;
  margin:0 auto 54px;
}

.home-testimonial-section .section-title span{
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.16);
  color:#e8f4ff;
}

.home-testimonial-section .section-title h2{
  max-width:640px;
  margin-left:auto;
  margin-right:auto;
  font-size:48px;
  line-height:1.14;
  color:#ffffff;
}

.home-testimonial-section .section-title p{
  max-width:620px;
  margin-left:auto;
  margin-right:auto;
  color:rgba(255,255,255,0.82);
}

.home-testimonial-section .testimonial-slider{
  max-width:940px;
  margin-left:auto;
  margin-right:auto;
}

.home-testimonial-section .testimonial-card{
  position:relative;
  padding:46px 44px 110px;
  border-radius:34px;
  background:linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244,249,255,0.98) 100%);
  box-shadow:0 30px 85px rgba(8,34,55,0.18);
  text-align:left;
}

.home-testimonial-section .testimonial-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:34px;
  padding:1px;
  background:linear-gradient(150deg, rgba(255,255,255,0.42), rgba(76,191,237,0.24), rgba(13,53,87,0.12));
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}

.home-testimonial-section .testimonial-card::after{
  content:"\201D";
  position:absolute;
  top:28px;
  right:32px;
  font-size:92px;
  line-height:1;
  color:rgba(13,53,87,0.08);
  font-family:Georgia, serif;
}

.home-testimonial-section .stars{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  border-radius:999px;
  background:#eef6ff;
  color:#d99200;
  font-size:20px;
  letter-spacing:2px;
  margin-bottom:28px;
}

.home-testimonial-section .testimonial-text{
  max-width:760px;
  font-size:21px;
  line-height:1.9;
  color:#385063;
  margin-bottom:30px;
}

.home-testimonial-section .testimonial-card h3{
  font-size:24px;
  line-height:1.2;
  margin-bottom:6px;
  color:#10263d;
}

.home-testimonial-section .testimonial-card span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#0f6db3;
  font-size:15px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.8px;
}

.home-testimonial-section .testimonial-card span::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:linear-gradient(135deg, #4cbfed 0%, #0d3557 100%);
}

.home-testimonial-section .slider-buttons{
  position:absolute;
  left:44px;
  bottom:34px;
  margin-top:0;
  justify-content:flex-start;
  z-index:2;
}

.home-testimonial-section .slider-buttons button{
  width:56px;
  height:56px;
  border-radius:18px;
  background:#0f3658;
  box-shadow:0 14px 30px rgba(8,34,55,0.16);
}

.home-testimonial-section .slider-buttons button:hover{
  background:#4cbfed;
  transform:translateY(-2px);
}

.home-testimonial-section .testimonial-card.active{
  animation:homeTestimonialFade 0.55s ease;
}

@keyframes homeTestimonialFade{
  from{
    opacity:0;
    transform:translateY(24px) scale(0.98);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

/* RESPONSIVE */
@media(max-width:768px){

  .home-testimonial-section{
    background:linear-gradient(180deg, #0d3557 0%, #4cbfed 38%, #f5f9ff 38%, #ffffff 100%);
  }

  .home-testimonial-section .section-title h2{
    font-size:38px;
  }

  .home-testimonial-section .testimonial-card{
    padding:38px 28px 104px;
    border-radius:28px;
  }

  .home-testimonial-section .testimonial-card::before{
    border-radius:28px;
  }

  .home-testimonial-section .testimonial-text{
    font-size:18px;
  }

  .home-testimonial-section .slider-buttons{
    left:28px;
    bottom:26px;
  }

  .section-title h2{
    font-size:32px;
  }

  .testimonial-card{
    padding:40px 25px;
  }

}

@media(max-width:576px){

  .home-testimonial-section{
    background:linear-gradient(180deg, #0d3557 0%, #4cbfed 30%, #f5f9ff 30%, #ffffff 100%);
  }

  .home-testimonial-section .section-title{
    margin-bottom:40px;
  }

  .home-testimonial-section .section-title h2{
    font-size:32px;
  }

  .home-testimonial-section .section-title p{
    color:rgba(255,255,255,0.86);
  }

  .home-testimonial-section .testimonial-card{
    padding:32px 22px 94px;
    border-radius:24px;
  }

  .home-testimonial-section .testimonial-card::before{
    border-radius:24px;
  }

  .home-testimonial-section .testimonial-card::after{
    top:18px;
    right:20px;
    font-size:70px;
  }

  .home-testimonial-section .stars{
    font-size:18px;
    margin-bottom:22px;
  }

  .home-testimonial-section .testimonial-text{
    font-size:16px;
    line-height:1.8;
  }

  .home-testimonial-section .slider-buttons{
    left:22px;
    bottom:22px;
    gap:12px;
  }

  .home-testimonial-section .slider-buttons button{
    width:50px;
    height:50px;
    border-radius:16px;
  }

  .section-title h2{
    font-size:26px;
  }

  .testimonial-text{
    font-size:16px;
  }

}

.cta-section{
  background:#f8fbff;
}

.service-page-services-section{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.service-page-services-section::before,
.service-page-services-section::after{
  content:"";
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}

.service-page-services-section::before{
  width:420px;
  height:420px;
  top:-180px;
  left:-180px;
  background:radial-gradient(circle, rgba(76,191,237,0.20) 0%, rgba(76,191,237,0) 72%);
}

.service-page-services-section::after{
  width:320px;
  height:320px;
  right:-120px;
  bottom:-120px;
  background:radial-gradient(circle, rgba(13,53,87,0.12) 0%, rgba(13,53,87,0) 72%);
}

.service-page-services-section .container,
.service-page-choose-section .container,
.service-page-testimonial-section .container{
  position:relative;
  z-index:1;
}

.service-page-services-section .text-center,
.service-page-choose-section .text-center,
.service-page-testimonial-section .section-title{
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
}

.service-page-services-section .service-tag{
  border:1px solid #cfe3f8;
}

.service-page-services-section .service-title,
.service-page-choose-section .choose-title{
  font-size:50px;
  line-height:1.14;
  color:#10263d;
}

.service-page-services-section .service-subtitle,
.service-page-choose-section .choose-subtitle{
  max-width:680px;
  color:#5b6b7b;
}

.service-page-services-section .row.g-4,
.service-page-choose-section .row.g-4{
  align-items:stretch;
}

.service-page-services-section .service-card{
  display:flex;
  flex-direction:column;
  border:none;
  border-radius:30px;
  background:linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  box-shadow:0 22px 60px rgba(11,39,63,0.10);
}

.service-page-services-section .service-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:30px;
  padding:1px;
  background:linear-gradient(145deg, rgba(13,53,87,0.12), rgba(76,191,237,0.24), rgba(158,223,255,0.22));
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}

.service-page-services-section .service-card::after{
  content:"";
  position:absolute;
  inset:auto 24px 0 24px;
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg, #0d3557 0%, #4cbfed 62%, transparent 100%);
  opacity:0.6;
  transition:0.35s ease;
}

.service-page-services-section .service-card:hover{
  transform:translateY(-14px);
  box-shadow:0 32px 82px rgba(11,39,63,0.16);
}

.service-page-services-section .service-card:hover::after{
  inset:auto 24px 18px 24px;
  opacity:1;
}

.service-page-services-section .service-img{
  position:relative;
  height:230px;
  margin:18px 18px 0;
  border-radius:24px;
}

.service-page-services-section .service-img::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(8,41,69,0.02) 0%, rgba(8,41,69,0.36) 100%);
}

.service-page-services-section .row.g-4 > div:nth-child(2n) .service-img{
  clip-path:polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.service-page-services-section .row.g-4 > div:nth-child(2n+1) .service-img{
  clip-path:polygon(0 0, 100% 0, 100% 100%, 0 88%);
}

.service-page-services-section .service-content{
  display:flex;
  flex:1;
  flex-direction:column;
  align-items:flex-start;
  padding:28px 28px 34px;
}

.service-page-services-section .service-small-title{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
  letter-spacing:1.3px;
  color:#0f6db3;
}

.service-page-services-section .service-small-title::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:50%;
  background:linear-gradient(135deg, #4cbfed 0%, #0d3557 100%);
  box-shadow:0 0 0 6px rgba(76,191,237,0.12);
}

.service-page-services-section .service-content h3{
  font-size:28px;
  line-height:1.22;
}

.service-page-services-section .service-content p,
.service-page-choose-section .choose-card p{
  color:#566574;
}

.service-page-services-section .row.g-4 > div:nth-child(3n+2){
  margin-top:18px;
}

.service-page-services-section .row.g-4 > div:nth-child(3n){
  margin-top:36px;
}

.service-page-choose-section{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
}

.service-page-choose-section::before,
.service-page-choose-section::after{
  content:"";
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}

.service-page-choose-section::before{
  width:440px;
  height:440px;
  top:-160px;
  left:-180px;
  background:radial-gradient(circle, rgba(76,191,237,0.18) 0%, rgba(76,191,237,0) 70%);
}

.service-page-choose-section::after{
  width:360px;
  height:360px;
  right:-120px;
  bottom:-140px;
  background:radial-gradient(circle, rgba(12,53,88,0.12) 0%, rgba(12,53,88,0) 72%);
}

.service-page-choose-section .choose-tag{
  background:#e5f1ff;
  color:#0d67a8;
  border:1px solid #cfe3f8;
}

.service-page-choose-section .choose-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
  padding:112px 28px 32px;
  border:none;
  border-radius:30px;
  background:linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(243,248,255,0.98) 100%);
  box-shadow:0 18px 45px rgba(8,36,58,0.12);
}

.service-page-choose-section .choose-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:30px;
  padding:1px;
  background:linear-gradient(160deg, rgba(12,53,88,0.12), rgba(76,191,237,0.18), rgba(158,223,255,0.18));
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}

.service-page-choose-section .choose-card::after{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:96px;
  background:linear-gradient(135deg, #0f3658 0%, #4cbfed 100%);
  pointer-events:none;
}

.service-page-choose-section .choose-card:hover{
  transform:translateY(-14px);
  box-shadow:0 30px 75px rgba(8,36,58,0.18);
  background:linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
}

.service-page-choose-section .choose-number{
  top:18px;
  right:18px;
  width:54px;
  height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:rgba(255,255,255,0.16);
  border:1px solid rgba(255,255,255,0.16);
  font-size:16px;
  font-weight:800;
  color:#ffffff;
  line-height:1;
  letter-spacing:0.5px;
}

.service-page-choose-section .choose-card:hover .choose-number{
  background:#0f3658;
  border-color:#0f3658;
  color:#ffffff;
}

.service-page-choose-section .choose-icon{
  width:74px;
  height:74px;
  border-radius:22px;
  background:#ffffff;
  box-shadow:0 16px 30px rgba(8,36,58,0.14);
  position:absolute;
  top:58px;
  left:28px;
  z-index:2;
}

.service-page-choose-section .choose-card h3{
  font-size:26px;
  line-height:1.28;
  margin-bottom:16px;
  color:#10263d;
}

.service-page-choose-section .choose-card:hover h3,
.service-page-choose-section .choose-card:hover p{
  color:inherit;
}

.service-page-choose-section .row.g-4 > div:nth-child(2n){
  margin-top:24px;
}

.service-page-choose-section .row.g-4 > div:nth-child(4){
  margin-top:48px;
}

.service-page-testimonial-section{
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg, #0d3557 0%, #4cbfed 46%, #f4f9ff 46%, #ffffff 100%);
}

.service-page-testimonial-section::before,
.service-page-testimonial-section::after{
  content:"";
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}

.service-page-testimonial-section::before{
  width:420px;
  height:420px;
  left:-180px;
  top:-160px;
  background:radial-gradient(circle, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 72%);
}

.service-page-testimonial-section::after{
  width:360px;
  height:360px;
  right:-140px;
  bottom:-120px;
  background:radial-gradient(circle, rgba(76,191,237,0.22) 0%, rgba(76,191,237,0) 72%);
}

.service-page-testimonial-section .section-title{
  margin:0 auto 54px;
}

.service-page-testimonial-section .section-title span{
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.16);
  color:#e8f4ff;
}

.service-page-testimonial-section .section-title h2{
  max-width:640px;
  margin-left:auto;
  margin-right:auto;
  font-size:48px;
  line-height:1.14;
  color:#ffffff;
}

.service-page-testimonial-section .section-title p{
  max-width:620px;
  margin-left:auto;
  margin-right:auto;
  color:rgba(255,255,255,0.82);
}

.service-page-testimonial-section .testimonial-slider{
  max-width:940px;
  margin-left:auto;
  margin-right:auto;
}

.service-page-testimonial-section .testimonial-card{
  position:relative;
  padding:46px 44px 110px;
  border-radius:34px;
  background:linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244,249,255,0.98) 100%);
  box-shadow:0 30px 85px rgba(8,34,55,0.18);
  text-align:left;
}

.service-page-testimonial-section .testimonial-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:34px;
  padding:1px;
  background:linear-gradient(150deg, rgba(255,255,255,0.42), rgba(76,191,237,0.24), rgba(13,53,87,0.12));
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}

.service-page-testimonial-section .testimonial-card::after{
  content:"\201D";
  position:absolute;
  top:28px;
  right:32px;
  font-size:92px;
  line-height:1;
  color:rgba(13,53,87,0.08);
  font-family:Georgia, serif;
}

.service-page-testimonial-section .stars{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  border-radius:999px;
  background:#eef6ff;
  color:#d99200;
  font-size:20px;
  letter-spacing:2px;
  margin-bottom:28px;
}

.service-page-testimonial-section .testimonial-text{
  max-width:760px;
  font-size:21px;
  line-height:1.9;
  color:#385063;
  margin-bottom:30px;
}

.service-page-testimonial-section .testimonial-card h3{
  font-size:24px;
  line-height:1.2;
  margin-bottom:6px;
  color:#10263d;
}

.service-page-testimonial-section .testimonial-card span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#0f6db3;
  font-size:15px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.8px;
}

.service-page-testimonial-section .testimonial-card span::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:linear-gradient(135deg, #4cbfed 0%, #0d3557 100%);
}

.service-page-testimonial-section .slider-buttons{
  position:absolute;
  left:44px;
  bottom:34px;
  margin-top:0;
  justify-content:flex-start;
  z-index:2;
}

.service-page-testimonial-section .slider-buttons button{
  width:56px;
  height:56px;
  border-radius:18px;
  background:#0f3658;
  box-shadow:0 14px 30px rgba(8,34,55,0.16);
}

.service-page-testimonial-section .slider-buttons button:hover{
  background:#4cbfed;
  transform:translateY(-2px);
}

.service-page-testimonial-section .testimonial-card.active{
  animation:homeTestimonialFade 0.55s ease;
}

/* BOX */
.cta-box{
  background:#4cbfed;
  padding:80px 40px;
  border-radius:35px;
  overflow:hidden;
  position:relative;
}

/* TAG */
.cta-tag{
  display:inline-block;
  background:rgba(255,255,255,0.15);
  color:#ffffff;
  padding:10px 24px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  letter-spacing:0.5px;
}

/* TITLE */
.cta-title{
  font-size:48px;
  font-weight:800;
  color:#ffffff;
  line-height:1.3;
}

/* TEXT */
.cta-text{
  max-width:760px;
  color:rgba(255,255,255,0.85);
  font-size:17px;
  line-height:1.9;
}

/* BUTTON */
.cta-btn{
  background:#ffffff;
  color:#4cbfed;
  padding:16px 38px;
  border-radius:50px;
  font-size:16px;
  font-weight:700;
  transition:0.4s;
  border:2px solid #ffffff;
}

.cta-btn:hover{
  background:transparent;
  color:#ffffff;
  border-color:#ffffff;
}

/* RESPONSIVE */
@media(max-width:991px){

  .cta-title{
    font-size:36px;
  }

}

@media(max-width:576px){

  .cta-box{
    padding:60px 25px;
  }

  .cta-title{
    font-size:28px;
  }

  .cta-text{
    font-size:16px;
  }

}

.footer-section{
  background:#4cbfed;
  color:#ffffff;
}

/* LOGO */
.footer-logo{
  font-size:34px;
  font-weight:800;
  margin-bottom:20px;
}

/* TEXT */
.footer-text{
  color:rgba(255,255,255,0.85);
  font-size:16px;
  line-height:1.9;
  margin:0;
}

/* TITLE */
.footer-title{
  font-size:24px;
  font-weight:700;
  margin-bottom:25px;
}

/* LINKS */
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li{
  margin-bottom:14px;
}

.footer-links a{
  text-decoration:none;
  color:rgba(255,255,255,0.85);
  font-size:16px;
  transition:0.3s;
}

.footer-links a:hover{
  color:#ffffff;
  padding-left:5px;
}

/* HOURS */
.hours-box{
  background:rgba(255,255,255,0.12);
  padding:18px 22px;
  border-radius:18px;
}

.hours-box span{
  display:block;
  font-size:15px;
  color:rgba(255,255,255,0.8);
  margin-bottom:6px;
}

.hours-box strong{
  font-size:18px;
  font-weight:700;
  color:#ffffff;
}

/* BOTTOM */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.15);
}

.footer-bottom p{
  margin:0;
  color:rgba(255,255,255,0.75);
  font-size:15px;
}

/* RESPONSIVE */
@media(max-width:991px){

  .footer-logo{
    font-size:30px;
  }

}

@media(max-width:576px){

  .footer-section{
    text-align:center;
  }

  .footer-logo{
    font-size:26px;
  }

  .footer-title{
    font-size:22px;
  }

}

.copyright-section{
  background:#000000;
  color:#ffffff;
}

.copyright-box{
  max-width:1000px;
  margin:auto;
  text-align:center;
}

/* HEADINGS */
.copyright-box h3{
  font-size:24px;
  font-weight:700;
  margin-bottom:15px;
  color:#ffffff;
}

/* PARAGRAPH */
.copyright-box p{
  color:rgba(255,255,255,0.75);
  font-size:15px;
  line-height:1.9;
  margin-bottom:0;
}

/* BOTTOM */
.bottom-text{
  border-top:1px solid rgba(255,255,255,0.15);
  padding-top:20px;
  color:rgba(255,255,255,0.65);
  font-size:14px;
}

/* RESPONSIVE */
@media(max-width:576px){

  .copyright-box h3{
    font-size:20px;
  }

  .copyright-box p{
    font-size:14px;
  }

}


#backToTop{
  position:fixed;
  right:25px;
  bottom:75px;
  width:55px;
  height:55px;
  border:none;
  border-radius:50%;
  background:#4cbfed;
  color:#ffffff;
  font-size:24px;
  font-weight:bold;
  cursor:pointer;
  display:none;
  z-index:9999;
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
  transition:0.3s;
}

#backToTop:hover{
  background:#003fc2;
  transform:translateY(-5px);
}

/* MOBILE */
@media(max-width:576px){

  #backToTop{
    width:48px;
    height:48px;
    font-size:20px;
    right:15px;
    bottom:65px;
  }

}


.location-section{
  background:#f8fbff;
}

/* TAG */
.location-tag{
  display:inline-block;
  color:#666;
  font-size:18px;
  font-weight:500;
}

/* TITLE */
.location-title{
  font-size:46px;
  font-weight:800;
  color:#4cbfed;
  line-height:1.3;
}

/* DIVIDER */
.title-divider{
  margin-top:20px;
}

.title-divider span{
  width:90px;
  height:4px;
  background:#4cbfed;
  display:inline-block;
  border-radius:50px;
  position:relative;
}

.title-divider span::before{
  content:'';
  position:absolute;
  width:18px;
  height:18px;
  background:#4cbfed;
  border-radius:50%;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
}

/* CARD */
.location-card{
  background:#ffffff;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 10px 35px rgba(0,0,0,0.06);
  transition:0.4s;
}

.location-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 45px rgba(0,0,0,0.12);
}

/* MAP */
.map-box iframe{
  width:100%;
  height:320px;
  border:0;
}

/* CONTENT */
.location-content{
  padding:30px;
}

/* HEADING */
.location-content h3{
  font-size:28px;
  font-weight:700;
  color:#111;
  margin-bottom:15px;
}

/* ADDRESS */
.location-content p{
  font-size:16px;
  color:#666;
  line-height:1.9;
  margin-bottom:25px;
}

/* BUTTON */
.location-btn{
  display:inline-block;
  background:#4cbfed;
  color:#ffffff;
  text-decoration:none;
  padding:14px 28px;
  border-radius:50px;
  font-size:15px;
  font-weight:600;
  transition:0.3s;
}

.location-btn:hover{
  background:#003fc2;
  color:#ffffff;
}

/* RESPONSIVE */
@media(max-width:991px){

  .location-title{
    font-size:36px;
  }

}

@media(max-width:576px){

  .location-title{
    font-size:28px;
  }

  .location-content{
    padding:25px;
  }

  .location-content h3{
    font-size:24px;
  }

  .map-box iframe{
    height:250px;
  }

}



.call-button {
  position: fixed !important;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0 !important;
  width: 100%;
  margin: 0;
  z-index: 10000;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.call-button .call-flex {
  width: 100%;
  min-height: 56px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: #00bf5e;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  line-height: 1.2;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.16);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.call-button .call-flex p {
  margin: 0;
}

.call-flex p,
.call-flex a {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  color: #000;
  transition: 0.3s;
}

.call-flex a {
  white-space: nowrap;
}

.call-flex p:hover,
.call-flex a:hover {
  color: #fff;
}

@media(max-width:576px){

  .call-button .call-flex {
  min-height: 52px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 8px;
  }

  .call-flex p,
  .call-flex a {
  font-size: 16px;
  }

}
