:root {
  --primary-color: #1a4b8b;
  --secondary-color: #4fb3d9;
  --accent-color: #0e4c8a;
  --primary-alt: #1a4b8b;
  --highlight-color: #4fb3d9;
  --text-dark: #212529;
  --text-light: #6c757d;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --section-padding: 60px 0;
  --border-radius: 16px;
  --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Figtree, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}
body.loading {
  overflow: hidden;
}
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.5s ease-in-out,
    visibility 0.5s;
}
#loader-wrapper.loaded {
  opacity: 0;
  visibility: hidden;
}
.loader-content {
  perspective: 1000px;
  z-index: 2;
}
.loader-logo-wrapper {
  position: relative;
  display: inline-block;
  padding: 10px;
}
.loader-logo {
  width: 140px;
  height: auto;
  animation: logoReveal 1.2s ease-out forwards;
  filter: drop-shadow(0 10px 20px rgba(26, 75, 139, 0.15));
  opacity: 0;
}
.loader-logo-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: glossyShine 2s infinite ease-in-out 0.8s;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600 !important;
}

/* ── CTA Section ── */
.cta-section {
  position: relative;
  background-image: url("../img/home/wdc-banner-img.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  overflow: hidden;
  padding: 40px 0;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 18, 45, 0.8);
  z-index: 0;
  pointer-events: none;
}
.cta-section .container {
  position: relative;
  z-index: 2;
}
/* Centered CTA layout */
.cta-centered {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.cta-centered h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  /* margin-bottom: 16px; */
  line-height: 1.2;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.cta-centered p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
  line-height: 1.7;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
.cta-inner {
  display: flex;
  align-items: center;
  min-height: 300px;
  padding: 55px 0 0;
  gap: 40px;
}
.cta-text-col {
  flex: 1;
  padding-right: 20px;
}
.cta-text-col h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.cta-text-col p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 480px;
}
.cta-btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  background: linear-gradient(135deg, #4fb3d9, #1f6fb2, #0e4c8a);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  box-shadow: none;
}
.btn-cta-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.32) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: none;
  z-index: 2;
}
.btn-cta-primary:hover::after {
  animation: btnShine 0.7s forwards;
}
.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: none;
  filter: brightness(1.12);
  color: #fff;
}
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: transparent;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: none;
}
.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: none;
}
.cta-image-col {
  flex-shrink: 0;
  width: 320px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
  overflow: visible;
}
.cta-image-col .cta-circle-ring {
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: 0;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 45px solid rgba(255, 255, 255, 0.07);
  z-index: 0;
}
.cta-image-col .cta-circle-ring-2 {
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: -15px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 28px solid rgba(255, 255, 255, 0.04);
  z-index: 0;
}
.cta-image-col img {
  position: relative;
  z-index: 1;
  height: 100%;
  max-height: 320px;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
}
@media (max-width: 991px) {
  .cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 50px 0 0;
  }
  .cta-text-col {
    padding-right: 0;
  }
  .cta-text-col p {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-btn-row {
    justify-content: center;
  }
  .cta-image-col {
    width: 100%;
    height: 260px;
    justify-content: center;
  }
  .cta-image-col img {
    height: 260px;
    max-height: 260px;
    width: auto;
  }
  .cta-image-col .cta-circle-ring,
  .cta-image-col .cta-circle-ring-2 {
    display: none;
  }
}
@media (max-width: 576px) {
  .cta-text-col h2 {
    font-size: 1.55rem;
  }
  .cta-inner {
    padding: 40px 0 0;
  }
}
.loader-line {
  width: 120px;
  height: 2px;
  background: rgba(26, 75, 139, 0.05);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin: 20px auto 0;
}
.loader-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: var(--primary-color);
  border-radius: 10px;
  animation: loadingBar 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes logoReveal {
  0% {
    transform: scale(0.9) translateY(10px);
    opacity: 0;
    filter: blur(10px);
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes glossyShine {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}
@keyframes loadingBar {
  0% {
    left: -100%;
  }
  100% {
    left: 150%;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}
a {
  transition: var(--transition);
  text-decoration: none;
}
.section-padding {
  padding: var(--section-padding);
}

/* ── Section Badge (pill label above headings) ── */
.section-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 16px;
  background-color: #eef3f9;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 4px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
/* Section header utility: tighten top margin of h2 following a badge */
.section-badge + h2,
.section-badge + h3 {
  margin-top: 4px;
}
/* Badge on dark backgrounds */
.bg-primary .section-badge {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  text-shadow: none;
}
.bg-why-choose {
  background:
    linear-gradient(rgb(233 247 255), rgb(233 247 255 / 0%)),
    url(../img/home/bg-why-choose.webp);
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  position: relative;
}
.bg-light {
  background-color: #d9d9d9 !important;
}
.bg-dark {
  background-color: rgb(0 127 255) !important;
}
.bg-service {
  background:
    linear-gradient(rgb(208 255 202 / 24%), rgb(183 209 174 / 45%)),
    url(../img/home/Ribbon-3.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bg-primary {
  background-color: #1a4b8b !important;
}
.text-primary {
  color: #1a4b8b !important;
}
.btn-primary,
.btn-success {
  background: linear-gradient(135deg, #4fb3d9, #1f6fb2, #0e4c8a) !important;
  border: none !important;
  padding: 8px 24px;
  border-radius: 6px;
  color: #fff !important;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: none !important;
  letter-spacing: 0.3px;
}
.btn-primary::after,
.btn-success::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: none;
  z-index: 2;
}
.btn-primary:hover::after,
.btn-success:hover::after {
  animation: btnShine 0.7s forwards;
}
@keyframes btnShine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.btn-primary:hover,
.btn-success:hover {
  transform: translateY(-3px);
  box-shadow: none !important;
  filter: brightness(1.12);
}
.navbar {
  padding: 10px 0;
  transition: var(--transition);
  background: 0 0;
}
.rounded-3 {
  border-radius: 3px !important;
}
.navbar.scrolled {
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 75vh;
    overflow-y: auto;
  }
  .navbar-collapse::-webkit-scrollbar {
    width: 4px;
  }
  .navbar-collapse::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
  }
  .ms-lg-auto,
  .nav-btn-wrapper {
    margin-top: 15px;
    text-align: center;
  }
}
.logo-container {
  display: flex;
  align-items: center;
}
.logo-container img {
  height: 55px;
}
.company-name {
  background: linear-gradient(178deg, #4fb3d9, #1f6fb2, #0e4c8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0;
}
.company-name span {
  background: 0 0 !important;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #565656;
  color: #565656;
}
@media (max-width: 1200px) {
  .company-name {
    font-size: 18px;
  }
}
.nav-link {
  font-weight: 600;
  color: var(--text-dark) !important;
  padding: 10px 15px !important;
  position: relative;
  transition: var(--transition);
}
.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15px;
  width: 0;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition);
  border-radius: 3px;
}
.nav-link.active {
  color: var(--primary-color) !important;
}
.nav-link.active::before,
.nav-link:hover::before {
  width: calc(100% - 30px);
}
@media (max-width: 991px) {
  .nav-link::before {
    left: 0;
    bottom: 5px;
  }
  .nav-link.active::before,
  .nav-link:hover::before {
    width: 30px;
  }
}
.dropdown-menu {
  border: none;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: 8px;
  min-width: 260px;
}
.svc-dropdown {
  padding: 8px;
}
.svc-item {
  border-radius: 8px !important;
  padding: 12px 20px !important;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
}
.dropdown-item {
  border-radius: 8px;
  font-weight: 600;
  padding: 12px 20px;
  transition: var(--transition);
}
.dropdown-item.active,
.dropdown-item:hover,
.svc-item.active,
.svc-item:hover {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}
.nav-link.dropdown-toggle::after {
  color: var(--text-dark);
  transition: var(--transition);
}
.nav-link.active.dropdown-toggle::after,
.nav-link.dropdown-toggle:hover::after {
  color: var(--primary-color);
}
.hero-section {
  background:
    linear-gradient(rgba(46, 96, 53, 0%), rgba(46, 96, 53, 0%)),
    url(../img/home/hero-bg-img.webp);
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  padding-bottom: 200px;
  color: #fff;
  overflow: hidden;
}
.navbar-brand {
  padding: 0;
  margin-right: 0;
}
.hero-content {
  padding: 38px 0px 0 15px;
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 25px;
  color: #fff;
}
.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}
.hero-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  color: #fff;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 1px;
}
.hero-image-container {
  position: relative;
  z-index: 1;
}
.circle-main {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 15px 35px rgb(0 0 0 / 15%);
  border: 15px solid rgba(255, 255, 255, 0.1);
  position: relative;
  margin-left: auto;
}
.circle-sub {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid #fff;
  position: absolute;
  bottom: -20px;
  left: 0;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.hero-img-main,
.hero-img-sub {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.text-primary-alt {
  color: var(--primary-color);
}
.text-warning {
  color: var(--secondary-color) !important;
}
.text-muted {
  color: var(--text-dark) !important;
}
.about-section {
  position: relative;
  overflow: hidden;
}
.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  padding: 30px;
}
.about-shape-container {
  position: relative;
  z-index: 2;
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  overflow: hidden;
  box-shadow: 25px 25px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 1/1;
}
.about-shape-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-image-wrapper:hover .about-shape-container {
  border-radius: 40% 60% 70% 30%/40% 40% 60% 60%;
  transform: translateY(-5px);
}
.about-image-wrapper:hover .about-shape-container img {
  transform: scale(1.1);
}
.about-experience-badge {
  position: absolute;
  bottom: 10%;
  right: 0;
  background: var(--primary-color);
  color: #fff;
  padding: 25px;
  border-radius: 24px;
  text-align: center;
  z-index: 3;
  box-shadow: 0 15px 35px rgba(26, 75, 139, 0.4);
  animation: float-badge 3s ease-in-out infinite;
}
.about-experience-badge .number {
  display: block;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
}
.about-experience-badge .text {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
}
@keyframes float-badge {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}
.about-shape-bg-1,
.about-shape-bg-2 {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  filter: blur(50px);
}
.about-shape-bg-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  opacity: 0.15;
  top: -10%;
  left: -10%;
}
.about-shape-bg-2 {
  width: 250px;
  height: 250px;
  background: var(--accent-color);
  opacity: 0.1;
  bottom: -5%;
  right: 5%;
}
.service-card {
  padding: 15px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  border: 1px solid #eee;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.industry-image-wrapper {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.industry-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.service-card:hover .industry-card-img {
  transform: scale(1.1);
}
.service-card h4 {
  margin-bottom: 15px;
  color: var(--primary-color);
}
/* cta-section base already defined above */
.footer-section {
  background-color: #072144 !important;
  color: #fff;
}
.footer-section h5 {
  color: var(--secondary-color);
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-bottom: 25px;
}
.footer-section .nav-link-footer {
  color: #fff;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 10px;
}
.footer-section .nav-link-footer:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}
.footer-section .social-links a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: var(--transition);
}
.footer-section .social-links a:hover {
  background: var(--secondary-color);
  color: #fff !important;
  transform: translateY(-3px);
}
.footer-developer {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-developer a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
}
.footer-logo-wrapper {
  background: #fff;
  padding: 8px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .footer-section .company-name {
    white-space: nowrap;
    font-size: 1.15rem;
  }
  .footer-section .company-name span {
    display: inline;
  }
}
.footer-logo-wrapper img {
  height: 40px;
  object-fit: contain;
}
.footer-section .nav-link-footer i {
  font-size: 0.7rem;
  color: var(--secondary-color);
  transition: var(--transition);
  margin-top: 7px;
  flex-shrink: 0;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}
