/*----------------------------------------*/
/*  Glassmorphism Theme
/*  Frosted-glass styling sitewide: header, footer, mobile menu,
/*  and card sections on index.html, about.html, service.html,
/*  pricing.html, careers.html, team.html, contact.html.
/*----------------------------------------*/

/* ---------- Forced-colors / high-contrast mode ---------- */
/* Some OS/browser high-contrast settings strip custom button backgrounds,
   leaving just text + a dashed focus outline. Our blue/white buttons have
   enough contrast on their own, so keep the custom colors instead. */

@media (forced-colors: active) {
  .btn {
    forced-color-adjust: none;
  }
}

/* ---------- Sitewide header ---------- */

#header.transparent-header {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#header.transparent-header.sticky {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow: 0 8px 30px rgba(0, 61, 224, 0.12);
}

/* The base theme's #ababab label color assumed a solid white header;
   against this translucent glass header (which tints with whatever
   shows through the blur) it's nearly invisible. */
#header.transparent-header .header-info .info-text span {
  color: #5b6478;
}

/* ---------- Sitewide mobile off-canvas menu ---------- */

.offcanvas {
  background: rgba(10, 14, 36, 0.78);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---------- Sitewide footer ---------- */

.footer-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6, 10, 26, 0.86), rgba(6, 10, 26, 0.94)),
    url(../images/bg/footer-bg-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
}

.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 460px at 10% 0%, rgba(0, 93, 224, 0.22), transparent 65%),
    radial-gradient(650px 460px at 90% 100%, rgba(84, 214, 235, 0.18), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.footer-section > .container,
.footer-section .footer-copyright-area {
  position: relative;
  z-index: 1;
}

.footer-section .footer-widget-wrap .row {
  align-items: stretch;
}

.footer-section .footer-widget-wrap .row > div {
  display: flex;
}

/* Below the breakpoint where columns stack into one, Bootstrap's grid has no
   row-gap by default — without this the cards touch edge-to-edge with no
   visible gap, reading as one fused/overlapping block. */
@media only screen and (max-width: 991px) {
  .footer-section .footer-widget-wrap .row > div {
    margin-bottom: 24px;
  }
}

.footer-section .footer-widget-about,
.footer-section .footer-widget {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  width: 100%;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02) 55%, rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -14px 24px -16px rgba(255, 255, 255, 0.08);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.footer-section .footer-widget-about::after,
.footer-section .footer-widget::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  background-size: 260% 260%;
  background-position: -80% -80%;
  pointer-events: none;
  transition: background-position 0.8s ease;
}

.footer-section .footer-widget-about:hover::after,
.footer-section .footer-widget:hover::after {
  background-position: 100% 100%;
}

.footer-section .footer-widget-about:hover,
.footer-section .footer-widget:hover {
  transform: translateY(-6px);
  border-color: rgba(84, 214, 235, 0.35);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04) 55%, rgba(255, 255, 255, 0.09));
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -14px 24px -16px rgba(255, 255, 255, 0.1);
}

.footer-section .copyright-social .social li a {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer-section .copyright-social .social li a i {
  transition: color 0.3s ease;
}

.footer-section .copyright-social .social li a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.footer-section .copyright-social .social li a:has(.fa-facebook-f):hover i {
  color: #1877f2;
}

.footer-section .copyright-social .social li a:has(.fa-twitter):hover i {
  color: #1da1f2;
}

.footer-section .copyright-social .social li a:has(.fa-linkedin-in):hover i {
  color: #0a66c2;
}

/* ---------- Pricing cards (pricing.html + service.html teaser) ---------- */

.pricing-section.pricing-section-2 {
  position: relative;
  overflow: hidden;
  padding-bottom: 90px;
}

@media only screen and (max-width: 1199px) {
  .pricing-section.pricing-section-2 {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 991px) {
  .pricing-section.pricing-section-2 {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .pricing-section.pricing-section-2 {
    padding-bottom: 60px;
  }
}

.pricing-section.pricing-section-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 420px at 8% 12%, rgba(0, 93, 224, 0.22), transparent 65%),
    radial-gradient(560px 420px at 92% 20%, rgba(84, 214, 235, 0.24), transparent 65%),
    radial-gradient(680px 480px at 50% 100%, rgba(124, 58, 237, 0.14), transparent 65%),
    linear-gradient(135deg, rgba(0, 93, 224, 0.12), rgba(84, 214, 235, 0.14) 50%, rgba(124, 58, 237, 0.1));
  pointer-events: none;
  z-index: 0;
}

.pricing-section.pricing-section-2 > .container {
  position: relative;
  z-index: 1;
}

.pricing-section .pricing-wrap .pricing-content-wrap .single-pricing {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.2) 55%, rgba(255, 255, 255, 0.32));
  backdrop-filter: blur(20px) saturate(110%);
  -webkit-backdrop-filter: blur(20px) saturate(110%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-top: none;
  box-shadow:
    0 18px 40px rgba(0, 20, 60, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -14px 26px -16px rgba(255, 255, 255, 0.4);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, background 0.4s ease;
}

.pricing-section .pricing-wrap .pricing-content-wrap .single-pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #005de0, #54d6eb);
  z-index: 2;
}

.pricing-section .pricing-wrap .pricing-content-wrap .single-pricing::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
  background-size: 260% 260%;
  background-position: -80% -80%;
  pointer-events: none;
  transition: background-position 0.8s ease;
}

.pricing-section .pricing-wrap .pricing-content-wrap .single-pricing:hover::after {
  background-position: 100% 100%;
}

.pricing-section .pricing-wrap .pricing-content-wrap .single-pricing:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.28) 55%, rgba(255, 255, 255, 0.4));
  box-shadow:
    0 28px 54px rgba(0, 20, 60, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -14px 26px -16px rgba(255, 255, 255, 0.5);
}

.pricing-section .pricing-wrap .pricing-content-wrap .single-pricing.active {
  background: linear-gradient(-25deg, rgba(84, 214, 235, 0.55) 0%, rgba(3, 92, 221, 0.78) 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 50px rgba(0, 61, 224, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.pricing-section .pricing-wrap .pricing-content-wrap .single-pricing.active::before {
  display: none;
}

.pricing-section .pricing-wrap .pricing-content-wrap .single-pricing.active:hover {
  transform: translateY(-10px);
  background: linear-gradient(-25deg, rgba(84, 214, 235, 0.62) 0%, rgba(3, 92, 221, 0.85) 100%);
}

/* ---------- Service feature cards (service.html + individual service pages) ---------- */

.features-section-4 .features-wrap-3 .features-content-wrap .single-item .features-content .title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.features-section-4 .features-wrap-3 .features-content-wrap .single-item .features-content .title a:hover {
  color: #005de0;
}

.features-section-4 {
  position: relative;
  overflow: hidden;
  background: #0a0e27;
}

.features-section-4::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(620px 460px at 12% 8%, rgba(0, 93, 224, 0.4), transparent 65%),
    radial-gradient(580px 440px at 88% 28%, rgba(84, 214, 235, 0.32), transparent 65%),
    radial-gradient(700px 520px at 45% 105%, rgba(124, 58, 237, 0.3), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.features-section-4 > .container {
  position: relative;
  z-index: 1;
}

.features-section-4 .section-title2 .title {
  color: #ffffff;
}

.features-section-4 .section-title2 .title span {
  color: #54d6eb;
}

.features-section-4 .features-wrap-3 .features-content-wrap .row {
  align-items: stretch;
}

.features-section-4 .features-wrap-3 .features-content-wrap .row > div {
  display: flex;
}

.features-section-4 .features-wrap-3 .features-content-wrap .single-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(135deg, #dde9fb 0%, #eef3fc 55%, #f5f8fe 100%);
  backdrop-filter: blur(18px) saturate(110%);
  -webkit-backdrop-filter: blur(18px) saturate(110%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -12px 22px -14px rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, background 0.35s ease;
}

.features-section-4 .features-wrap-3 .features-content-wrap .single-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  background-size: 260% 260%;
  background-position: -80% -80%;
  pointer-events: none;
  transition: background-position 0.8s ease;
}

.features-section-4 .features-wrap-3 .features-content-wrap .single-item:hover::after {
  background-position: 100% 100%;
}

.features-section-4 .features-wrap-3 .features-content-wrap .single-item:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, #d3e2fa 0%, #e6eefc 55%, #f0f5fe 100%);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -12px 22px -14px rgba(255, 255, 255, 0.6);
}

/* ---------- Careers: perk cards ---------- */

.careers-perks {
  position: relative;
  overflow: hidden;
}

.careers-perks::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 440px at 10% 12%, rgba(0, 93, 224, 0.24), transparent 65%),
    radial-gradient(560px 420px at 90% 30%, rgba(84, 214, 235, 0.26), transparent 65%),
    linear-gradient(135deg, rgba(0, 93, 224, 0.1), rgba(84, 214, 235, 0.12) 50%, rgba(124, 58, 237, 0.08));
  pointer-events: none;
  z-index: 0;
}

.careers-perks > .container {
  position: relative;
  z-index: 1;
}

.careers-perks .row {
  align-items: stretch;
}

.careers-perks .row > div {
  display: flex;
}

.careers-perks .perk-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.22) 55%, rgba(255, 255, 255, 0.34));
  backdrop-filter: blur(16px) saturate(110%);
  -webkit-backdrop-filter: blur(16px) saturate(110%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 16px;
  box-shadow:
    0 10px 28px rgba(0, 20, 60, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -10px 18px -12px rgba(255, 255, 255, 0.4);
  padding: 24px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, background 0.3s ease;
}

.careers-perks .perk-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  background-size: 260% 260%;
  background-position: -80% -80%;
  pointer-events: none;
  transition: background-position 0.8s ease;
}

.careers-perks .perk-item:hover::after {
  background-position: 100% 100%;
}

.careers-perks .perk-item:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.3) 55%, rgba(255, 255, 255, 0.42));
  box-shadow:
    0 18px 38px rgba(0, 20, 60, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -10px 18px -12px rgba(255, 255, 255, 0.5);
}

/* ---------- Careers: job listing cards ---------- */

.careers-jobs-section {
  position: relative;
  overflow: hidden;
}

.careers-jobs-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(640px 440px at 15% 8%, rgba(0, 93, 224, 0.22), transparent 65%),
    radial-gradient(600px 440px at 85% 28%, rgba(84, 214, 235, 0.24), transparent 65%),
    linear-gradient(135deg, rgba(0, 93, 224, 0.1), rgba(84, 214, 235, 0.12) 50%, rgba(124, 58, 237, 0.08));
  pointer-events: none;
  z-index: 0;
}

.careers-jobs-section > .container {
  position: relative;
  z-index: 1;
}

.job-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.22) 55%, rgba(255, 255, 255, 0.34));
  backdrop-filter: blur(18px) saturate(110%);
  -webkit-backdrop-filter: blur(18px) saturate(110%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 12px 30px rgba(0, 20, 60, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -10px 18px -12px rgba(255, 255, 255, 0.4);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, background 0.3s ease;
}

.job-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  background-size: 260% 260%;
  background-position: -80% -80%;
  pointer-events: none;
  transition: background-position 0.8s ease;
}

.job-card:hover::after {
  background-position: 100% 100%;
}

.job-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.3) 55%, rgba(255, 255, 255, 0.42));
  box-shadow:
    0 20px 42px rgba(0, 20, 60, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -10px 18px -12px rgba(255, 255, 255, 0.5);
  transform: translateY(-6px);
}

/* ---------- Careers: job details / apply modal ---------- */

.job-modal .modal-content {
  position: relative;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 45%, rgba(255, 255, 255, 0.85) 100%);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 30px 70px rgba(0, 20, 60, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -1px 0 rgba(255, 255, 255, 0.25);
}

.job-modal .modal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.08) 35%, transparent 65%);
  pointer-events: none;
}

.job-modal .modal-header,
.job-modal .modal-body {
  position: relative;
  z-index: 1;
}

.job-modal .modal-header {
  background: linear-gradient(135deg, rgba(0, 24, 70, 0.92) 0%, rgba(0, 93, 224, 0.88) 100%);
  overflow: hidden;
}

.job-modal .modal-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.05) 45%, transparent 70%);
  pointer-events: none;
}

.job-modal .modal-header::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -10%;
  width: 55%;
  height: 220%;
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(20deg);
  pointer-events: none;
}

.job-modal .apply-divider {
  border-top-color: rgba(0, 20, 60, 0.1);
}

.job-modal .apply-form input[type="text"],
.job-modal .apply-form input[type="email"],
.job-modal .apply-form input[type="tel"],
.job-modal .apply-form textarea {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 2px 8px rgba(0, 20, 60, 0.05);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.job-modal .apply-form input[type="text"]:focus,
.job-modal .apply-form input[type="email"]:focus,
.job-modal .apply-form input[type="tel"]:focus,
.job-modal .apply-form textarea:focus {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.78) 100%);
}

.job-modal .apply-form button[type="submit"].btn {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 55%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 10px 26px rgba(0, 61, 224, 0.35);
}

.job-modal .apply-form .file-drop {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.32) 100%);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border-color: rgba(0, 93, 224, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.job-modal .apply-form .file-drop:hover,
.job-modal .apply-form .file-drop.has-file {
  background: rgba(0, 93, 224, 0.1);
}

/* ---------- Team member cards (team.html) ---------- */
/* .team-content overlaps the photo above it (negative margin-top),
   so the blur genuinely frosts the image behind it. */

.our-tem-section .our-team-wrap .team-content-wrap .single-team .team-content {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.5) 55%, rgba(255, 255, 255, 0.62));
  backdrop-filter: blur(14px) saturate(110%);
  -webkit-backdrop-filter: blur(14px) saturate(110%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  box-shadow:
    0 8px 28px rgba(0, 20, 60, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, background 0.3s ease;
}

.our-tem-section .our-team-wrap .team-content-wrap .single-team .team-content::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
  background-size: 260% 260%;
  background-position: -80% -80%;
  pointer-events: none;
  transition: background-position 0.8s ease;
}

.our-tem-section .our-team-wrap .team-content-wrap .single-team:hover .team-content::after {
  background-position: 100% 100%;
}

.our-tem-section .our-team-wrap .team-content-wrap .single-team:hover .team-content {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.58) 55%, rgba(255, 255, 255, 0.7));
  box-shadow:
    0 16px 36px rgba(0, 20, 60, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

/* ---------- Service marquee cards (index.html + about.html) ---------- */

.home-service-section,
.about-service-section {
  position: relative;
}

.about-service-section {
  overflow-x: hidden;
}

.about-service-section .service-wrap {
  margin-top: 0;
}

.about-service-section .service-wrap .service-marquee,
.home-service-section .service-wrap .service-marquee {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  padding-top: 16px;
  margin-top: -16px;
}

.home-service-section::before,
.about-service-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 420px at 10% 10%, rgba(0, 93, 224, 0.22), transparent 65%),
    radial-gradient(560px 420px at 90% 30%, rgba(84, 214, 235, 0.24), transparent 65%),
    linear-gradient(135deg, rgba(0, 93, 224, 0.1), rgba(84, 214, 235, 0.12) 50%, rgba(124, 58, 237, 0.08));
  pointer-events: none;
  z-index: 0;
}