.footer-contact-item i {
  color: var(--secondary-color);
  flex-shrink: 0;
}
.footer-contact-item a {
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
}
.footer-contact-item a:hover {
  color: var(--secondary-color);
}
.newsletter-form .form-control {
  background-color: rgba(255, 255, 255, 0.05) !important;
  font-size: 0.9rem;
  padding: 10px 15px;
}
.newsletter-form .form-control:focus {
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.1) !important;
}
.client-scale-indicators {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.scale-box {
  padding: 8px 16px;
  background: rgba(46, 96, 53, 0.05);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 1px;
}
.scale-divider {
  flex: 1;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(46, 96, 53, 0.1),
    var(--secondary-color),
    rgba(46, 96, 53, 0.1)
  );
  border-radius: 2px;
}
.quote-container {
  position: relative;
  padding: 2rem;
  margin:1rem;
  background: #fdfdfd;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  margin-top: auto;
}
.quote-container i {
  position: absolute;
  top: -10px;
  left: 20px;
  background: #fff;
  padding: 0 10px;
  line-height: 1;
}
.quote-container p {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.6;
}
.premium-feature-card {
  background: #fff;
  padding: 30px 30px 0px 30px;
  border-radius: 24px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.premium-feature-card::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: var(--card-theme-color, var(--primary-color));
  opacity: 0.2;
  border-radius: 50%;
  z-index: -1;
  transition: all 0.6s ease;
}
.premium-feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--card-theme-color, var(--primary-color)) !important;
}
.premium-feature-card:hover::after {
  transform: scale(2.5);
  opacity: 0.06;
}
.premium-feature-card .bg-icon {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-size: 8rem;
  color: var(--card-theme-color, var(--primary-color));
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
  transition: transform 0.6s ease;
}
.premium-feature-card:hover .bg-icon {
  transform: scale(1.2) rotate(-10deg);
}
.premium-feature-card div,
.premium-feature-card h2,
.premium-feature-card p,
.premium-feature-card span {
  position: relative;
  z-index: 1;
}
.testimonial-bar {
  background: rgba(46, 96, 53, 0.03);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  font-style: italic;
  color: var(--text-dark);
  margin-top: auto;
}
.team-trait {
  background: #f8fbf9;
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.premium-feature-card:hover .team-trait {
  background: #fff;
  border-color: rgba(46, 96, 53, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}
.trait-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--card-theme-bg, rgba(46, 96, 53, 0.08));
  color: var(--card-theme-color, var(--primary-color)) !important;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 0;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.premium-feature-card:hover .trait-icon {
  background: var(--card-theme-color, var(--primary-color));
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.team-trait:hover .trait-icon {
  background: var(--primary-color);
  color: #fff !important;
}
.trait-text {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.3;
}
.icon-box i {
  color: var(--primary-color) !important;
}

/* ══════════════════════════════════════════
   OUR CLIENTS SECTION
══════════════════════════════════════════ */
.clients-section {
  background: #f4f8ff;
  position: relative;
  overflow: hidden;
}
.clients-section::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(79, 179, 217, 0.07);
  pointer-events: none;
}
/* image block */
.clients-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(7, 33, 68, 0.12);
}
.clients-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.clients-img-wrap:hover img {
  transform: scale(1.04);
}
.clients-img-tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #1f6fb2, #0e4c8a);
  color: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(14, 76, 138, 0.35);
  animation: float-badge 3s ease-in-out infinite;
}
.clients-img-tag i {
  font-size: 1.1rem;
}
/* trust row */
.clients-trust-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.ctrust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-dark);
}
.ctrust-item i {
  font-size: 1.15rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   OUR TEAM SECTION
══════════════════════════════════════════ */
.team-section {
  background-image: url("../img/home/wdc-banner-img.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}
.team-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 18, 45, 0.84);
  z-index: 0;
  pointer-events: none;
}
.team-section .container {
  position: relative;
  z-index: 1;
}
/* header block */
.team-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.team-badge {
  background: rgba(255, 255, 255, 0.13) !important;
  color: #fff !important;
  text-shadow: none !important;
}
.team-pull-quote {
  position: relative;
  margin-top: 20px;
  padding: 28px 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  text-align: left;
}
.team-quote-icon {
  font-size: 3rem;
  color: #4fb3d9;
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.team-pull-quote p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.02rem;
  line-height: 1.8;
  margin: 0;
  font-style: italic;
}
/* pillars strip */
.team-pillars {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  overflow: hidden;
}
.tpillar {
  flex: 1;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: background 0.3s ease;
}
.tpillar:hover {
  background: rgba(79, 179, 217, 0.07);
}
.tpillar-icon {
  font-size: 2rem;
  color: #4fb3d9;
  display: block;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}
.tpillar:hover .tpillar-icon {
  transform: translateY(-4px);
}
.tpillar h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.tpillar p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0;
}
.tpillar-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.09);
  flex-shrink: 0;
}
@keyframes float-badge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
/* responsive */
@media (max-width: 991px) {
  .team-pillars {
    flex-wrap: wrap;
  }
  .tpillar {
    flex: 1 1 calc(50% - 1px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }
  .tpillar-divider {
    display: none;
  }
  .clients-img-wrap img {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .tpillar {
    flex: 1 1 100%;
  }
  .team-pull-quote {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-section {
    padding-top: 100px;
  }
  .about-image-wrapper {
    max-width: 450px;
    margin-bottom: 30px;
  }
  .premium-feature-card {
    padding: 2rem;
  }
  .client-scale-indicators {
    flex-wrap: wrap;
    justify-content: center;
  }
  .scale-divider {
    width: 100%;
    margin: 10px 0;
  }
}
@media (max-width: 768px) {
  .circle-main {
    width: 300px;
    height: 300px;
  }
  .circle-sub {
    width: 140px;
    height: 140px;
  }
  .cta-section::after {
    width: 300px;
    height: 300px;
    right: -50px;
    opacity: 0.05;
  }
  .about-image-wrapper {
    padding: 15px;
    max-width: 400px;
  }
  .about-experience-badge {
    padding: 15px;
    bottom: 5%;
    right: -5px;
    border-radius: 15px;
  }
  .about-experience-badge .number {
    font-size: 1.5rem;
  }
  .about-experience-badge .text {
    font-size: 0.7rem;
  }
}
@media (max-width: 480px) {
  .circle-main {
    width: 260px;
    height: 260px;
  }
  .circle-sub {
    width: 120px;
    height: 120px;
    bottom: -10px;
  }
  .about-image-wrapper {
    max-width: 320px;
  }
  .company-name {
    font-size: 1.1rem;
  }
}
html {
  overflow-x: hidden;
}
@media (max-width: 380px) {
  .logo-container img {
    height: 45px;
  }
  .company-name {
    font-size: 0.9rem;
  }
  .logo-container {
    gap: 8px;
  }
  .navbar {
    padding: 5px 0;
  }
  .navbar > .container-fluid {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.rpo-theme-primary {
  --card-theme-color: var(--primary-color);
  --card-theme-bg: rgba(26, 75, 139, 0.08);
}
.rpo-theme-warning {
  --card-theme-color: var(--accent-color);
  --card-theme-bg: rgba(14, 76, 138, 0.08);
}
.rpo-theme-info {
  --card-theme-color: var(--secondary-color);
  --card-theme-bg: rgba(79, 179, 217, 0.08);
}
.rpo-theme-success {
  --card-theme-color: #2e6035;
  --card-theme-bg: rgba(46, 96, 53, 0.08);
}
.rpo-list {
  list-style: none;
  padding-left: 0;
}
.rpo-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
  transition: transform 0.3s ease;
}
.rpo-list li:hover {
  transform: translateX(5px);
}
.rpo-list li::before {
  content: "\F270";
  font-family: bootstrap-icons;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--card-theme-color, var(--accent-color));
  font-size: 1.15rem;
  font-weight: 700;
}
.benefit-item {
  padding: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.benefit-item:hover {
  background: #f8fbfd;
  border-color: rgba(13, 202, 240, 0.1);
}
.benefit-item h6 i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.benefit-item:hover h6 i {
  transform: scale(1.2) rotate(-10deg);
}
.internal-hero {
  position: relative;
  padding: 180px 0 100px !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff !important;
}
.internal-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 75, 139, 0.9), rgba(46, 96, 53, 0.8));
  z-index: 1;
}
.internal-hero .container {
  position: relative;
  z-index: 2;
}
.internal-hero .breadcrumb-item a,
.internal-hero .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.8) !important;
}
.internal-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5) !important;
}
.internal-hero h1 {
  color: #fff !important;
}
.internal-hero p.lead {
  color: rgba(255, 255, 255, 0.9) !important;
}
@media (max-width: 1199px) {
  .hero-content h1 {
    font-size: 2rem;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 50px 0;
  }
  .hero-section {
    padding-top: 180px;
    padding-bottom: 100px;
    min-height: auto;
    text-align: center;
  }
  .hero-section::after {
    height: 150px;
    bottom: -75px;
  }
  .hero-content h1 {
    font-size: 2.8rem;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-image-composite {
    height: 350px;
    margin-top: 40px;
  }
  .navbar-collapse {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding-top: 160px !important;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .section-padding {
    padding: 40px 0;
  }
  .company-name {
    font-size: 1rem;
  }
  .btn-primary,
  .btn-success {
    padding: 10px 24px !important;
    font-size: 0.95rem;
  }
}
@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .section-padding {
    padding: 30px 0;
  }
  .hero-badge {
    font-size: 0.8rem;
  }
  .btn-primary,
  .btn-success {
    padding: 8px 20px !important;
    font-size: 0.9rem;
  }
}
@media (max-width: 380px) {
  .logo-container img {
    height: 40px !important;
    width: auto;
  }
  .company-name {
    font-size: 0.85rem !important;
  }
  .navbar {
    padding: 8px 0 !important;
  }
  .navbar-toggler {
    padding: 4px 8px !important;
    font-size: 0.8rem !important;
  }
  .hero-content h1 {
    font-size: 1.6rem !important;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .navbar-expand-lg .navbar-collapse {
    font-size: 13px !important;
  }
  .btn-primary,
  .btn-success {
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
  }
}