.home-service-section > .container,
.about-service-section > .container {
  position: relative;
  z-index: 1;
}

.home-service-section .service-wrap .service-item {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.18) 55%, rgba(255, 255, 255, 0.3));
  backdrop-filter: blur(18px) saturate(110%);
  -webkit-backdrop-filter: blur(18px) saturate(110%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  box-shadow:
    0 14px 34px rgba(0, 20, 60, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -12px 22px -14px rgba(255, 255, 255, 0.4);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, background 0.35s ease;
}

.home-service-section .service-wrap .service-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  background-size: 260% 260%;
  background-position: -80% -80%;
  pointer-events: none;
  transition: background-position 0.8s ease;
}

.home-service-section .service-wrap .service-item:hover::after {
  background-position: 100% 100%;
}

.home-service-section .service-wrap .service-item:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.26) 55%, rgba(255, 255, 255, 0.38));
  box-shadow:
    0 22px 46px rgba(0, 20, 60, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -12px 22px -14px rgba(255, 255, 255, 0.5);
}

/* ---------- Service marquee cards (about.html) ---------- */

.about-service-section::before {
  background:
    radial-gradient(600px 420px at 10% 20%, rgba(0, 93, 224, 0.3), transparent 65%),
    radial-gradient(560px 420px at 90% 60%, rgba(84, 214, 235, 0.32), transparent 65%),
    linear-gradient(135deg, rgba(0, 93, 224, 0.14), rgba(84, 214, 235, 0.16) 50%, rgba(124, 58, 237, 0.1));
}

.about-service-section .service-wrap .service-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.16) 55%, rgba(255, 255, 255, 0.26));
  backdrop-filter: blur(20px) saturate(100%);
  -webkit-backdrop-filter: blur(20px) saturate(100%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -12px 22px -14px rgba(255, 255, 255, 0.35);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, background 0.35s ease;
}

.about-service-section .service-wrap .service-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  background-size: 260% 260%;
  background-position: -80% -80%;
  pointer-events: none;
  transition: background-position 0.8s ease;
}

.about-service-section .service-wrap .service-item:hover::after {
  background-position: 100% 100%;
}

.about-service-section .service-wrap .service-item:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.24) 55%, rgba(255, 255, 255, 0.34));
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -12px 22px -14px rgba(255, 255, 255, 0.45);
}

/* ---------- Team preview cards (index.html) ---------- */

.home-team-section .team-wrap .team-content-wrap .single-team .team-content {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.5) 55%, rgba(255, 255, 255, 0.62));
  backdrop-filter: blur(14px) saturate(110%);
  -webkit-backdrop-filter: blur(14px) saturate(110%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  box-shadow:
    0 8px 28px rgba(0, 20, 60, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, background 0.3s ease;
}

.home-team-section .team-wrap .team-content-wrap .single-team .team-content::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
  background-size: 260% 260%;
  background-position: -80% -80%;
  pointer-events: none;
  transition: background-position 0.8s ease;
}

.home-team-section .team-wrap .team-content-wrap .single-team:hover .team-content::after {
  background-position: 100% 100%;
}

.home-team-section .team-wrap .team-content-wrap .single-team:hover .team-content {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.58) 55%, rgba(255, 255, 255, 0.7));
  box-shadow:
    0 16px 36px rgba(0, 20, 60, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

/* ---------- About page: quick-query section — cool, light background ---------- */
/* Was a vivid dark-blue-to-cyan photo (ab-contact.jpg); replaced with the same
   soft radial-glow-on-white recipe used elsewhere sitewide (hero, login page). */

.contact-section-2 {
  background-image: none !important;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.contact-section-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(650px 460px at 6% 10%, rgba(0, 93, 224, 0.14), transparent 65%),
    radial-gradient(600px 460px at 96% 90%, rgba(84, 214, 235, 0.18), transparent 65%),
    linear-gradient(135deg, rgba(0, 93, 224, 0.04), rgba(84, 214, 235, 0.05) 50%, rgba(124, 58, 237, 0.03));
  pointer-events: none;
  z-index: 0;
}

.contact-section-2 > .container {
  position: relative;
  z-index: 1;
}

.contact-section-2 .contact-wrap .contact-info .info-title {
  color: #1a1f36;
}

.contact-section-2 .contact-wrap .contact-info ul {
  padding-top: 6px;
}

.contact-section-2 .contact-wrap .contact-info ul li {
  display: flex;
  border-top: 0;
  margin-top: 18px;
  padding: 20px 22px;
  background: linear-gradient(135deg, #e4edfc 0%, #eef3fc 55%, #f6f9fe 100%);
  border: 1px solid rgba(0, 93, 224, 0.12);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 20, 60, 0.06);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.contact-section-2 .contact-wrap .contact-info ul li:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #d8e6fb 0%, #e6eefc 55%, #f0f5fe 100%);
  box-shadow: 0 16px 34px rgba(0, 20, 60, 0.1);
}

.contact-section-2 .contact-wrap .contact-info ul li .contact-info-item .contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 93, 224, 0.18);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 20, 60, 0.08);
}

.contact-section-2 .contact-wrap .contact-info ul li .contact-info-item .contact-info-icon i {
  font-size: 26px;
  color: #005de0;
}

.contact-section-2 .contact-wrap .contact-info ul li .contact-info-item .contact-info-text .title {
  color: #1a1f36;
}

.contact-section-2 .contact-wrap .contact-info ul li .contact-info-item .contact-info-text p {
  color: #4c4d56;
}

/* ---------- About page: contact form card — light elevated card ---------- */

.contact-section-2 .contact-wrap .contact-form {
  background: #ffffff;
  border: 1px solid rgba(0, 93, 224, 0.1);
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 20, 60, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.contact-section-2 .contact-wrap .contact-form .contact-form-wrap .single-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.contact-section-2 .contact-wrap .contact-form .contact-form-wrap .single-form textarea {
  background: #f4f7fd;
  border: 1px solid rgba(0, 93, 224, 0.12);
}

.contact-section-2 .contact-wrap .contact-form .contact-form-wrap .single-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):focus,
.contact-section-2 .contact-wrap .contact-form .contact-form-wrap .single-form textarea:focus {
  background: #ffffff;
  border-color: rgba(0, 93, 224, 0.4);
}

/* ---------- Contact page: info cards ---------- */

.contact-info-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 90px;
}

@media only screen and (max-width: 1199px) {
  .contact-info-section {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 991px) {
  .contact-info-section {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-info-section {
    padding-bottom: 60px;
  }
}

.contact-info-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 420px at 10% 10%, rgba(0, 93, 224, 0.2), transparent 65%),
    radial-gradient(560px 420px at 90% 30%, rgba(84, 214, 235, 0.22), transparent 65%),
    linear-gradient(135deg, rgba(0, 93, 224, 0.1), rgba(84, 214, 235, 0.12) 50%, rgba(124, 58, 237, 0.08));
  pointer-events: none;
  z-index: 0;
}

.contact-info-section > .container {
  position: relative;
  z-index: 1;
}

.contact-info-section .contact-info-wrap .single-contact-info {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.2) 55%, rgba(255, 255, 255, 0.34));
  backdrop-filter: blur(22px) saturate(120%);
  -webkit-backdrop-filter: blur(22px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  box-shadow:
    0 18px 40px rgba(0, 20, 60, 0.12),
    0 2px 8px rgba(0, 20, 60, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -14px 26px -16px rgba(255, 255, 255, 0.4);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, background 0.45s ease;
}

.contact-info-section .contact-info-wrap .single-contact-info::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  background-size: 260% 260%;
  background-position: -80% -80%;
  pointer-events: none;
  transition: background-position 0.8s ease;
}

.contact-info-section .contact-info-wrap .single-contact-info:hover::after {
  background-position: 100% 100%;
}

.contact-info-section .contact-info-wrap .single-contact-info:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.28) 55%, rgba(255, 255, 255, 0.42));
  box-shadow:
    0 30px 58px rgba(0, 20, 60, 0.18),
    0 4px 12px rgba(0, 20, 60, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -14px 26px -16px rgba(255, 255, 255, 0.5);
}

.contact-info-section .contact-info-wrap .single-contact-info .info-icon {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  box-shadow:
    0 10px 26px rgba(0, 61, 224, 0.32),
    inset 0 2px 5px rgba(255, 255, 255, 0.55),
    inset 0 -5px 8px rgba(0, 0, 0, 0.08);
}

.contact-info-section .contact-info-wrap .single-contact-info .info-icon::before {
  content: "";
  position: absolute;
  top: -35%;
  left: -15%;
  width: 65%;
  height: 65%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
}

.contact-info-section .contact-info-wrap .single-contact-info:hover .info-icon {
  transform: scale(1.08);
  box-shadow:
    0 16px 34px rgba(0, 61, 224, 0.44),
    inset 0 2px 5px rgba(255, 255, 255, 0.65),
    inset 0 -5px 8px rgba(0, 0, 0, 0.1);
}

/* ---------- Contact page: contact form card ---------- */

.contact-form-section {
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(640px 440px at 12% 10%, rgba(0, 93, 224, 0.18), transparent 65%),
    radial-gradient(600px 440px at 88% 30%, rgba(84, 214, 235, 0.2), transparent 65%),
    linear-gradient(135deg, rgba(0, 93, 224, 0.08), rgba(84, 214, 235, 0.1) 50%, rgba(124, 58, 237, 0.06));
  pointer-events: none;
  z-index: 0;
}

.contact-form-section > .container {
  position: relative;
  z-index: 1;
}

.contact-form-section .contact-wrap .contact-form-wrap {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.18) 50%, rgba(255, 255, 255, 0.3));
  backdrop-filter: blur(26px) saturate(120%);
  -webkit-backdrop-filter: blur(26px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  box-shadow:
    0 30px 70px rgba(0, 20, 60, 0.14),
    0 6px 18px rgba(0, 20, 60, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -18px 30px -18px rgba(255, 255, 255, 0.4);
  padding: 40px;
}

.contact-form-section .contact-wrap .contact-form-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.35) 0%, transparent 30%, transparent 75%, rgba(255, 255, 255, 0.2) 100%);
  pointer-events: none;
}

.contact-form-section .contact-wrap .contact-form-wrap .single-form .form-control {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px) saturate(100%);
  -webkit-backdrop-filter: blur(10px) saturate(100%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: background 0.3s ease, border-color 0.3s ease;
  position: relative;
  z-index: 1;
}

.contact-form-section .contact-wrap .contact-form-wrap .single-form textarea.form-control {
  border-radius: 18px;
}

.contact-form-section .contact-wrap .contact-form-wrap .single-form .form-control:focus {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(0, 93, 224, 0.4);
}

.contact-form-section .contact-wrap .contact-form-wrap .form-btn {
  position: relative;
  z-index: 1;
}

/* ---------- Contact page: map section ---------- */

.contact-map-section {
  position: relative;
  overflow: hidden;
  padding: 70px 24px;
}

.contact-map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 420px at 12% 20%, rgba(0, 93, 224, 0.12), transparent 65%),
    radial-gradient(560px 420px at 88% 80%, rgba(124, 58, 237, 0.12), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.contact-map-section .contact-map-wrap {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 30px 70px rgba(0, 20, 60, 0.14),
    0 6px 18px rgba(0, 20, 60, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.contact-map-section .contact-map-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.25) 0%, transparent 30%, transparent 75%, rgba(255, 255, 255, 0.15) 100%);
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .contact-map-section {
    padding: 40px 16px;
  }

  .contact-map-section .contact-map-wrap {
    border-radius: 20px;
  }
}

/* ---------- Home "Who We Are" section ---------- */

.home-about-who {
  position: relative;
}

.home-about-who::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 420px at 8% 15%, rgba(0, 93, 224, 0.12), transparent 65%),
    radial-gradient(560px 420px at 95% 75%, rgba(84, 214, 235, 0.14), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.home-about-who > .container {
  position: relative;
  z-index: 1;
}

.home-about-who .about-thumb-wrap::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  right: 10px;
  bottom: 60px;
  background: linear-gradient(160deg, rgba(0, 93, 224, 0.18), rgba(84, 214, 235, 0.14));
  filter: blur(34px);
  border-radius: 30px;
  z-index: -2;
  pointer-events: none;
}

.home-about-who .about-thumb-wrap .about-thumb-small img,
.home-about-who .about-thumb-wrap .about-thumb-big img {
  border: 3px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 20px 45px rgba(0, 61, 224, 0.22);
}

.home-about-who .section-title .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 61, 224, 0.1);
}

.home-about-who .about-author-list .about-list ul li {
  position: relative;
  overflow: hidden;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.3) 55%, rgba(255, 255, 255, 0.42));
  backdrop-filter: blur(14px) saturate(110%);
  -webkit-backdrop-filter: blur(14px) saturate(110%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  box-shadow:
    0 6px 20px rgba(0, 20, 60, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.home-about-who .about-author-list .about-list ul li::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  background-size: 260% 260%;
  background-position: -80% -80%;
  pointer-events: none;
  transition: background-position 0.8s ease;
}

.home-about-who .about-author-list .about-list ul li:hover::after {
  background-position: 100% 100%;
}

.home-about-who .about-author-list .about-list ul li + li {
  margin-top: 14px;
}

.home-about-who .about-author-list .about-list ul li:hover {
  transform: translateX(6px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.38) 55%, rgba(255, 255, 255, 0.5));
  box-shadow:
    0 12px 28px rgba(0, 20, 60, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.home-about-who .about-author-list .about-list ul li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #005de0, #54d6eb);
  color: #ffffff;
  font-size: 12px;
  margin-right: 10px;
  vertical-align: middle;
}

/* ---------- About page: Welcome section ---------- */

.about-section {
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 420px at 8% 15%, rgba(0, 93, 224, 0.12), transparent 65%),
    radial-gradient(560px 420px at 95% 75%, rgba(84, 214, 235, 0.14), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.about-section > .container {
  position: relative;
  z-index: 1;
}

.about-section .about-thumb-wrap::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  right: 10px;
  bottom: 30px;
  background: linear-gradient(160deg, rgba(0, 93, 224, 0.18), rgba(84, 214, 235, 0.14));
  filter: blur(34px);
  border-radius: 30px;
  z-index: -2;
  pointer-events: none;
}

.about-section .about-thumb-wrap .about-thumb-small img,
.about-section .about-thumb-wrap .about-thumb-big img {
  border: 3px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 20px 45px rgba(0, 61, 224, 0.22);
}

.about-section .section-title .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 61, 224, 0.1);
}

.about-section .about-wrap .about-content {
  position: relative;
  padding: 44px 48px 44px 96px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 61, 224, 0.12);
}

@media only screen and (max-width: 1199px) {
  .about-section .about-wrap .about-content {
    padding: 34px 32px 34px 56px;
  }
}

@media only screen and (max-width: 767px) {
  .about-section .about-wrap .about-content {
    padding: 28px 24px;
    border-radius: 18px;
  }
}

/* ---------- Careers Admin: login screen (split brand panel) ---------- */

.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  background: #ffffff;
}

.admin-login-brand {
  position: relative;
  overflow: hidden;
  flex: 0 0 42%;
  max-width: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #050b24 0%, #0a1747 45%, #0f2a6e 78%, #16327e 100%);
}

.admin-login-brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.6;
  pointer-events: none;
}

.admin-login-brand-inner {
  position: relative;
  z-index: 1;
  max-width: 360px;
  padding: 60px 48px;
  text-align: center;
}

.admin-login-brand-icon {
  width: 74px;
  height: 74px;
  margin-bottom: 28px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.admin-login-brand-name {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 16px;
}

.admin-login-brand-name span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #6fa8ff;
  margin-top: 6px;
}

.admin-login-brand-tagline {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

.admin-login-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
  animation: adminOrbFloat 7s ease-in-out infinite;
}

.admin-login-orb-1 {
  top: 12%;
  left: 10%;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle at 35% 35%, rgba(30, 111, 238, 0.55), transparent 70%);
}

.admin-login-orb-2 {
  bottom: 14%;
  right: 12%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at 35% 35%, rgba(232, 25, 90, 0.4), transparent 70%);
  animation-delay: -3.5s;
}

@keyframes adminOrbFloat {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(12px, -18px);
  }
}

.admin-login-form-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.admin-login-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  text-align: left;
  animation: adminLoginCardIn 0.5s ease both;
}

@keyframes adminLoginCardIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.admin-login-card h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.admin-login-subtitle {
  color: #5b6478;
  font-size: 14px;
  margin-bottom: 28px;
}

.admin-login-field {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.admin-login-field i.fa-lock {
  position: absolute;
  left: 16px;
  color: #8a93a6;
  font-size: 14px;
  pointer-events: none;
}

.admin-login-card input[type="password"],
.admin-login-card input[type="text"] {
  background: #f6f8fb;
  border: 1px solid #e6e9f0;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-login-field input[type="password"],
.admin-login-field input[type="text"] {
  padding-left: 42px !important;
  padding-right: 42px !important;
  margin-bottom: 0 !important;
}

.admin-login-card input[type="password"]:focus,
.admin-login-card input[type="text"]:focus {
  background: #ffffff;
  border-color: #1e6fee;
  box-shadow: 0 0 0 3px rgba(30, 111, 238, 0.12);
}

.admin-login-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #8a93a6;
  cursor: pointer;
  padding: 4px 6px;
  font-size: 14px;
  width: auto !important;
}

.admin-login-toggle:hover {
  color: #1e6fee;
}

.admin-login-card button[type="submit"] {
  background: #005de0;
  background-image: linear-gradient(115deg, #0a1747 0%, #1e6fee 55%, #e8195a 130%);
  box-shadow: 0 10px 26px rgba(15, 42, 110, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-login-card button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 42, 110, 0.4);
}

.admin-login-forgot {
  margin-top: 18px;
  text-align: center;
}

.admin-login-forgot a {
  color: #5b6478;
  font-size: 13px;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.admin-login-forgot a:hover {
  color: #1e6fee;
  text-decoration-color: #1e6fee;
}

.admin-login-forgot-hint {
  margin: 10px 0 0;
  color: #5b6478;
  font-size: 12.5px;
  line-height: 1.6;
  background: #f6f8fb;
  border: 1px solid #e6e9f0;
  border-radius: 8px;
  padding: 10px 14px;
  text-align: left;
}

@media only screen and (max-width: 900px) {
  .admin-login-brand {
    display: none;
  }

  .admin-login-form-panel {
    padding: 24px;
  }
}

/* ---------- Home "Why Choose Us" features ---------- */

.features-section .section-title .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 61, 224, 0.1);
}

.features-section .features-wrap .features-content-wrap .features-content ul {
  gap: 22px;
}

.features-section .features-wrap .features-content-wrap .features-content ul .features-item {
  position: relative;
  overflow: hidden;
  width: calc(50% - 11px);
  padding: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.3) 55%, rgba(255, 255, 255, 0.42));
  backdrop-filter: blur(16px) saturate(110%);
  -webkit-backdrop-filter: blur(16px) saturate(110%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  box-shadow:
    0 8px 24px rgba(0, 20, 60, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.features-section .features-wrap .features-content-wrap .features-content ul .features-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  background-size: 260% 260%;
  background-position: -80% -80%;
  pointer-events: none;
  transition: background-position 0.8s ease;
}

.features-section .features-wrap .features-content-wrap .features-content ul .features-item:hover::after {
  background-position: 100% 100%;
}

.features-section .features-wrap .features-content-wrap .features-content ul .features-item:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.38) 55%, rgba(255, 255, 255, 0.5));
  box-shadow:
    0 14px 32px rgba(0, 20, 60, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.features-section .features-wrap .features-content-wrap .features-content ul .features-item .features-icon {
  flex: none;
}

.features-section .features-wrap .features-content-wrap .features-content ul .features-item .features-text {
  max-width: none;
  margin-left: 14px;
}

.features-section .features-wrap .features-content-wrap .features-content ul .features-item .features-text p {
  font-size: 15px;
  line-height: 22px;
}

@media only screen and (max-width: 575px) {
  .features-section .features-wrap .features-content-wrap .features-content ul .features-item {
    width: 100%;
  }
}

/* ---------- Home "Our Commitment to Your Success" section ---------- */

.home-about-commitment {
  position: relative;
}

.home-about-commitment::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 420px at 92% 12%, rgba(0, 93, 224, 0.12), transparent 65%),
    radial-gradient(560px 420px at 5% 80%, rgba(84, 214, 235, 0.14), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.home-about-commitment > .container {
  position: relative;
  z-index: 1;
}

.home-about-commitment .about-thumb-wrap::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  right: 10px;
  bottom: 60px;
  background: linear-gradient(160deg, rgba(0, 93, 224, 0.18), rgba(84, 214, 235, 0.14));
  filter: blur(34px);
  border-radius: 30px;
  z-index: -2;
  pointer-events: none;
}

.home-about-commitment .about-thumb-wrap .about-thumb-small img,
.home-about-commitment .about-thumb-wrap .about-thumb-big img {
  border: 3px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 20px 45px rgba(0, 61, 224, 0.22);
}

.home-about-commitment .section-title .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 61, 224, 0.1);
}

.home-about-commitment .about-content p:has(i.fas.fa-check) {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 16px 18px;
  margin-top: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.3) 55%, rgba(255, 255, 255, 0.42));
  backdrop-filter: blur(14px) saturate(110%);
  -webkit-backdrop-filter: blur(14px) saturate(110%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  box-shadow:
    0 6px 20px rgba(0, 20, 60, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.home-about-commitment .about-content p:has(i.fas.fa-check)::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  background-size: 260% 260%;
  background-position: -80% -80%;
  pointer-events: none;
  transition: background-position 0.8s ease;
}

.home-about-commitment .about-content p:has(i.fas.fa-check):hover::after {
  background-position: 100% 100%;
}

.home-about-commitment .about-content p:has(i.fas.fa-check):hover {
  transform: translateX(6px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.38) 55%, rgba(255, 255, 255, 0.5));
  box-shadow:
    0 12px 28px rgba(0, 20, 60, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.home-about-commitment .about-content p:has(i.fas.fa-check) i.fas.fa-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #005de0, #54d6eb);
  color: #ffffff;
  font-size: 12px;
  margin-right: 10px;
  vertical-align: middle;
}

/* ---------- Service page: skill/progress section ---------- */

.skill-section-3::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 420px at 8% 20%, rgba(0, 93, 224, 0.14), transparent 65%),
    radial-gradient(560px 420px at 95% 80%, rgba(84, 214, 235, 0.16), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.skill-section-3 > .container {
  position: relative;
  z-index: 1;
}

.skill-section-3 .skill-wrap .skill-content-wrap .skill-content-left .skill-img {
  position: relative;
}

.skill-section-3 .skill-wrap .skill-content-wrap .skill-content-left .skill-img::before {
  content: "";
  position: absolute;
  inset: -24px;
  background: linear-gradient(160deg, rgba(0, 93, 224, 0.22), rgba(84, 214, 235, 0.18));
  filter: blur(36px);
  border-radius: 30px;
  z-index: -1;
}

.skill-section-3 .skill-wrap .skill-content-wrap .skill-content-left .skill-img img {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 24px 50px rgba(0, 61, 224, 0.16);
}

.skill-section-3 .skill-wrap .skill-content-wrap .skill-content-left .skill-img .play-btn a {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px) saturate(100%);
  -webkit-backdrop-filter: blur(14px) saturate(100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #005de0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.skill-section-3 .skill-wrap .skill-content-wrap .skill-content-left .skill-img .play-btn a:hover {
  background: #005de0;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 61, 224, 0.35);
}

.skill-section-3 .skill-wrap .skill-content-wrap .skill-content-right {
  position: relative;
  overflow: hidden;
  padding: 44px 56px 44px 96px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.2) 55%, rgba(255, 255, 255, 0.32));
  backdrop-filter: blur(20px) saturate(100%);
  -webkit-backdrop-filter: blur(20px) saturate(100%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 24px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -14px 26px -16px rgba(255, 255, 255, 0.4);
}

.skill-section-3 .skill-wrap .skill-content-wrap .skill-content-right::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.3) 0%, transparent 30%, transparent 75%, rgba(255, 255, 255, 0.18) 100%);
  pointer-events: none;
}

.skill-section-3 .skill-wrap .skill-content-wrap .skill-content-right > * {
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1199px) {
  .skill-section-3 .skill-wrap .skill-content-wrap .skill-content-right {
    padding: 36px 32px;
  }
}

@media only screen and (max-width: 767px) {
  .skill-section-3 .skill-wrap .skill-content-wrap .skill-content-right {
    padding: 28px 24px;
    border-radius: 18px;
  }
}

.skill-section-3 .skill-wrap .skill-content-wrap .skill-content-right .skill-bar-wrap .skill-item .bar-inner {
  height: 12px;
  border: 1px solid rgba(0, 93, 224, 0.16);
  border-radius: 999px;
  background: rgba(0, 93, 224, 0.08);
  box-shadow: inset 0 1px 4px rgba(0, 61, 224, 0.1);
  overflow: hidden;
}

.skill-section-3 .skill-wrap .skill-content-wrap .skill-content-right .skill-bar-wrap .skill-item .bar-inner .progress-line {
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #005de0, #54d6eb);
  box-shadow: 0 0 12px rgba(0, 93, 224, 0.45);
}

/* ---------- CTA banner: "Make a great project with us" (service.html, index-4.html, index-6.html) ---------- */

.cta-section-3 .cta-wrap-3 .cta-content {
  position: relative;
  overflow: hidden;
  padding: 56px 48px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03) 55%, rgba(255, 255, 255, 0.07));
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.cta-section-3 .cta-wrap-3 .cta-content::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1) 0%, transparent 30%, transparent 75%, rgba(255, 255, 255, 0.06) 100%);
  pointer-events: none;
}

.cta-section-3 .cta-wrap-3 .cta-content > * {
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .cta-section-3 .cta-wrap-3 .cta-content {
    padding: 36px 24px;
    border-radius: 20px;
  }
}

.cta-section-3 .cta-wrap-3 .cta-content p a {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  padding: 6px 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #54d6eb;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-section-3 .cta-wrap-3 .cta-content p a:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

/* ---------- Service page: testimonial section ---------- */

.testimonial-section-5 {
  position: relative;
  padding-bottom: 90px;
}

@media only screen and (max-width: 1199px) {
  .testimonial-section-5 {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 991px) {
  .testimonial-section-5 {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-section-5 {
    padding-bottom: 60px;
  }
}

.testimonial-section-5::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 420px at 10% 20%, rgba(0, 93, 224, 0.1), transparent 65%),
    radial-gradient(560px 420px at 90% 70%, rgba(124, 58, 237, 0.1), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.testimonial-section-5 > .container {
  position: relative;
  z-index: 1;
}

.testimonial-section-2 .testimonial-2-wrap .testimonial-slider-wrap .single-testimonial {
  position: relative;
  overflow: hidden;
  padding: 48px 56px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.24) 55%, rgba(255, 255, 255, 0.36));
  backdrop-filter: blur(20px) saturate(100%);
  -webkit-backdrop-filter: blur(20px) saturate(100%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -14px 26px -16px rgba(255, 255, 255, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.testimonial-section-2 .testimonial-2-wrap .testimonial-slider-wrap .single-testimonial::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  background-size: 260% 260%;
  background-position: -80% -80%;
  pointer-events: none;
  transition: background-position 0.8s ease;
}

.testimonial-section-2 .testimonial-2-wrap .testimonial-slider-wrap .single-testimonial:hover::after {
  background-position: 100% 100%;
}

.testimonial-section-2 .testimonial-2-wrap .testimonial-slider-wrap .single-testimonial:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.32) 55%, rgba(255, 255, 255, 0.44));
  box-shadow:
    0 34px 64px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -14px 26px -16px rgba(255, 255, 255, 0.5);
}

@media only screen and (max-width: 767px) {
  .testimonial-section-2 .testimonial-2-wrap .testimonial-slider-wrap .single-testimonial {
    padding: 32px 24px;
    border-radius: 20px;
  }
}

.testimonial-section-2 .testimonial-2-wrap .testimonial-slider-wrap .single-testimonial .testimonial-image {
  position: relative;
  flex-shrink: 0;
}

.testimonial-section-2 .testimonial-2-wrap .testimonial-slider-wrap .single-testimonial .testimonial-image::before {
  content: "";
  position: absolute;
  inset: -16px;
  background: linear-gradient(160deg, rgba(0, 93, 224, 0.2), rgba(124, 58, 237, 0.16));
  filter: blur(28px);
  border-radius: 24px;
  z-index: -1;
  transition: filter 0.4s ease, background 0.4s ease;
}

.testimonial-section-2 .testimonial-2-wrap .testimonial-slider-wrap .single-testimonial:hover .testimonial-image::before {
  background: linear-gradient(160deg, rgba(0, 93, 224, 0.32), rgba(124, 58, 237, 0.26));
  filter: blur(34px);
}

.testimonial-section-2 .testimonial-2-wrap .testimonial-slider-wrap .single-testimonial .testimonial-image img {
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 40px rgba(0, 61, 224, 0.14);
  transition: transform 0.5s ease, box-shadow 0.4s ease;
}

.testimonial-section-2 .testimonial-2-wrap .testimonial-slider-wrap .single-testimonial:hover .testimonial-image img {
  transform: scale(1.06);
  box-shadow: 0 30px 58px rgba(0, 61, 224, 0.28);
}

/* ---------- Home "Why Choose Us" hero cutout: embossed relief look ---------- */
/* This PNG is a transparent silhouette cutout, so box-shadow (which draws a
   rectangle) won't work — drop-shadow follows the actual visible pixels. */

.features-section .features-thumb .image img {
  filter:
    drop-shadow(-3px -3px 0 rgba(255, 255, 255, 0.95))
    drop-shadow(-8px -8px 14px rgba(255, 255, 255, 0.7))
    drop-shadow(6px 6px 0 rgba(0, 30, 80, 0.25))
    drop-shadow(16px 20px 24px rgba(0, 20, 60, 0.4))
    drop-shadow(0 35px 45px rgba(0, 61, 224, 0.28));
}

/* ---------- Login & Register page ---------- */

.login-register-section {
  position: relative;
  overflow: hidden;
}

.login-register-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(650px 440px at 8% 10%, rgba(0, 93, 224, 0.32), transparent 65%),
    radial-gradient(600px 440px at 92% 90%, rgba(84, 214, 235, 0.32), transparent 65%),
    linear-gradient(135deg, rgba(0, 93, 224, 0.1), rgba(84, 214, 235, 0.12) 50%, rgba(124, 58, 237, 0.08));
  pointer-events: none;
  z-index: 0;
}

.login-register-section > .container {
  position: relative;
  z-index: 1;
}

.login-register-section .login-register-wrap .login-register-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.14) 55%, rgba(255, 255, 255, 0.22));
  backdrop-filter: blur(20px) saturate(110%);
  -webkit-backdrop-filter: blur(20px) saturate(110%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow:
    0 20px 50px rgba(0, 20, 60, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -14px 26px -16px rgba(255, 255, 255, 0.4);
}

.login-register-section .login-register-wrap .login-register-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.35) 0%, transparent 30%, transparent 75%, rgba(255, 255, 255, 0.2) 100%);
  pointer-events: none;
}

.login-register-section .login-register-wrap .login-register-box .login-register-form,
.login-register-section .login-register-wrap .login-register-box .section-title {
  position: relative;
  z-index: 1;
}

.login-register-section .login-register-wrap .login-register-box .login-register-form .single-form .form-control {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px) saturate(110%);
  -webkit-backdrop-filter: blur(10px) saturate(110%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.login-register-section .login-register-wrap .login-register-box .login-register-form .single-form .form-control:focus {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 93, 224, 0.45);
}

/* Pill-shaped Login / Register tab toggle */

.login-register-box .login-register-tabs {
  display: flex;
  gap: 4px;
  background: rgba(232, 236, 244, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  padding: 6px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.login-register-box .login-register-tabs button {
  flex: 1;
  border: none;
  background: transparent;
  color: #333333;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 13px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.login-register-box .login-register-tabs button.active {
  background: linear-gradient(135deg, #005de0, #0072ff);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 93, 224, 0.35);
}

.login-register-box .login-register-panel {
  display: none;
  position: relative;
  z-index: 1;
}

.login-register-box .login-register-panel.active {
  display: block;
}

.login-register-box .login-register-form .form-btn {
  margin-top: 24px;
}

.login-register-box .login-register-form .form-btn .btn {
  display: block;
  width: 100%;
  height: 58px;
  line-height: 54px;
  padding: 0;
  border-radius: 999px;
  text-align: center;
  font-size: 17px;
}

.login-register-box .login-register-form .single-form.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.login-register-box .login-register-form .single-form.form-check .form-check-input {
  margin: 0;
  width: 16px;
  height: 16px;
}

.login-register-box .login-register-form .single-form.form-check .form-check-label {
  font-size: 14px;
  color: #5b6478;
  margin: 0;
}

.login-register-form .form-feedback {
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 4px;
  display: none;
}

.login-register-form .form-feedback.success {
  display: block;
  background: rgba(20, 128, 74, 0.12);
  color: #14804a;
}

.login-register-form .form-feedback.error {
  display: block;
  background: rgba(198, 40, 40, 0.1);
  color: #c62828;
}

/* ---------- Privacy Policy page: long-form legal text ---------- */
/* The sitewide reset strips list-style/padding from every <ul>, which is
   fine for icon-based nav/checklists but leaves plain policy lists with
   no bullets or indent — restore normal list styling just here. */

.policy-content ul {
  list-style: disc;
  padding-left: 22px;
  margin: 16px 0;
}

.policy-content li {
  margin-bottom: 10px;
  line-height: 1.75;
}

.policy-content li:last-child {
  margin-bottom: 0;
}

.policy-content h3 {
  font-size: 22px;
  line-height: 32px;
}

/* New logo on dark backgrounds: white badge so the navy wordmark stays legible */
.footer-logo,
.offcanvas-logo a,
.header-logo-3 .logo-black,
.header-logo-3 .logo-white {
  display: inline-block;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 16px;
}

/* The footer logo badge sits near the top of a scrolling section, directly below
   the sticky header while scrolling past it — a shadow keeps it reading as its own
   floating card instead of visually merging with the header above. */
.footer-logo {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

/* ---------- Register: OTP verification step ---------- */

.register-otp-hint {
  margin-bottom: 16px;
  color: #5b6478;
  font-size: 14px;
}

#registerOtpInput {
  letter-spacing: 6px;
  font-size: 20px;
  text-align: center;
}

.register-otp-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #8a93a6;
}

.register-otp-links a {
  color: #005de0;
  text-decoration: underline;
}

.register-otp-links a.disabled {
  color: #8a93a6;
  text-decoration: none;
  pointer-events: none;
  cursor: default;
}

/* ---------- Admin header: cross-page nav ---------- */

.admin-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.admin-nav a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.admin-nav a:hover {
  color: #ffffff;
}

.admin-nav a.active {
  color: #ffffff;
  border-bottom: 2px solid #1e6fee;
  padding-bottom: 4px;
}

.admin-panel-count {
  font-size: 13px;
  font-weight: 500;
  color: #8a93a6;
  margin-left: 6px;
}

/* ---------- Admin dashboard: glass panels + login-style gradient buttons ---------- */

.admin-main {
  position: relative;
  overflow: hidden;
}

.admin-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(640px 440px at 12% 8%, rgba(30, 111, 238, 0.14), transparent 65%),
    radial-gradient(600px 440px at 90% 15%, rgba(232, 25, 90, 0.12), transparent 65%),
    linear-gradient(135deg, rgba(10, 23, 71, 0.05), rgba(30, 111, 238, 0.06) 50%, rgba(232, 25, 90, 0.04));
  pointer-events: none;
  z-index: 0;
}

.admin-main > .container {
  position: relative;
  z-index: 1;
}

.admin-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.4) 55%, rgba(255, 255, 255, 0.55));
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow:
    0 20px 46px rgba(0, 20, 60, 0.12),
    0 2px 8px rgba(0, 20, 60, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -14px 26px -16px rgba(255, 255, 255, 0.4);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.admin-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.3) 0%, transparent 30%, transparent 75%, rgba(255, 255, 255, 0.18) 100%);
  pointer-events: none;
}

.admin-panel > * {
  position: relative;
  z-index: 1;
}

.admin-panel:hover {
  box-shadow:
    0 26px 54px rgba(0, 20, 60, 0.16),
    0 3px 10px rgba(0, 20, 60, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -14px 26px -16px rgba(255, 255, 255, 0.5);
}

/* Buttons: adopt the login screen's navy -> blue -> pink gradient */

.admin-body .btn,
.admin-panel h3 .btn-small,
.admin-header .admin-logout-btn,
.admin-table .row-actions button:not(.danger) {
  background: linear-gradient(115deg, #0a1747 0%, #1e6fee 55%, #e8195a 130%);
  border-color: transparent;
  color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-body .btn:hover,
.admin-panel h3 .btn-small:hover,
.admin-header .admin-logout-btn:hover,
.admin-table .row-actions button:not(.danger):hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 42, 110, 0.35);
  color: #ffffff;
}

/* The theme's base .btn has a white diagonal sweep that fades in on hover
   (meant to pair with a color flip to a dark hover color) — with our white
   hover text that sweep makes the label invisible, so drop it here. */
.admin-body .btn::after {
  display: none;
}

/* ---------- Site-wide success toast (fires on any form's "success" feedback) ---------- */

#siteToastContainer {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

.site-toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 260px;
  max-width: min(90vw, 480px);
  padding: 14px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68));
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 22px 48px rgba(0, 20, 60, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  color: #14804a;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(-16px) scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.site-toast::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(115deg, #0a1747 0%, #1e6fee 55%, #14804a 130%);
  color: #ffffff;
  font-size: 12px;
}

.site-toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media only screen and (max-width: 575px) {
  #siteToastContainer {
    top: 14px;
    width: 100%;
    padding: 0 14px;
  }

  .site-toast {
    width: 100%;
  }
}

/* ---------- Page banner (breadcrumb strip): simple + light ---------- */
/* Shared across every inner page. The old version was a tall (650px), dark
   navy circuit-texture banner with a bold glowing ring — the !important on
   background-image is needed because each page sets it inline. */

.page-banner-section {
  background-image: none !important;
  background-color: #f4f7fd;
  min-height: 230px;
  padding-top: 90px;
  padding-bottom: 30px;
}

.page-banner-section::before {
  display: none;
}

.page-banner-section .shape-2 {
  display: none;
}

.page-banner .title {
  color: #1a1f36;
  font-size: 42px;
}

.page-banner .title::before {
  display: none;
}

@media only screen and (max-width: 1199px) {
  .page-banner .title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 767px) {
  .page-banner .title {
    font-size: 28px;
  }
}

.page-banner .breadcrumb .breadcrumb-item {
  color: #6b7280;
}

.page-banner .breadcrumb .breadcrumb-item.active {
  color: #005de0;
  font-weight: 800;
}

.page-banner .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #6b7280;
}

/* ---------- Home hero (tech-hero-section-6): light background ---------- */

.tech-hero-section-6 {
  background-color: #ffffff;
}

.tech-hero-section-6::before {
  background:
    radial-gradient(650px 440px at 6% 12%, rgba(0, 93, 224, 0.14), transparent 65%),
    radial-gradient(600px 440px at 96% 6%, rgba(84, 214, 235, 0.2), transparent 65%),
    linear-gradient(135deg, rgba(0, 93, 224, 0.05), rgba(84, 214, 235, 0.06) 50%, rgba(124, 58, 237, 0.04));
  opacity: 1;
}

.tech-hero-section-6 .hero-content .sub-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 20px 7px 7px;
  color: #005de0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(0, 93, 224, 0.18);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0, 61, 224, 0.1);
  overflow: hidden;
}

/* A soft light sweep drifts across the badge on a loop — a subtle "premium AI" cue. */
.tech-hero-section-6 .hero-content .sub-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(0, 93, 224, 0.2), transparent);
  transform: skewX(-20deg);
  animation: heroBadgeSweep 3.2s ease-in-out infinite;
}

@keyframes heroBadgeSweep {
  0% {
    left: -60%;
  }
  55%, 100% {
    left: 130%;
  }
}

.hero-badge-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #54d6eb, #005de0);
  color: #ffffff;
  font-size: 12px;
  box-shadow: 0 0 0 4px rgba(0, 93, 224, 0.12);
}

.tech-hero-section-6 .hero-content .title {
  color: #232842;
  letter-spacing: -0.01em;
}

/* An italic serif accent on the key phrase — paired against the bold sans-serif
   lead-in, this contrast is what reads as "premium/editorial" rather than
   another flat SaaS headline. */
.tech-hero-section-6 .hero-content .title .text-gradient {
  font-family: "Playfair Display", "Georgia", serif;
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(100deg, #003ea6 0%, #0072c9 45%, #2fb8d6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tech-hero-section-6 .hero-content p {
  color: #4c4d56;
  max-width: 480px;
}

.tech-hero-section-6 .hero-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
}

.tech-hero-section-6 .hero-btn .btn {
  margin-top: 0;
}

.btn-glass {
  background: rgba(0, 93, 224, 0.06);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1.5px solid rgba(0, 93, 224, 0.35);
  color: #005de0;
}

.btn-glass::after {
  display: none;
}

.btn-glass:hover {
  background: #005de0;
  border-color: #005de0;
  color: #ffffff;
}

.tech-hero-section-6 .hero-images::before {
  opacity: 0.65;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
  z-index: 0;
  animation: heroOrbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
  top: 8%;
  right: 8%;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle at 35% 35%, rgba(0, 93, 224, 0.4), transparent 70%);
}

.hero-orb-2 {
  bottom: 10%;
  left: 4%;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at 35% 35%, rgba(124, 58, 237, 0.32), transparent 70%);
  animation-delay: -4s;
}

@keyframes heroOrbFloat {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, 16px);
  }
}

@media only screen and (max-width: 767px) {
  .hero-orb {
    display: none;
  }
}

/* ---------- Hand-drawn underline accent (Why Choose Us heading) ---------- */

.underline-accent {
  position: relative;
  display: inline-block;
}

.underline-accent::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: -8px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'%3E%3Cpath d='M2,15 Q30,3 60,12 T120,9 T198,13' stroke='%23005de0' stroke-width='5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  /* Hidden until .in-view is added (on scroll into view via IntersectionObserver
     in main.js), then the clip-path reveal "draws" the stroke left to right.
     Timing matches a real quick pen-stroke (~250ms) rather than a slow wipe. */
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.28s ease-out 0.1s;
}

.underline-accent.in-view::after {
  clip-path: inset(0 0 0 0);
}

/* ---------- Home CTA banner: rounded "blob" shape + dual-button pair ---------- */

.cta-section .cta-wrap {
  border-radius: 28px;
}

.cta-section .cta-wrap .cta-right {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.cta-section .cta-wrap .cta-right .btn {
  margin-left: 0;
}

.btn-cta-outline {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-size: 18px;
}

.btn-cta-outline::after {
  display: none;
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  transform: translateY(-2px);
}

@media only screen and (max-width: 991px) {
  .cta-section .cta-wrap .cta-right {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 575px) {
  .cta-section .cta-wrap .cta-right {
    flex-direction: column;
    width: 100%;
  }

  .cta-section .cta-wrap .cta-right .btn {
    width: 100%;
    text-align: center;
  }
}

/* ---------- Embossed relief icons inside card components ---------- */
/* Same technique as the hero/"Why Choose Us" cutout photos — these icons are
   transparent-background SVGs/PNGs, so box-shadow (a rectangle) won't follow
   their silhouette; drop-shadow does. Scaled down for icon-sized artwork. */

.home-service-section .service-wrap .service-item .service-icon img,
.about-service-section .service-wrap .service-item .service-icon img,
.features-section-4 .features-wrap-3 .features-content-wrap .single-item .features-icon img,
.features-section .features-content .features-item .features-icon img {
  filter:
    drop-shadow(-1px -1px 0 rgba(255, 255, 255, 0.9))
    drop-shadow(-2px -2px 4px rgba(255, 255, 255, 0.6))
    drop-shadow(2px 2px 0 rgba(0, 30, 80, 0.2))
    drop-shadow(4px 5px 6px rgba(0, 20, 60, 0.3))
    drop-shadow(0 8px 12px rgba(0, 61, 224, 0.25));
}

