:root {
  /* Brand Colors */
  --primary-color: #0f4c81;
  --secondary-color: #00b4d8;
  --accent-color: #00c896;
  /* --accent-color: #d2af26; */
  --goldan-color: #d2af26;
  /* Text Colors */
  --heading-color: #0b1f33;
  --text-color: #5f6b7a;
  --white-color: #ffffff;
  /* Background */
  --bg-light: #f7fafc;
  --bg-soft: #eef7fb;
  /* Border */
  --border-color: #e5eaf0;
  /* Shadow */
  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  /* Transition */
  --transition: all 0.3s ease;
}

.txt-theme {
  color: var(--accent-color);
}

.txt-goldan {
  color: #d2af26;
}

body {
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

/* Desktop */

h1 {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.2;
}

h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}

h5 {
  font-size: 22px;
  font-weight: 600;
}

h6 {
  font-size: 18px;
  font-weight: 600;
}

p {
  font-size: 16px;
}

.small-text {
  font-size: 14px;
}

.section-padding {
  padding: 35px 0;
}

.section-padding-sm {
  padding: 70px 0;
}

/* =========================
   TOP BAR
========================= */

.hc-topbar {
  display: none;
}

/* =========================
   NAVBAR
========================= */

.hc-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 0;
  transition: all 0.4s ease;
}

.hc-navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Logo */

.hc-logo img {
  height: 85px;
  transition: 0.3s;
}

/* .hc-navbar:not(.scrolled) .hc-logo img {
    filter: brightness(0) invert(1);
} */

.hc-navbar.scrolled .hc-logo img {
  filter: none;
  height: 75px;
}

/* Nav */

.hc-navbar .nav-item {
  margin: 0 10px;
}

.hc-navbar .nav-link {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  padding: 35px 0;
  transition: 0.3s ease;
  position: relative;
}

.hc-navbar .nav-link:hover {
  color: var(--accent-color);
}

.hc-navbar .nav-link.active {
  color: var(--accent-color);
}

/* Scroll State */

.hc-navbar.scrolled .nav-link {
  color: var(--heading-color);
}

.hc-navbar.scrolled .nav-link.active,
.hc-navbar.scrolled .nav-link:hover {
  color: var(--accent-color);
}

/* Dropdown Arrow */

.dropdown-toggle::after {
  margin-left: 2px;
  vertical-align: middle;
}

.cst-dropdown {
  font-size: 12px;
}

/* =========================
   DROPDOWN
========================= */

.hc-dropdown {
  border: none;
  border-radius: 16px;
  padding: 12px;
  margin-top: 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.hc-dropdown .dropdown-item {
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.hc-dropdown .dropdown-item:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

/* Submenu */

.dropdown-submenu {
  position: relative;
}

.hc-sub-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 220px;
  display: none;
  border: none;
  border-radius: 15px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* =========================
   RIGHT SIDE
========================= */

.hc-navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hc-btn {
  background-image: linear-gradient(
    to right,
    #0f4c81 0%,
    #22b8cf 51%,
    #0f4c81 100%
  );
  background-size: 200% auto;
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  transition: 0.5s;
  border: none;
  box-shadow: 0 8px 25px rgba(15, 76, 129, 0.25);
}

.hc-btn:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 76, 129, 0.35);
}

/* =========================
   MOBILE TOGGLER
========================= */

.hc-navbar-toggler {
  border: none;
  box-shadow: none !important;
}

.hc-navbar:not(.scrolled) .hc-navbar-toggler i {
  color: var(--primary-color);
  background: var(--white-color);
  padding: 8px;
  border-radius: 5px;
}

.hc-navbar.scrolled .hc-navbar-toggler i {
  color: var(--white-color);
  background: var(--primary-color);
  padding: 8px;
  border-radius: 5px;
}

.hc-navbar-toggler i {
  font-size: 26px;
}

/* .hc-navbar {
  background: #fff !important;
} */

/* ..show {
  opacity: 0.7 !important;
  background-color: #000 !important;
}

.modal-content {
  position: relative;
  z-index: 1060;
} */

/* ===========================
   HERO SECTION
=========================== */

.hc-new-hero {
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  /* min-height: 100vh; */
  background: linear-gradient(135deg, #0f4c81 0%, #1a6ab2 40%, #22b8cf 100%);
}

/* Shapes */

.hc-hero-shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.06);
  top: -200px;
  right: -150px;
  animation: pulse 2s infinite;
}

.shape-2 {
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  bottom: -100px;
  left: -50px;
  animation: pulse 2s infinite;
}

.shape-3 {
  width: 30px;
  height: 30px;
  background: #ffd54f;
  left: 10%;
  top: 20%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  50% {
    transform: scale(1.4);
  }
}

/* Content */

.hc-hero-content {
  color: #fff;
  position: relative;
  z-index: 2;
}

.hc-badge {
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 25px;
}

.hc-badge span {
  font-size: 14px;
  font-weight: 600;
}

.hc-hero-content h1 {
  font-size: 52px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 25px;
}

.hc-hero-content h1 span {
  color: #00c896;
  /* color: var(--accent-color); */
}

.hc-hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  max-width: 550px;
  margin-bottom: 35px;
}

.hc-hero-btns {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
}

.hc-btn-primary {
  background: #fff;
  color: #0f4c81;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  transition: 0.3s;
}

.hc-btn-primary:hover {
  transform: translateY(-4px);
}

.hc-btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.hc-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Stats */

.hc-stats {
  display: flex;
  gap: 40px;
}

.hc-stat h3 {
  color: #ffd54f;
  margin-bottom: 5px;
}

.hc-stat span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* Right Image */

.hc-hero-image {
  position: relative;
  text-align: center;
  /* margin-bottom: -90px; */
}

.hc-hero-image img {
  max-width: 650px;
  width: 100%;
  /* animation: floatImage 4s ease-in-out infinite; */
}

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

/* Floating Cards */

.hc-floating-card,
.hc-call-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 18px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f4c81, #22b8cf);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.card-1 {
  top: 335px;
  left: -20px;
  animation: floatCard 3s infinite;
}

.card-2 {
  /* border-radius: 50px; */
  right: -20px;
  bottom: 100px;
  animation: floatCard 4s infinite;
}

.hc-call-card {
  top: 30px;
  right: 50px;
  /* border-radius: 50px; */
  animation: floatCard 5s infinite;
}

@keyframes floatCard {
  50% {
    transform: translateY(-10px);
  }
}

.hc-parallax-wrapper {
  position: relative;
}

.hc-parallax-image {
  will-change: transform;
  transition: transform 0.1s linear;
}

.hc-parallax-image img {
  max-width: 650px;
  width: 100%;
}

/* =========================
   SECTION TITLE
========================= */

.hc-section-subtitle {
  display: inline-block;
  /* color: var(--primary-color); */
  color: var(--goldan-color);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.hc-section-heading {
  max-width: 700px;
  margin: auto;
}

/* =========================
   CERTIFICATIONS
========================= */

.hc-certification-section {
  background: #e8f0fc;
  position: relative;
}

.hc-cert-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(15, 76, 129, 0.08);
  transition: 0.45s ease;
  box-shadow: 0 10px 30px rgba(15, 76, 129, 0.06);
}

/* Shine Animation */

.hc-cert-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80px;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  transform: skewX(-25deg);
  transition: 0.8s;
}

.hc-cert-card:hover::before {
  left: 130%;
}

.hc-cert-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(15, 76, 129, 0.15);
}

.hc-cert-image {
  height: 250px;
  padding: 15px;
  overflow: hidden;
  background: #eef7ff;
}

.hc-cert-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.6s;
}

.hc-cert-card:hover .hc-cert-image img {
  transform: scale(1.08);
}

.hc-cert-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd54f, #ffb300);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(255, 179, 0, 0.35);
}

.hc-cert-badge i {
  font-size: 22px;
}

.hc-cert-content {
  padding: 25px;
  text-align: center;
}

.hc-cert-content h5 {
  margin-bottom: 8px;
}

.hc-cert-content span {
  color: var(--primary-color);
  font-weight: 600;
}

/* Responsive */

/* =========================
   ABOUT
========================= */

.hc-about-section {
  background: #fff;
}

.hc-about-images {
  position: relative;
  padding-right: 70px;
}

.hc-about-img-main {
  border-radius: 25px;
}

.hc-about-img-small {
  position: absolute;
  width: 250px;
  right: 0;
  bottom: -40px;
  border-radius: 20px;
  border: 8px solid #fff;
}

.hc-exp-box {
  position: absolute;
  left: -30px;
  top: 50px;
  background: var(--primary-color);
  color: #fff;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  display: none;
}

.hc-exp-box h3 {
  color: #fff;
  margin-bottom: 5px;
}

.hc-exp-box p {
  margin: 0;
  color: #fff;
}

.hc-about-content {
  padding-left: 40px;
}

.hc-about-content h2 {
  margin-bottom: 25px;
}

.hc-check-item {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
}

.hc-check-item i {
  color: var(--goldan-color);
  margin-right: 10px;
}

/* =========================
   PREMIUM SERVICES SECTION
========================= */

.hc-services-section {
  position: relative;
  overflow: hidden;
}

/* Decorative Background */

.hc-services-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(rgba(34, 184, 207, 0.12), transparent 70%);
  top: -250px;
  right: -150px;
}

.hc-services-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(rgba(15, 76, 129, 0.08), transparent 70%);
  bottom: -200px;
  left: -100px;
}

/* Card */

.hc-service-card {
  position: relative;
  height: 100%;
  padding: 40px 35px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(15, 76, 129, 0.08);
  transition: all 0.5s ease;
  z-index: 1;
}

.hc-service-link {
  position: relative;
  z-index: 10;
}

/* Animated Gradient Border */

.hc-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0f4c81, #22b8cf, #ffd54f);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.5s;
}

/* Glow Circle */

.hc-service-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(34, 184, 207, 0.08);
  top: -100px;
  right: -100px;
  transition: 0.5s;
}

.hc-service-card:hover {
  transform: translateY(-18px);
  box-shadow: 0 25px 60px rgba(15, 76, 129, 0.15);
}

.hc-service-card:hover::before {
  opacity: 1;
}

.hc-service-card:hover::after {
  transform: scale(1.3);
}

/* Badge */

.hc-service-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(34, 184, 207, 0.12);
  color: #0f4c81;
  margin-bottom: 20px;
}

/* Icon */

.hc-service-icon {
  width: 90px;
  height: 90px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0f4c81, #22b8cf);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  transition: 0.5s;
}

.hc-service-icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 30px;
  /* border: 2px dashed rgba(34, 184, 207, 0.3); */
  border: 2px dashed var(--goldan-color);
  animation: rotateIcon 15s linear infinite;
}

.hc-service-icon i {
  font-size: 38px;
  color: #fff;
}

.hc-service-card:hover .hc-service-icon {
  transform: rotate(-8deg) scale(1.08);
}

/* Title */

.hc-service-card h4 {
  font-size: 22px;
  margin-bottom: 15px;
  transition: 0.4s;
}

.hc-service-card:hover h4 {
  color: var(--primary-color);
}

/* Description */

.hc-service-card p {
  margin-bottom: 25px;
  line-height: 1.8;
}

/* List */

.hc-service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.hc-service-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  transition: 0.3s;
}

.hc-service-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  /* color: var(--accent-color); */
  color: var(--goldan-color);
}

.hc-service-card:hover .hc-service-list li {
  transform: translateX(5px);
}

/* Link */

.hc-service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.hc-service-link i {
  transition: 0.4s;
}

.hc-service-link:hover i {
  transform: translateX(8px);
}

/* Icon Rotation */

@keyframes rotateIcon {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* =====================================
   PREMIUM CTA SECTION
===================================== */

.hc-cta-section {
  padding: 50px 0;
  position: relative;
}

/* .hc-cta-wrapper {
    position: relative;
    overflow: hidden;
    padding: 90px 70px;
    border-radius: 35px;
    background: linear-gradient(135deg, #0f4c81 0%, #1668ad 45%, #22b8cf 100%);
    box-shadow: 0 30px 80px rgba(15, 76, 129, 0.25);
    isolation: isolate;
} */

.hc-cta-wrapper {
  position: relative;
  overflow: hidden;
  padding: 90px 70px;
  border-radius: 35px;
  background:
    linear-gradient(rgba(15, 76, 129, 0.85), rgba(15, 76, 129, 0.85)),
    url("../media/home-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 30px 80px rgba(15, 76, 129, 0.25);
  isolation: isolate;
}

/* Background Glow */

.hc-cta-wrapper::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  bottom: -250px;
  right: -180px;
  animation: hcCtaBgMove 12s infinite ease-in-out;
}

.hc-cta-wrapper::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -135px;
  left: -120px;
  animation: hcCtaBgMove 10s infinite ease-in-out;
}

/* =====================================
   FLOATING SHAPES
===================================== */

.hc-cta-wrapper .hc-cta-shape {
  position: absolute;
  border-radius: 50%;
}

/* .hc-cta-wrapper .hc-cta-shape-1 {
    width: 18px;
    height: 18px;
    background: var(--accent-color);
    top: 15%;
    left: 12%;
    animation: hcCtaPulse 2s infinite;
} */

.hc-cta-wrapper .hc-cta-shape-2 {
  width: 14px;
  height: 14px;
  background: #fff;
  bottom: 25%;
  right: 20%;
  animation: hcCtaPulse 3s infinite;
}

.hc-cta-wrapper .hc-cta-shape-3 {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  top: 30%;
  right: 12%;
  animation: hcCtaRotate 10s linear infinite;
}

/* =====================================
   FLOATING ICONS
===================================== */

.hc-cta-wrapper .hc-floating-icon {
  position: absolute;
  width: 65px;
  height: 65px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hc-cta-wrapper .hc-floating-icon-1 {
  top: 25px;
  right: 200px;
  animation: hcCtaFloat 4s infinite ease-in-out;
}

.hc-cta-wrapper .hc-floating-icon-2 {
  bottom: 40px;
  left: 90px;
  animation: hcCtaFloat 5s infinite ease-in-out;
  display: none;
}

.hc-cta-wrapper .hc-floating-icon-3 {
  top: 50%;
  right: 40px;
  animation: hcCtaFloat 6s infinite ease-in-out;
}

/* =====================================
   CONTENT
===================================== */

.hc-cta-wrapper > .row {
  position: relative;
  z-index: 5;
}

.hc-cta-tag {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hc-cta-wrapper h2 {
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hc-cta-wrapper p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
  max-width: 650px;
  margin-bottom: 0;
}

/* =====================================
   BUTTONS
===================================== */

.hc-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hc-btn-white,
.hc-btn-outline-white {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.hc-btn-white {
  background: #fff;
  color: #0f4c81;
  text-decoration: none;
  padding: 16px 35px;
  border-radius: 60px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.hc-btn-white:hover {
  color: #0f4c81;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.hc-btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  text-decoration: none;
  padding: 16px 35px;
  border-radius: 60px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hc-btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(-6px);
}

/* =====================================
   ANIMATIONS
===================================== */

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

@keyframes hcCtaPulse {
  50% {
    transform: scale(1.5);
  }
}

@keyframes hcCtaRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes hcCtaBgMove {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(25px, -25px);
  }
}

/* =========================
   WHY CHOOSE US
========================= */

.hc-why-section {
  background: #ffffff;
}

.hc-why-image-wrapper {
  position: relative;
}

.hc-why-main-img {
  width: 100%;
  border-radius: 30px;
}

.hc-why-card {
  position: absolute;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hc-why-card h3 {
  color: var(--primary-color);
  margin-bottom: 5px;
}

.hc-why-card p {
  margin: 0;
  font-size: 14px;
}

.hc-why-card-1 {
  top: 40px;
  left: -40px;
}

.hc-why-card-2 {
  right: -40px;
  bottom: 40px;
}

.hc-why-content {
  padding-left: 40px;
}

.hc-why-content h2 {
  margin-bottom: 25px;
}

.hc-feature-item {
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 600;
}

.hc-feature-item i {
  color: var(--accent-color);
  margin-right: 10px;
}

/* ==========================
   TESTIMONIALS
========================== */

.hc-testimonial-section {
  position: relative;
  background: #f8fbff;
  overflow: hidden;
}

/* Background Pattern */

.hc-testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 76, 129, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 76, 129, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Card */

.hc-testimonial-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 35px;
  margin: 15px;
  overflow: hidden;
  border: 1px solid rgba(15, 76, 129, 0.08);
  transition: all 0.45s ease;
  height: 100%;
}

/* Top Border Animation */

.hc-testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0f4c81, #22b8cf);
  transition: 0.6s;
}

.hc-testimonial-card:hover::before {
  left: 0;
}

.hc-testimonial-card:hover {
  transform: translateY(-12px) rotateX(4deg);
  box-shadow: 0 25px 50px rgba(15, 76, 129, 0.12);
}

/* Quote Icon */

.hc-quote-icon {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  /* background: linear-gradient(135deg, #0f4c81, #22b8cf); */
  color: #0f4c81;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: 0.5s;
  opacity: 0.1;
  position: absolute;
}

.hc-quote-icon i {
  font-size: 100px;
}

.hc-testimonial-card:hover .hc-quote-icon {
  transform: rotate(-12deg) scale(1.08);
}

/* Stars */

.hc-rating-stars {
  margin-bottom: 20px;
  margin-top: 40px;
}

.hc-rating-stars i {
  color: #ffc107;
  margin-right: 2px;
  animation: hcStarGlow 2s infinite;
}

.hc-rating-stars i:nth-child(2) {
  animation-delay: 0.2s;
}

.hc-rating-stars i:nth-child(3) {
  animation-delay: 0.4s;
}

.hc-rating-stars i:nth-child(4) {
  animation-delay: 0.6s;
}

.hc-rating-stars i:nth-child(5) {
  animation-delay: 0.8s;
}

/* Text */

.hc-testimonial-card p {
  min-height: 130px;
  line-height: 1.9;
  /* margin-bottom: 30px; */
}

/* Client */

.hc-client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hc-client-info img {
  width: 70px !important;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(34, 184, 207, 0.25);
  transition: 0.4s;
}

.hc-testimonial-card:hover .hc-client-info img {
  transform: scale(1.1);
}

.hc-client-info h5 {
  margin-bottom: 4px;
  font-size: 18px;
}

.hc-client-info span {
  color: #777;
  font-size: 14px;
}

/* Center Active Card */

.hc-testimonial-slider .owl-item.center .hc-testimonial-card {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(15, 76, 129, 0.15);
  border-color: rgba(34, 184, 207, 0.25);
}

/* Dots */

.hc-testimonial-slider .owl-dots {
  margin-top: 35px;
  text-align: center;
  display: none;
}

.hc-testimonial-slider .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px;
  border-radius: 50px;
  background: #d2dce7;
  transition: 0.4s;
}

.hc-testimonial-slider .owl-dot.active span {
  width: 40px;
  background: linear-gradient(90deg, #0f4c81, #22b8cf);
}

/* Animations */

@keyframes hcStarGlow {
  50% {
    transform: translateY(-2px);
    opacity: 0.7;
  }
}

/* Mobile */

/* ==========================
   BLOG SECTION
========================== */

.hc-blog-section {
  background: var(--white-color);
}

.hc-blog-title {
  color: var(--heading-color);
  margin-bottom: 15px;
}

.hc-blog-title span {
  color: var(--accent-color);
}

.hc-blog-desc {
  color: var(--text-color);
  max-width: 650px;
  margin: 0 auto;
}

.hc-blog-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 20px;
  height: 100%;
  transition: var(--transition);
}

.hc-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.hc-blog-image {
  position: relative;
  flex-shrink: 0;
}

.hc-blog-image img {
  width: 220px;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
}

.hc-blog-date {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 50px;
  height: 50px;
  background: var(--white-color);
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.hc-blog-date h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.hc-blog-date span {
  color: var(--text-color);
  font-weight: 500;
}

.hc-blog-category {
  display: inline-block;
  background: linear-gradient(135deg, #0f4c81, #22b8cf);
  color: var(--white-color);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.hc-blog-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  line-height: normal;
  margin-bottom: 5px;
}

.hc-blog-content p {
  color: var(--text-color);
  margin-bottom: 18px;
}

.hc-read-more {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.hc-read-more:hover {
  color: var(--secondary-color);
}

.hc-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color);
  color: var(--white-color);
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.hc-view-all-btn:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

/* ==========================
   FOOTER
========================== */

.hc-footer {
  background: #081827;
  color: rgba(255, 255, 255, 0.75);
  padding-top: 40px;
  position: relative;
}

.hc-footer-logo {
  max-width: 100px;
  margin-bottom: 25px;
  filter: brightness(0) invert(1);
}

.hc-footer-about p {
  margin-bottom: 30px;
}

.hc-footer-widget h5 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 20px;
}

.hc-footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hc-footer-widget ul li {
  margin-bottom: 12px;
}

.hc-footer-widget ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: 0.3s;
}

.hc-footer-widget ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

/* Social */

.hc-footer-social {
  display: flex;
  gap: 12px;
}

.hc-footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}

.hc-footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-4px);
}

/* Contact */

.hc-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.hc-contact-list i {
  color: var(--secondary-color);
  margin-top: 4px;
}

/* Newsletter */

.hc-newsletter {
  margin-top: 25px;
  display: flex;
  overflow: hidden;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
}

.hc-newsletter input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 15px 20px;
  color: #fff;
  outline: none;
}

.hc-newsletter button {
  width: 60px;
  border: none;
  background: var(--primary-color);
  color: #fff;
}

/* Bottom */

.hc-footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px 0;
}

.hc-footer-bottom p {
  margin: 0;
}

.hc-footer-bottom a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  /* margin-left: 20px; */
}

/* ==========================
   PAGE BANNER
========================== */

.hc-page-banner {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay */

.hc-page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 24, 39, 0.85) 0%,
    rgba(8, 24, 39, 0.55) 50%,
    rgba(8, 24, 39, 0.3) 100%
  );
}

/* Content */

.hc-page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hc-page-banner-content h1 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0;
}

.hc-about-banner {
  background-image: url("../media/about-banner.jpg");
}

.hc-it-banner {
  background-image: url("../media/about-2.jpg");
}

.hc-contract {
  background-image: url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1600");
}

.hc-permanent {
  background-image: url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1600");
}

.hc-career {
  background-image: url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1600");
}

.hc-contact {
  background-image: url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1600");
}

.hc-it-roles {
  background: #f8fbfd;
}

.hc-role-box {
  background: #fff;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  transition: 0.3s;
  border: 1px solid #eef2f7;
}

.hc-role-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.hc-role-box i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.hc-role-box h5 {
  margin-bottom: 0;
}

/* ==========================
   IT WHY CHOOSE US
========================== */

.hc-it-why-image img {
  width: 100%;
  border-radius: 30px;
}

.hc-it-feature {
  display: flex;
  gap: 25px;
  margin-top: 15px;
}

.hc-it-number {
  min-width: 70px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-it-feature h4 {
  margin-bottom: 0px;
}

.hc-it-feature p {
  margin-bottom: 0;
}

.hc-contract-img img {
  width: 100%;
  border-radius: 30px;
}

.hc-contract-list {
  margin-top: 30px;
}

.hc-contract-item {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
}

.hc-contract-item i {
  color: var(--accent-color);
  margin-right: 10px;
}

.hc-benefit-block {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
}

.hc-benefit-block span {
  min-width: 70px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.hc-industry-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.hc-industry-wrap span {
  padding: 15px 25px;
  background: #fff;
  border: 1px solid #e7edf4;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.hc-industry-wrap span:hover {
  background: var(--primary-color);
  color: #fff;
}

.hc-permanent-img {
  width: 100%;
  border-radius: 30px;
}

.hc-permanent-list {
  margin-top: 10px;
}

.hc-permanent-list div {
  /* margin-bottom: 15px; */
  font-weight: 600;
}

.hc-permanent-list i {
  color: var(--goldan-color);
  margin-right: 10px;
}

.hc-position-box {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #edf2f7;
  font-weight: 600;
  transition: 0.3s;
}

.hc-position-box:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-5px);
}

.hc-career-img {
  width: 100%;
  border-radius: 30px;
}

.hc-career-points {
  margin-top: 25px;
}

.hc-career-points div {
  margin-bottom: 15px;
  font-weight: 600;
}

.hc-career-points i {
  color: var(--goldan-color);
  margin-right: 10px;
}

/*=====================================
        CAREER BENEFITS SECTION
======================================*/

.hc-career-benefits {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbfd 0%, #eef7ff 100%);
}

/* Card */

.hc-career-benefit-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(15, 76, 129, 0.08);
  transition: all 0.45s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hc-career-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(15, 76, 129, 0.18);
}

/* Image */

.hc-benefit-image {
  position: relative;
  overflow: hidden;
}

.hc-benefit-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: all 0.6s ease;
}

.hc-career-benefit-card:hover .hc-benefit-image img {
  transform: scale(1.08);
}

/* Dark Overlay */

.hc-benefit-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
  pointer-events: none;
}

/* Floating Icon */

.hc-benefit-icon {
  position: absolute;
  left: 25px;
  bottom: 10px;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: all 0.4s ease;
  z-index: 2;
}

.hc-benefit-icon i {
  font-size: 28px;
  color: var(--primary-color);
  transition: 0.4s;
}

.hc-career-benefit-card:hover .hc-benefit-icon {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: rotate(10deg);
}

.hc-career-benefit-card:hover .hc-benefit-icon i {
  color: #fff;
}

/* Content */

.hc-benefit-content {
  padding: 25px 25px 25px;
}

.hc-benefit-content h5 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  transition: 0.4s;
}

.hc-benefit-content p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 0;
  transition: 0.4s;
}

/* Arrow */

.hc-benefit-content h5::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 10px;
  opacity: 0;
  transition: 0.4s;
}

.hc-career-benefit-card:hover h5::after {
  opacity: 1;
}

/* Top Border Animation */

.hc-career-benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transition: 0.5s;
  z-index: 5;
}

.hc-career-benefit-card:hover::before {
  left: 0;
}

/* Hover Text */

.hc-career-benefit-card:hover h5 {
  color: var(--primary-color);
}

/* Responsive */

@media (max-width: 1199px) {
  .hc-benefit-image img {
    height: 220px;
  }
}

@media (max-width: 991px) {
  .hc-benefit-image img {
    height: 210px;
  }
  .hc-benefit-content {
    padding: 45px 22px 28px;
  }
  .hc-benefit-content h5 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .hc-benefit-image img {
    height: 200px;
  }
  .hc-benefit-icon {
    width: 60px;
    height: 60px;
    bottom: 15px;
    left: 20px;
  }
  .hc-benefit-icon i {
    font-size: 24px;
  }
  .hc-benefit-content {
    padding: 42px 20px 25px;
  }
  .hc-benefit-content h5 {
    font-size: 19px;
  }
  .hc-benefit-content p {
    font-size: 15px;
    line-height: 1.7;
  }
}

@media (max-width: 575px) {
  .hc-benefit-image img {
    height: 220px;
  }
}

/* ==========================
   OPEN POSITIONS PREMIUM
========================== */

.hc-openings {
  background: linear-gradient(180deg, #f8fbfd 0%, #eef7ff 100%);
}

.hc-job-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 28px;
  margin-bottom: 25px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(15, 76, 129, 0.08);
  transition: all 0.4s ease;
}

.hc-job-card::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(34, 184, 207, 0.08),
    transparent
  );
  transition: 0.8s;
}

.hc-job-card:hover::before {
  left: 100%;
}

.hc-job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(15, 76, 129, 0.12);
}

.hc-job-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hc-job-icon {
  width: 75px;
  height: 75px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hc-job-icon i {
  color: #fff;
  font-size: 28px;
}

.hc-job-content h4 {
  margin-bottom: 12px;
}

.hc-job-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hc-job-meta span {
  background: rgba(15, 76, 129, 0.08);
  color: var(--primary-color);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.hc-job-meta span i {
  margin-right: 6px;
}

.hc-job-btn {
  text-decoration: none;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #fff;
  padding: 14px 24px;
  border-radius: 60px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.4s;
  border: none;
}

.hc-job-btn i {
  margin-left: 8px;
  transition: 0.4s;
}

.hc-job-btn:hover i {
  transform: translateX(5px);
}

.hc-job-btn:hover {
  color: #fff;
  transform: translateY(-3px);
}

.hc-job-actions {
  display: flex;
  gap: 5px;
}

/* ==========================
   CONTACT INFO
========================== */

.hc-contact-info {
  background: linear-gradient(180deg, #f8fbfd, #eef7ff);
}

.hc-contact-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 40px 25px;
  text-align: center;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(15, 76, 129, 0.08);
  transition: all 0.45s ease;
}

.hc-contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0;
  transition: 0.45s;
}

.hc-contact-card:hover::before {
  opacity: 1;
}

.hc-contact-card > * {
  position: relative;
  z-index: 2;
}

.hc-contact-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(15, 76, 129, 0.15);
}

.hc-contact-card:hover h4,
.hc-contact-card:hover p {
  color: #fff;
}

.hc-contact-icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 25px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 76, 129, 0.08);
  transition: 0.45s;
}

.hc-contact-icon i {
  font-size: 34px;
  color: var(--primary-color);
  transition: 0.45s;
}

.hc-contact-card:hover .hc-contact-icon {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(12deg);
}

.hc-contact-card:hover .hc-contact-icon i {
  color: #fff;
}

/* ==========================
   CONTACT FORM
========================== */

.hc-contact-form-section {
  position: relative;
}

.hc-contact-form-wrapper {
  background: #fff;
  padding: 55px;
  border-radius: 20px;
  border: 1px solid rgba(15, 76, 129, 0.08);
  box-shadow: 0 30px 80px rgba(15, 76, 129, 0.08);
}

.hc-contact-form-wrapper h2 {
  margin-bottom: 15px;
}

.hc-contact-form-wrapper .form-control {
  height: 60px;
  font-size: 12px;
  border-radius: 16px;
  border: 1px solid #dce6f1;
  background: #f8fbff;
  padding: 15px 10px;
  transition: 0.35s;
}

.hc-contact-form-wrapper .form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(34, 184, 207, 0.12);
  background: #fff;
}

.hc-contact-form-wrapper textarea.form-control {
  height: 180px;
  resize: none;
}

.hc-contact-btn {
  border: none;
  padding: 16px 34px;
  border-radius: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #fff;
  font-weight: 600;
  transition: 0.4s;
}

.hc-contact-btn:hover {
  transform: translateY(-4px);
}

/* ==========================
   IMAGE
========================== */

.hc-contact-image-wrapper {
  position: relative;
}

.hc-contact-img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 35px;
  transition: 1s ease;
  box-shadow: 0 30px 70px rgba(15, 76, 129, 0.15);
}

.hc-contact-image-wrapper:hover .hc-contact-img {
  transform: scale(1.05);
}

.hc-contact-floating-card {
  position: absolute;
  bottom: 30px;
  left: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.hc-contact-floating-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hc-contact-floating-card h6 {
  margin-bottom: 3px;
}

.hc-contact-floating-card span {
  font-size: 14px;
  color: #777;
}

.hc-contact-form-wrapper .form-select {
  height: 60px;
  border-radius: 16px;
  border: 1px solid #dce6f1;
  background: #f8fbff;
  padding: 15px 10px;
  transition: 0.35s;
}

.hc-contact-form-wrapper .form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(34, 184, 207, 0.12);
  background: #fff;
}

/* Phone Input Group */

.input-group .form-select {
  max-width: 100px;
  border-radius: 16px 0 0 16px !important;
  border-right: 0;
}

.input-group .form-control {
  border-radius: 0 16px 16px 0 !important;
}

.form-select {
  appearance: auto !important;
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;
}

/* ==========================
   RESPONSIVE
========================== */

/* .hc-dropdown {
    min-width: 250px;
}




.hc-sub-dropdown {
    position: absolute;
    top: 20px;
    left: 100%;
    margin-left: 2px;
    display: none;
    min-width: 220px;
}



.dropdown-submenu:hover>.hc-sub-dropdown {
    display: block;
}




.dropdown-submenu>a::after {
    display: none;
} */

.dropdown-submenu {
  position: relative;
}

.hc-dropdown,
.dropdown-menu {
  overflow: visible !important;
}

.hc-sub-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 240px;
  display: none;
  margin: 0;
  border-radius: 10px;
}

.dropdown-submenu:hover > .hc-sub-dropdown {
  display: block;
}

/* Mobile */

.modal.show .modal-dialog {
  margin-top: 120px;
}

.hc-modal-content {
  border: none;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  position: relative;
}

.hc-modal-content .modal-body {
  padding: 40px;
}

.hc-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  box-shadow: none;
}

.hc-input-group {
  position: relative;
}

.hc-input-group i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #b0b7c3;
  font-size: 15px;
  transition: 0.3s;
  z-index: 2;
}

.hc-input-group textarea + i {
  top: 25px;
}

.hc-input-group .form-control {
  height: 58px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding-left: 50px;
  background: #f8fafc;
  box-shadow: none;
  transition: 0.35s;
  font-size: 12px;
}

.hc-textarea .form-control {
  height: 140px;
  padding-top: 16px;
  resize: none;
}

.hc-input-group:focus-within i {
  color: #d2af26;
}

.hc-input-group .form-control:focus {
  background: #fff;
  border-color: #d2af26;
  box-shadow: 0 0 0 4px rgba(210, 175, 38, 0.15);
}

.hc-input-group input[type="file"] {
  padding-top: 19px;
}

/* Phone Field */

.hc-phone-group {
  display: flex;
  align-items: center;
}

.hc-phone-group .hc-country-code {
  width: 85px;
  min-width: 85px;
  height: 58px;
  border: 1px solid #e5e7eb;
  border-right: none;
  border-radius: 14px 0 0 14px;
  background: #f8fafc;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 500;
  color: #555;
  outline: none;
  transition: 0.35s;
}

.hc-phone-group .hc-phone-input {
  border-radius: 0 14px 14px 0;
  padding-left: 18px;
}

.hc-phone-group:focus-within .hc-country-code {
  border-color: #d2af26;
  background: #fff;
}

.hc-phone-group:focus-within .hc-phone-input {
  border-color: #d2af26;
}

/* .hc-btn {
    height: 56px;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    background: linear-gradient(135deg, #8a6508, #d2af26, #f3d76b);
    color: #fff;
    transition: 0.35s;
}

.hc-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(210, 175, 38, 0.35);
} */

/* ===================================
   CAREER OPPORTUNITIES
=================================== */

.hc-career-path-section {
  background: linear-gradient(135deg, #f6fbff 0%, #eef7ff 100%);
}

.hc-career-path-card {
  position: relative;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
}

.hc-career-path-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

/* Overlay */

.hc-career-path-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.95) 0%,
    rgba(10, 22, 40, 0.65) 35%,
    rgba(10, 22, 40, 0.15) 70%,
    transparent 100%
  );
}

.hc-career-path-content {
  width: 100%;
}

.hc-career-path-content h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 0;
  transition: all 0.4s ease;
}

.hc-career-path-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.8;
  margin-top: 18px;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.45s ease;
}

/* Golden Divider */

.hc-career-path-content::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  margin-top: 20px;
  border-radius: 50px;
  background: var(--accent-color);
}

/* Hover */

.hc-career-path-card:hover img {
  transform: scale(1.08);
}

.hc-career-path-card:hover .hc-career-path-content p {
  opacity: 1;
  transform: translateY(0);
}

.hc-career-path-card:hover .hc-career-path-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.98) 0%,
    rgba(10, 22, 40, 0.8) 45%,
    rgba(10, 22, 40, 0.25) 75%,
    transparent 100%
  );
}

.hc-career-path-card:hover .hc-career-path-content h3 {
  margin-bottom: 10px;
}

.custom-cta-parallax-section {
  position: relative;
  padding: 50px;
  background-image: url("../media/home-banner.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.custom-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 76, 129, 0.3),
    rgba(26, 106, 178, 0.5),
    rgba(34, 184, 207, 0.8)
  );
}

.custom-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  margin: auto;
}

.custom-cta-tag {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: #fff;
  font-weight: 600;
  margin-bottom: 25px;
}

.custom-cta-inner h2 {
  color: #fff;
  /* font-size: 64px; */
  line-height: 1.1;
  margin-bottom: 25px;
}

.custom-cta-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  margin-bottom: 40px;
}

.custom-cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.custom-cta-btn {
  background: #fff;
  color: #0f4c81;
  padding: 16px 38px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.4s;
}

.custom-cta-btn:hover {
  transform: translateY(-6px);
}

.custom-cta-btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 16px 38px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  backdrop-filter: blur(10px);
  transition: 0.4s;
}

.custom-cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* =========================
   WORKFORCE SECTION
========================= */

.hc-workforce-section {
  position: relative;
  background: #f8fbff;
  overflow: hidden;
}

.hc-workforce-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -250px;
  right: -150px;
  border-radius: 50%;
  background: rgba(34, 184, 207, 0.08);
}

.hc-workforce-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  bottom: -150px;
  left: -100px;
  border-radius: 50%;
  background: rgba(15, 76, 129, 0.06);
}

/* Title */

.hc-section-title {
  max-width: 760px;
  margin: auto;
}

.hc-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.hc-section-title h2 {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hc-section-title h2 span {
  color: var(--accent-color);
}

.hc-section-title p {
  color: #64748b;
  font-size: 17px;
  line-height: 1.8;
}

/* Cards */

.hc-workforce-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 40px 30px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 40px rgba(15, 76, 129, 0.08);
}

.hc-workforce-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
  transition: 0.8s;
}

.hc-workforce-card:hover::before {
  left: 120%;
}

.hc-workforce-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(15, 76, 129, 0.18);
}

/* Icon */

.hc-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f4c81, #22b8cf);
  margin-bottom: 25px;
  transition: 0.4s;
}

.hc-card-icon i {
  font-size: 32px;
  color: #fff;
}

.hc-workforce-card:hover .hc-card-icon {
  transform: rotateY(180deg);
}

/* Content */

.hc-workforce-card h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #0f172a;
}

.hc-workforce-card p {
  color: #64748b;
  line-height: 1.9;
  margin-bottom: 25px;
}

.hc-workforce-card a {
  text-decoration: none;
  font-weight: 700;
  color: #0f4c81;
}

.hc-workforce-card a i {
  margin-left: 8px;
  transition: 0.3s;
}

.hc-workforce-card:hover a i {
  transform: translateX(6px);
}

/* Number */

.hc-card-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 60px;
  font-weight: 800;
  color: rgba(15, 76, 129, 0.05);
}

/* ==========================
   SERVICE BOXES
========================== */

.hc-service-boxes-section {
  background: #fff;
}

.hc-service-box {
  position: relative;
  height: 180px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.45s ease;
}

/* Background Colors */

.service-blue {
  background: #edf3ff;
}

.service-green {
  background: #eef8f1;
}

.service-pink {
  background: #fff0f8;
}

.service-gray {
  background: #f2f6f8;
}

.service-cyan {
  background: #edf9ff;
}

.service-orange {
  background: #fff3ed;
}

/* Hover Glow */

.hc-service-box::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  top: -120px;
  right: -120px;
  transform: scale(0);
  transition: 0.6s;
}

.hc-service-box:hover::before {
  transform: scale(1.4);
}

/* Bottom Border Animation */

.hc-service-box::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 4px;
  transform: translateX(-50%);
  background: var(--primary-color);
  transition: 0.4s;
}

.hc-service-box:hover::after {
  width: 100%;
}

/* Icon */

.hc-service-icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: 0.45s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.hc-service-icon i {
  font-size: 28px;
  color: var(--primary-color);
  transition: 0.45s;
}

/* Title */

.hc-service-box h5 {
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  color: #1d2b36;
  margin: 0;
  transition: 0.4s;
  padding: 0 10px;
}

/* Hover Effects */

.hc-service-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(15, 76, 129, 0.12);
}

.hc-service-box:hover .hc-service-icon {
  transform: rotateY(180deg) scale(1.08);
  background: var(--primary-color);
}

.hc-service-box:hover .hc-service-icon i {
  color: #fff;
  transform: rotateY(-180deg);
}

.hc-service-box:hover h5 {
  color: var(--primary-color);
}

/* Mobile */

@media (max-width: 991px) {
}

/* ===================================
   CAREER PROCESS SECTION
=================================== */

.career-process-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f7fbff 0%, #edf8f8 100%);
}

/* Decorative Shapes */

/* .career-process-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(0, 184, 148, 0.08);
  border-radius: 0;
  top: -150px;
  right: -150px;
}

.career-process-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(15, 76, 129, 0.05);
  border-radius: 50%;
  bottom: -180px;
  left: -150px;
} */

/* ===================================
   IMAGE
=================================== */

/* ===================================
   IMAGE SECTION
=================================== */

.career-process-image {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 100%;
}

.career-process-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 18px;
  left: 18px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  z-index: 1;
  transition: all 0.5s ease;
}

/* Hover Effect */

.career-process-image:hover::before {
  top: -20px;
  left: -20px;
}

.career-process-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  display: block;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
}

/* Optional Premium Hover */

.career-process-image:hover img {
  transform: scale(1.02);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.22);
}

/* ===================================
   CONTENT
=================================== */

.career-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.career-badge i {
  color: var(--accent-color);
}

.career-process-content h2 {
  /* font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800; */
  line-height: 1.1;
  margin-bottom: 20px;
  color: #1d2433;
}

.career-process-content h2 span {
  color: var(--accent-color);
}

.career-process-content > p {
  color: #657082;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ===================================
   CARDS
=================================== */

.career-process-card {
  position: relative;
  height: 100%;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(15, 76, 129, 0.06);
  overflow: hidden;
  transition: all 0.4s ease;
}

.career-process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.career-process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(15, 76, 129, 0.15);
}

/* ===================================
   ICONS
=================================== */

.career-process-icon {
  width: 72px;
  min-width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 76, 129, 0.08);
  transition: 0.4s ease;
}

.career-process-icon i {
  font-size: 30px;
  color: var(--primary-color);
  transition: 0.4s ease;
}

.career-process-card:hover .career-process-icon {
  background: var(--primary-color);
  transform: rotate(8deg);
}

.career-process-card:hover .career-process-icon i {
  color: #fff;
}

/* ===================================
   CARD TEXT
=================================== */

.career-process-card h5 {
  margin-bottom: 10px;
  color: #1d2433;
}

.career-process-card p {
  margin: 0;
  color: #667085;
  line-height: 1.7;
}

/* ===================================
   CTA
=================================== */

.career-cta {
  margin-top: 40px;
  text-align: center;
}

/* .hc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 38px;
  border-radius: 60px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(15, 76, 129, 0.25);
  transition: 0.4s ease;
}

.hc-btn:hover {
  transform: translateY(-4px);
  color: #fff;
} */

/* .hc-industries-slider .hc-service-card {
  height: 100%;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hc-industries-slider .hc-service-card h4 {
  font-size: 20px;
  margin-top: 15px;
}

.hc-industries-slider .owl-stage {
  display: flex;
}

.hc-industries-slider .owl-item {
  display: flex;
} */

.owl-carousel,
.owl-stage-outer {
  overflow: visible !important;
}

.hc-industries-slider .owl-stage {
  padding-top: 20px;
  padding-bottom: 20px;
}

.hc-achievement-section {
  position: relative;
  padding: 90px 0;
  background: url("../media/dummy-about-small.jpg") center/cover no-repeat;
  overflow: hidden;
}

.hc-achievement-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.hc-achievement-card {
  color: #fff;
  padding: 20px 15px;
  text-align: center;
}

.hc-achievement-card i {
  font-size: 52px;
  color: var(--goldan-color);
  margin-bottom: 20px;
}

.hc-achievement-card h2 {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1;
}

.hc-achievement-card h5 {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* Large Tablets */

@media (max-width: 991px) {
  .hc-achievement-section {
    padding: 70px 0;
  }
  .hc-achievement-card i {
    font-size: 45px;
  }
  .hc-achievement-card h2 {
    font-size: 42px;
  }
  .hc-achievement-card h5 {
    font-size: 16px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .hc-achievement-card {
    padding: 15px 10px;
  }
  .hc-achievement-card i {
    font-size: 38px;
  }
  .hc-achievement-card h2 {
    font-size: 34px;
  }
  .hc-achievement-card h5 {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Small Mobile */

@media (max-width: 480px) {
  .hc-achievement-section {
    padding: 60px 0;
  }
  .hc-achievement-card i {
    font-size: 34px;
  }
  .hc-achievement-card h2 {
    font-size: 30px;
  }
  .hc-achievement-card h5 {
    font-size: 13px;
  }
}

/* .hc-mission-vision {
  background: #eef5ff;
} */

.hc-mv-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  border-top: 4px solid var(--goldan-color);
}

.hc-mv-card:hover {
  transform: translateY(-10px);
}

.hc-mv-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-image: linear-gradient(
    to right,
    #0f4c81 0%,
    #22b8cf 51%,
    #0f4c81 100%
  );
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 25px;
}

.hc-mv-card h3 {
  margin-bottom: 15px;
  font-weight: 700;
}

.hc-core-values {
  background:
    radial-gradient(circle at top right, #e8f4ff 0%, transparent 30%),
    radial-gradient(circle at bottom left, #e9fff2 0%, transparent 30%), #f8fafc;
}

.hc-values-strip {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hc-value-item {
  flex: 1;
  /* min-width: 220px;
  max-width: 250px; */
  text-align: center;
  padding: 20px 15px;
  position: relative;
}

.hc-value-item::after {
  content: "";
  position: absolute;
  top: 45px;
  right: -10px;
  width: 20px;
  height: 2px;
  background: #dbe3ea;
}

.hc-value-item:last-child::after {
  display: none;
}

.hc-value-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  color: var(--primary-color);
  transition: 0.4s;
}

.hc-value-item:hover .hc-value-icon {
  transform: translateY(-10px) rotate(8deg);
  color: var(--accent-color);
}

.hc-value-item h5 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hc-value-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 991px) {
  .hc-value-item {
    min-width: calc(50% - 20px);
  }
  .hc-value-item::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .hc-value-item {
    min-width: 100%;
  }
  .hc-value-icon {
    width: 75px;
    height: 75px;
    font-size: 30px;
  }
  .hc-value-item h5 {
    font-size: 20px;
  }
}

.ag-industries-section {
  position: relative;
}

.ag-industry-box {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.ag-industry-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.ag-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 32, 96, 0.95),
    rgba(0, 32, 96, 0.45)
  );
  transition: 0.5s;
}

.ag-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 30px;
}

.ag-content i {
  font-size: 55px;
  margin-bottom: 18px;
}

.ag-content h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ag-content p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.ag-industry-box:hover img {
  transform: scale(1.12);
}

.ag-industry-box:hover .ag-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 32, 96, 0.98),
    rgba(0, 32, 96, 0.7)
  );
}

@media (max-width: 991px) {
  .ag-industry-box {
    height: 320px;
  }
  .ag-content {
    padding: 25px;
  }
  .ag-content i {
    font-size: 45px;
  }
  .ag-content h4 {
    font-size: 20px;
  }
  .ag-content p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .ag-industry-box {
    height: 280px;
  }
  .ag-content {
    padding: 20px;
  }
  .ag-content i {
    font-size: 36px;
  }
  .ag-content h4 {
    font-size: 18px;
  }
  .ag-content p {
    font-size: 13px;
  }
}

.hc-contact-info-box {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hc-contact-info-box h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.hc-contact-info-box h4::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  position: absolute;
  left: 0;
  bottom: -10px;
  border-radius: 10px;
}

.hc-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.hc-info-item:last-child {
  border-bottom: none;
}

.hc-info-item i {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f4c81, #22b8cf);
  color: #ffffff;
  border-radius: 12px;
  font-size: 16px;
  flex-shrink: 0;
  /* box-shadow: 0 5px 15px rgba(255, 187, 0, 0.25); */
}

.hc-info-item h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #222;
}

.hc-info-item p {
  margin: 2px 0 0;
  font-size: 13px;
  color: #666;
}

.hc-info-item:hover {
  transform: translateX(5px);
}

/* 
.employer-solutions-section {
  padding: 120px 0;
  background: #ffffff;
}

.sticky-content {
  position: sticky;
  top: 120px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.sticky-content h1 {
  line-height: 1.1;
  margin-bottom: 25px;
}

.sticky-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #6c757d;
}

.service-list {
  padding-left: 50px;
}

.service-item {
  display: flex;
  gap: 40px;
  padding: 45px 0;
  border-bottom: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.service-item:hover {
  padding-left: 20px;
}

.service-item:hover .service-number {
  color: var(--primary-color);
  transform: scale(1.1);
}

.service-item:hover .service-content h3 {
  color: var(--primary-color);
}

.service-number {
  min-width: 90px;
  font-size: 48px;
  font-weight: 700;
  color: #d7dce2;
  transition: 0.3s;
  line-height: 1;
}

.service-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  transition: 0.3s;
}

.service-content p {
  margin: 0;
  color: #6c757d;
  line-height: 1.9;
  max-width: 700px;
}

@media (max-width: 991px) {
  .sticky-content {
    position: relative;
    top: 0;
    margin-bottom: 60px;
  }
  .service-list {
    padding-left: 0;
  }
  .service-item {
    gap: 20px;
  }
  .service-number {
    min-width: 60px;
    font-size: 32px;
  }
  .service-content h3 {
    font-size: 22px;
  }
} */

/*==========================================
Employer Solutions
==========================================*/

/*==================================================
Employer Solutions Section
==================================================*/

.employer-solutions-section {
  padding: 60px 0;
  background: #f8fafc;
  /* overflow: hidden; */
}

.sticky-content {
  position: sticky;
  top: 120px;
}

.sticky-content h1 {
  line-height: 1.15;
  margin-bottom: 25px;
}

.sticky-content p {
  font-size: 17px;
  color: #6c757d;
  line-height: 1.9;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/*==================================================
Card
==================================================*/

.service-card {
  position: relative;
  height: 250px;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  transition: 0.45s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.18);
}

/*==================================================
Background Image
==================================================*/

.service-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s;
}

.service-card:hover .service-bg {
  transform: scale(1.12);
}

/*==================================================
Overlay
==================================================*/

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.88) 100%
  );
  transition: 0.4s;
}

.service-card:hover .service-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.82)
  );
}

/*==================================================
Content Wrapper
==================================================*/

.service-content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: start;
  gap: 30px;
  width: 100%;
  padding: 45px;
}

/*==================================================
Number Badge
==================================================*/

.service-number {
  width: 75px;
  height: 75px;
  min-width: 75px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: 0.4s;
}

.service-card:hover .service-number {
  transform: rotate(360deg);
  background: var(--primary-color);
}

/*==================================================
Content
==================================================*/

.service-content {
  color: #fff;
}

.service-content h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  transition: 0.3s;
}

.service-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  max-width: 650px;
}

/*==================================================
Green Accent Line
==================================================*/

.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 5px;
  background: var(--primary-color);
  transition: 0.45s;
}

.service-card:hover::after {
  width: 100%;
}

/*==========================================
PART 3 - Responsive + Premium Effects
==========================================*/

/* Floating Light Effect */

.service-card::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 1;
}

.service-card:hover::before {
  opacity: 1;
  transform: translate(50px, 50px);
}

/* Shine Effect */

.service-card .shine {
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-25deg);
  transition: 1s;
  z-index: 2;
}

.service-card:hover .shine {
  left: 170%;
}

/* Content Animation */

.service-content {
  transition: 0.4s;
}

.service-card:hover .service-content {
  transform: translateY(-8px);
}

.service-content h3 {
  transition: 0.35s;
}

.service-card:hover .service-content h3 {
  letter-spacing: 0.5px;
}

.service-content p {
  transition: 0.35s;
}

.service-card:hover .service-content p {
  opacity: 1;
}

/* Image */

.service-bg {
  filter: brightness(0.85);
}

.service-card:hover .service-bg {
  filter: brightness(1);
}

/* Tablet */

@media (max-width: 991px) {
  .employer-solutions-section {
    padding: 80px 0;
  }
  .sticky-content {
    position: relative;
    top: 0;
    margin-bottom: 45px;
  }
  .service-card {
    height: 250px;
  }
  .service-content-wrapper {
    padding: 35px;
    gap: 20px;
  }
  .service-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    font-size: 20px;
  }
  .service-content h3 {
    font-size: 24px;
  }
  .service-content p {
    font-size: 15px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .service-card {
    height: 260px;
    border-radius: 18px;
  }
  .service-content-wrapper {
    padding: 25px;
    gap: 15px;
    align-items: flex-start;
  }
  .service-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 18px;
  }
  .service-content h3 {
    font-size: 21px;
    margin-bottom: 8px;
  }
  .service-content p {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* Small Mobile */

@media (max-width: 575px) {
  .service-card {
    height: 230px;
  }
  .service-content-wrapper {
    padding: 20px;
  }
  .service-number {
    width: 45px;
    height: 45px;
    min-width: 45px;
    font-size: 16px;
  }
  .service-content h3 {
    font-size: 18px;
  }
  .service-content p {
    font-size: 13px;
    line-height: 1.6;
  }
}

.hc-process-section {
  padding: 30px 0;
  background: #f8fbff;
  overflow: hidden;
}

/* .process-heading span {
  color: var(--primary-color);
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 600;
} */

.process-heading h2 {
  margin: 00px auto 80px;
}

.process-timeline {
  position: relative;
  max-width: 1100px;
  margin: auto;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #0d6efd, #d4a017);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  margin-bottom: 30px;
}

.timeline-item.left {
  padding-right: 70px;
}

.timeline-item.right {
  margin-left: 50%;
  padding-left: 70px;
}

.timeline-content {
  background: #fff;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: 0.4s;
}

.timeline-content:hover {
  transform: translateY(-8px);
}

.timeline-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #d4a017;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: #0d3b8e;
  position: absolute;
  top: 50%;
}

.timeline-item.left .timeline-number {
  right: -105px;
  transform: translateY(-50%);
}

.timeline-item.right .timeline-number {
  left: -105px;
  transform: translateY(-50%);
}

.timeline-content h4 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.timeline-content p {
  margin: 0;
  color: #6c757d;
  line-height: 1.8;
}

/* .timeline-item::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: #0d6efd;
  border: 4px solid #fff;
  border-radius: 50%;
  top: 50%;
} */

.timeline-item.left::after {
  right: -9px;
}

.timeline-item.right::after {
  left: -9px;
}

@media (max-width: 991px) {
  .process-timeline::before {
    left: 25px;
    display: none;
  }
  .timeline-item.left {
    padding-right: 0px;
  }
  .timeline-item,
  .timeline-item.right {
    width: 100%;
    max-width: 300px;
    /* margin-left: 0;
    padding-left: 70px;
    padding-right: 0; */
  }
  .timeline-item::after {
    left: 16px !important;
  }
  .timeline-number {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    margin-bottom: 20px;
  }
  .timeline-content h4 {
    font-size: 22px;
  }
}

/*==================================================
  LEADERSHIP SECTION
==================================================*/

.hc-leadership-section {
  position: relative;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  overflow: hidden;
}

.hc-leadership-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(24, 92, 188, 0.08);
  border-radius: 50%;
  top: -180px;
  left: -120px;
  filter: blur(40px);
}

.hc-leadership-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(24, 92, 188, 0.08);
  border-radius: 50%;
  bottom: -180px;
  right: -120px;
  filter: blur(40px);
}

.hc-leadership-section .container {
  position: relative;
  z-index: 2;
}

/*==================================================
  CARD
==================================================*/

.hc-leader-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  padding: 70px 35px 40px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: 0.45s ease;
  height: 100%;
}

.hc-card-top-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background: linear-gradient(135deg, #0b6efd, #00b4ff);
}

/*==================================================
  IMAGE
==================================================*/

.hc-leader-image {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 30px;
}

.hc-image-ring {
  position: absolute;
  inset: -10px;
  border: 3px dashed rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  animation: rotateRing 18s linear infinite;
}

.hc-leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 7px solid #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 2;
}

/*==================================================
  BADGE
==================================================*/

.hc-role-badge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -18px;
  background: #0b6efd;
  color: #fff;
  padding: 8px 24px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  z-index: 5;
  box-shadow: 0 10px 25px rgba(11, 110, 253, 0.35);
}

.hc-role-badge.director {
  background: #14b8a6;
}

/*==================================================
  CONTENT
==================================================*/

.hc-leader-content h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1b1b1b;
}

.hc-leader-content h6 {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}

.hc-leader-content p {
  color: #666;
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 30px;
  text-align: left;
}

/*==================================================
  STATS
==================================================*/

.hc-leader-stats {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 30px;
}

.hc-stat-box {
  flex: 1;
  background: #f5f9ff;
  border-radius: 18px;
  padding: 18px;
}

.hc-stat-box h4 {
  margin: 0;
  color: var(--primary-color);
  font-size: 30px;
  font-weight: 700;
}

.hc-stat-box span {
  display: block;
  margin-top: 8px;
  color: #666;
  font-size: 14px;
}

/*==================================================
  SOCIAL
==================================================*/

.hc-social-area {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.hc-social-area a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f4f7fc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 18px;
  text-decoration: none;
  transition: 0.35s;
}

/*==================================================
  BUTTON
==================================================*/

.hc-theme-btn {
  padding: 13px 32px;
  border-radius: 40px;
  background: #0b6efd;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

/*==================================================
  HOVER EFFECTS
==================================================*/

.hc-leader-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.hc-leader-card:hover .hc-card-top-shape {
  background: linear-gradient(135deg, #0d6efd, #16c4ff);
}

.hc-leader-card:hover .hc-leader-image img {
  transform: scale(1.06);
}

.hc-leader-image img {
  transition: 0.45s ease;
}

.hc-leader-card:hover .hc-role-badge {
  transform: translateX(-50%) scale(1.05);
}

.hc-stat-box {
  transition: 0.35s ease;
}

.hc-stat-box:hover {
  background: linear-gradient(135deg, #0f4c81, #22b8cf);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(11, 110, 253, 0.25);
}

.hc-stat-box:hover h4,
.hc-stat-box:hover span {
  color: #fff;
}

.hc-social-area a:hover {
  color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(11, 110, 253, 0.3);
}

.hc-theme-btn {
  transition: 0.35s ease;
}

.hc-theme-btn:hover {
  background: #084bb5;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(11, 110, 253, 0.3);
}

/*==================================================
  ANIMATIONS
==================================================*/

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatCard {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

.hc-leader-card {
  animation: floatCard 6s ease-in-out infinite;
}

.hc-leader-card:nth-child(2) {
  animation-delay: 1.5s;
}

/*==================================================
  LARGE DEVICES
==================================================*/

@media (max-width: 1199px) {
  .hc-leader-card {
    padding: 65px 30px 35px;
  }
  .hc-leader-content h3 {
    font-size: 28px;
  }
}

/*==================================================
  TABLET
==================================================*/

@media (max-width: 991px) {
  .hc-leader-card {
    margin-bottom: 30px;
  }
  .hc-leader-image {
    width: 160px;
    height: 160px;
  }
  .hc-leader-content h3 {
    font-size: 26px;
  }
  .hc-leader-content p {
    font-size: 15px;
  }
}

/*==================================================
  MOBILE
==================================================*/

@media (max-width: 767px) {
  .hc-leadership-section {
    padding: 70px 0;
  }
  .hc-leader-card {
    padding: 55px 20px 30px;
    border-radius: 22px;
  }
  .hc-card-top-shape {
    height: 110px;
  }
  .hc-leader-image {
    width: 135px;
    height: 135px;
    margin-bottom: 25px;
  }
  .hc-image-ring {
    inset: -8px;
  }
  .hc-role-badge {
    font-size: 13px;
    padding: 7px 18px;
  }
  .hc-leader-content h3 {
    font-size: 23px;
  }
  .hc-leader-content h6 {
    font-size: 15px;
  }
  .hc-leader-content p {
    font-size: 14px;
    line-height: 1.8;
  }
  .hc-leader-stats {
    gap: 10px;
  }
  .hc-stat-box {
    padding: 14px 10px;
  }
  .hc-stat-box h4 {
    font-size: 24px;
  }
  .hc-stat-box span {
    font-size: 12px;
  }
  .hc-social-area {
    gap: 12px;
  }
  .hc-social-area a {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
  .hc-theme-btn {
    width: 100%;
    padding: 13px 18px;
  }
}

/*==================================================
  SMALL MOBILE
==================================================*/

@media (max-width: 480px) {
  .hc-leader-image {
    width: 120px;
    height: 120px;
  }
  .hc-leader-content h3 {
    font-size: 21px;
  }
  .hc-leader-content h6 {
    font-size: 14px;
  }
  .hc-leader-content p {
    font-size: 13px;
  }
  .hc-leader-stats {
    flex-direction: column;
  }
}

/* SECTION BACKGROUND */

.hc-location-section {
  background: #f4f6f9;
}

/* MAIN CARD */

.hc-location-card {
  position: relative;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* OVERLAY */

.hc-location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.85));
}

/* CONTENT */

.hc-location-content {
  position: absolute;
  text-align: left;
  bottom: 25px;
  left: 25px;
  right: 25px;
  z-index: 2;
}

/* BADGE */

.hc-location-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 10px;
  backdrop-filter: blur(6px);
}

/* TITLE */

.hc-location-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* LIST */

.hc-location-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hc-location-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.4;
}

.hc-location-list i {
  color: #4fc3f7;
  margin-top: 3px;
}

/* BACKGROUND IMAGES */

.hc-location-usa {
  background: url("../media/usa.jpg") center/cover no-repeat;
}

.hc-location-india {
  background: url("../media/india.jpg") center/cover no-repeat;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .hc-location-card {
    height: 380px;
  }
  .hc-location-title {
    font-size: 22px;
  }
}

/* ==========================
   Privacy Policy
========================== */

.hc-privacy-section {
  background: #f7f9fc;
}

.hc-privacy-card {
  background: #fff;
  border-radius: 18px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.hc-privacy-header {
  margin-bottom: 40px;
}

.hc-privacy-subtitle {
  display: inline-block;
  background: #eaf7ef;
  color: #2b8a3e;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.hc-privacy-title {
  font-size: 42px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 15px;
}

.hc-privacy-description {
  max-width: 700px;
  margin: auto;
  color: #666;
  line-height: 1.8;
}

.hc-privacy-block {
  margin-bottom: 35px;
}

.hc-privacy-block h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
  position: relative;
  padding-left: 18px;
}

.hc-privacy-block h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 5px;
  height: 26px;
  background: var(--goldan-color);
  border-radius: 5px;
}

.hc-privacy-block p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 15px;
}

.hc-privacy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hc-privacy-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: #555;
  line-height: 1.8;
}

.hc-privacy-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--goldan-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* Responsive */

@media (max-width: 991px) {
  .hc-privacy-card {
    padding: 35px;
  }
  .hc-privacy-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .hc-privacy-card {
    padding: 25px;
  }
  .hc-privacy-title {
    font-size: 28px;
  }
  .hc-privacy-block h3 {
    font-size: 20px;
  }
}

/*==============================
    TERMS & CONDITIONS
==============================*/

.hc-terms-section {
  background: #f7f9fc;
}

.hc-terms-card {
  background: #fff;
  border-radius: 18px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.hc-terms-header {
  margin-bottom: 40px;
}

.hc-terms-subtitle {
  display: inline-block;
  background: #e8f5ff;
  color: #0d6efd;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.hc-terms-title {
  font-size: 42px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.hc-terms-description {
  max-width: 720px;
  margin: auto;
  color: #666;
  line-height: 1.8;
}

.hc-terms-block {
  margin-bottom: 35px;
}

.hc-terms-block h3 {
  position: relative;
  padding-left: 18px;
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.hc-terms-block h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 5px;
  height: 26px;
  background: var(--goldan-color);
  border-radius: 5px;
}

.hc-terms-block p {
  color: #555;
  line-height: 1.9;
}

.hc-terms-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.hc-terms-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 14px;
  color: #555;
  line-height: 1.8;
}

.hc-terms-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  background: var(--goldan-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/*==============================
    Responsive
==============================*/

@media (max-width: 991px) {
  .hc-terms-card {
    padding: 35px;
  }
  .hc-terms-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .hc-terms-card {
    padding: 25px;
  }
  .hc-terms-title {
    font-size: 28px;
  }
  .hc-terms-block h3 {
    font-size: 20px;
  }
}

/*==============================
    Equal Opportunity
===============================*/

.hc-equal-section {
  background: #f7f9fc;
}

.hc-equal-card {
  background: #fff;
  padding: 50px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.hc-equal-header {
  margin-bottom: 30px;
}

.hc-equal-subtitle {
  display: inline-block;
  padding: 8px 18px;
  background: #eaf7ef;
  color: #198754;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.hc-equal-title {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 0;
}

.hc-equal-content p {
  color: #555;
  font-size: 17px;
  line-height: 2;
  text-align: center;
  max-width: 850px;
  margin: auto;
}

/* Responsive */

@media (max-width: 991px) {
  .hc-equal-card {
    padding: 35px;
  }
  .hc-equal-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .hc-equal-card {
    padding: 25px;
  }
  .hc-equal-title {
    font-size: 28px;
  }
  .hc-equal-content p {
    font-size: 16px;
    line-height: 1.8;
  }
}

/*====================================
        DISCLAIMER SECTION
=====================================*/

.hc-disclaimer-section {
  background: #f7f9fc;
}

.hc-disclaimer-card {
  background: #ffffff;
  padding: 50px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.hc-disclaimer-header {
  margin-bottom: 35px;
}

.hc-disclaimer-subtitle {
  display: inline-block;
  padding: 8px 18px;
  background: #fff4e5;
  color: #f59e0b;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.hc-disclaimer-title {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 0;
}

.hc-disclaimer-content {
  max-width: 850px;
  margin: auto;
}

.hc-disclaimer-content p {
  font-size: 17px;
  color: #555;
  line-height: 2;
/*   text-align: left; */
  margin-bottom: 25px;
}

.hc-disclaimer-content p:last-child {
  margin-bottom: 0;
}

/*====================================
            Responsive
=====================================*/

@media (max-width: 991px) {
  .hc-disclaimer-card {
    padding: 35px;
  }
  .hc-disclaimer-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .hc-disclaimer-card {
    padding: 25px;
  }
  .hc-disclaimer-title {
    font-size: 28px;
  }
  .hc-disclaimer-content p {
    font-size: 16px;
    line-height: 1.8;
  }
}

/*=========================================
    JOB SEEKER INDUSTRY SECTION
=========================================*/

.js-job-category-section {
  background: linear-gradient(180deg, #f8fbfd 0%, #eef7ff 100%);
  position: relative;
  overflow: hidden;
}

.js-job-category-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(15, 76, 129, 0.05);
  border-radius: 50%;
  top: -180px;
  left: -180px;
}

.js-job-category-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255, 193, 7, 0.06);
  border-radius: 50%;
  right: -150px;
  bottom: -150px;
}

.js-job-section-text {
  max-width: 760px;
  margin: auto;
}

/*=============================
CARD
=============================*/

.js-job-category-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  transition: 0.45s;
  border: 1px solid rgba(15, 76, 129, 0.08);
  box-shadow: 0 15px 40px rgba(15, 76, 129, 0.08);
}

.js-job-category-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 65px rgba(15, 76, 129, 0.18);
}

/*=============================
IMAGE
=============================*/

.js-job-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.js-job-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.js-job-category-card:hover .js-job-image img {
  transform: scale(1.12);
}

/*=============================
OVERLAY
=============================*/

.js-job-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15));
}

/*=============================
ICON
=============================*/

.js-job-icon {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  transition: 0.4s;
}

.js-job-category-card:hover .js-job-icon {
  transform: rotate(10deg) scale(1.08);
}

/*=============================
OPEN POSITIONS
=============================*/

.js-job-count {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 50px;
}

/*=============================
BODY
=============================*/

.js-job-body {
  padding: 30px;
}

.js-job-body h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

/*=============================
LIST
=============================*/

.js-job-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.js-job-body ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: #555;
  transition: 0.35s;
}

.js-job-body ul li:last-child {
  margin-bottom: 0;
}

.js-job-body ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--goldan-color);
  position: absolute;
  left: 0;
  top: 2px;
  transition: 0.35s;
}

.js-job-body ul li:hover {
  padding-left: 38px;
  color: var(--primary-color);
}

.js-job-body ul li:hover::before {
  transform: scale(1.25);
}

/*=============================
BUTTON
=============================*/

.js-job-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #fff;
  font-weight: 600;
  transition: 0.4s;
}

.js-job-btn:hover {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(15, 76, 129, 0.25);
}

.js-job-btn i {
  transition: 0.4s;
}

.js-job-btn:hover i {
  transform: translateX(6px);
}

/*=============================
SHINE EFFECT
=============================*/

.js-job-category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-25deg);
  transition: 0.9s;
  z-index: 5;
}

.js-job-category-card:hover::before {
  left: 130%;
}

/*=============================
RESPONSIVE
=============================*/

@media (max-width: 991px) {
  .js-job-image {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .js-job-body {
    padding: 24px;
  }
  .js-job-image {
    height: 200px;
  }
  .js-job-body h4 {
    font-size: 21px;
  }
  .js-job-btn {
    width: 100%;
    justify-content: center;
  }
}

.hc-map-section {
  background: #f8fafc;
}

.hc-map-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
  border: 1px solid #e8e8e8;
}

.hc-map-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.hc-map-info {
  padding: 15px;
}

.hc-map-info h4 {
  margin-bottom: 0px;
  color: #222;
}

.hc-map-info h4 i {
  color: var(--goldan-color);
  margin-right: 8px;
}

.hc-map-info p {
  margin: 0;
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

.hc-map-wrapper {
  height: 380px;
}

.hc-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 991px) {
  .hc-map-wrapper {
    height: 320px;
  }
}

@media (max-width: 576px) {
  .hc-map-info {
    padding: 22px;
  }
  .hc-map-info h4 {
    font-size: 20px;
  }
  .hc-map-wrapper {
    height: 280px;
  }
}

/*=============================
        PREMIUM POPUP
==============================*/

/*==================================================
            PREMIUM SERVICE MODAL
==================================================*/

.hc-service-modal {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
}

.hc-service-modal {
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}

.modal-xl {
  max-width: 1100px;
}

.modal-content.hc-service-modal {
  background: #fff;
  border: none;
  border-radius: 24px;
  overflow: hidden;
}

.hc-service-modal .modal-header {
  border: 0;
  padding: 0;
}

.hc-service-modal .modal-body {
  padding: 35px;
  background: #ffffff;
}

.hc-service-modal .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  background-size: 14px;
  opacity: 1;
}

/*====================================
        Banner
====================================*/

.hc-popup-banner {
  background: linear-gradient(135deg, var(--primary-color), #3b82f6);
  border-radius: 22px;
  padding: 35px;
  display: flex;
  align-items: center;
  gap: 25px;
  color: #fff;
  margin-bottom: 35px;
  position: relative;
  overflow: hidden;
}

.hc-popup-banner::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -120px;
  right: -100px;
}

.hc-popup-banner::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  bottom: -90px;
  left: -60px;
}

.hc-popup-icon {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.hc-popup-icon i {
  font-size: 36px;
  color: #fff;
}

.hc-popup-banner h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.hc-popup-banner p {
  margin: 0;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  z-index: 1;
}

.hc-popup-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

/*====================================
        Section Heading
====================================*/

.hc-popup-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.hc-popup-heading span {
  width: 55px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 30px;
}

.hc-popup-heading h5 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
}

/*====================================
        Industry Card
====================================*/

.hc-industry-card {
  background: #fff;
  border: 1px solid #e9eef5;
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  transition: 0.35s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.hc-industry-card i {
  width: 50px;
  height: 50px;
  background: #eef6fd;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.35s;
  flex-shrink: 0;
}

.hc-industry-card span {
  font-size: 16px;
  font-weight: 600;
  color: #263238;
  line-height: 1.5;
}

.hc-industry-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-color);
  box-shadow: 0 18px 40px rgba(15, 76, 129, 0.15);
}

.hc-industry-card:hover i {
  background: var(--primary-color);
  color: #fff;
}

/*====================================
        Scrollbar
====================================*/

.hc-service-modal .modal-body::-webkit-scrollbar {
  width: 8px;
}

.hc-service-modal .modal-body::-webkit-scrollbar-thumb {
  background: #cfd8dc;
  border-radius: 20px;
}

/*====================================
        Responsive
====================================*/

@media (max-width: 991px) {
  .hc-service-modal .modal-body {
    padding: 30px;
  }
  .hc-popup-banner {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .hc-service-modal .modal-body {
    padding: 20px;
  }
  .hc-popup-banner {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
    gap: 20px;
  }
  .hc-popup-banner h3 {
    font-size: 26px;
  }
  .hc-popup-icon {
    width: 75px;
    height: 75px;
  }
  .hc-popup-icon i {
    font-size: 28px;
  }
  .hc-popup-heading {
    justify-content: center;
  }
  .hc-popup-heading h5 {
    font-size: 20px;
  }
  .hc-industry-card {
    padding: 16px;
  }
  .hc-industry-card i {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  .hc-industry-card span {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .hc-popup-banner h3 {
    font-size: 22px;
  }
  .hc-popup-banner p {
    font-size: 14px;
  }
  .hc-popup-tag {
    font-size: 12px;
  }
  .hc-popup-heading h5 {
    font-size: 18px;
  }
}

.code-select {
  width: 95px;
  flex: 0 0 100px !important;
  background: #f8fbff;
  border-radius: 16px;
  font-size: 12px;
  /* font-weight: 600; */
}

/* 07.08 */
.hc-check-item {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}
 
.hc-check-item i {
  flex-shrink: 0;
}


.hc-phone-group {
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

.hc-phone-control {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 74px;
    border: 1px solid #dbe7f3;
    border-radius: 20px;
    overflow: hidden;
    background: #f8fbff;
}

.hc-phone-control .wpcf7-form-control-wrap {
    display: block;
    margin: 0;
}

.hc-phone-control .wpcf7-form-control-wrap[data-name="app_country_code"] {
    width: 125px;
    flex: 0 0 125px;
}

.hc-phone-control .wpcf7-form-control-wrap[data-name="app_phone"] {
    flex: 1;
}

.hc-phone-control .hc-country-code {
    width: 100%;
    height: 74px;
    border: 0 !important;
    border-right: 1px solid #dbe7f3 !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    padding: 0 18px 0 28px;
    font-size: 16px;
    color: #1f2d3d;
    box-shadow: none !important;
}

.hc-phone-control .form-control {
    width: 100%;
    height: 74px;
    border: 0 !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    padding: 0 24px;
    font-size: 16px;
    color: #1f2d3d;
    box-shadow: none !important;
}

.hc-phone-control .form-control::placeholder {
    color: #4b5d70;
}

.hc-phone-control select:focus,
.hc-phone-control input:focus {
    outline: none !important;
    box-shadow: none !important;
}
.hc-phone-control p {
    margin: 0 !important;
    display: contents;
}

.hc-phone-control br {
    display: none;
}

.input-group.contact-country {
    flex-wrap: nowrap !important;
}
.wpcf7 form .wpcf7-response-output {
	margin: 10px;
}

/* CF7 validation message */
.input-group:has(#countryCode) .wpcf7-not-valid-tip {
    position: absolute;
    left: -44%;
    bottom: -26px;
    min-width: 200px;
    font-size: 16px;
    line-height: 1.2;
    color: #dc3232;
    margin: 0 !important;
    padding: 0 !important;
}
.hc-phone-group .wpcf7-not-valid-tip {
    position: absolute;
    left: -30%;
    bottom: -25px;
    min-width: 200px;
    font-size: 16px;
    line-height: 1.2;
    color: #dc3232;
    margin: 0 !important;
    padding: 0 !important;
}
/* .input-group:has(#countryCode) {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    width: 100%;
    border: 1px solid #dbe7f3;
    border-radius: 20px;
    overflow: hidden;
    background: #f8fbff;
}

.input-group:has(#countryCode) .wpcf7-form-control-wrap {
    margin: 0 !important;
    float: none !important;
    display: block !important;
}

.input-group:has(#countryCode) .wpcf7-form-control-wrap[data-name="app_country_code"] {
    flex: 0 0 125px;
    width: 125px;
}

.input-group:has(#countryCode) .wpcf7-form-control-wrap[data-name="contact_phone"],
.input-group:has(#countryCode) .wpcf7-form-control-wrap[data-name="app_phone"] {
    flex: 1;
    width: auto;
}

.input-group:has(#countryCode) .hc-country-code {
    width: 100%;
    height: 74px;
    border: 0 !important;
    border-right: 1px solid #dbe7f3 !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 0 18px 0 28px;
    box-shadow: none !important;
}

.input-group:has(#countryCode) input[type="tel"] {
    width: 100%;
    height: 74px;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 0 24px;
    box-shadow: none !important;
}

.input-group:has(#countryCode) select:focus,
.input-group:has(#countryCode) input:focus {
    outline: none !important;
    box-shadow: none !important;
}

.input-group:has(#countryCode) br {
    display: none !important;
} */


.hc-input-group {
    position: relative;
    --hc-input-height: 58px; /* match your input height */
}
.hc-input-group > i {
    position: absolute;
    left: 18px;
    top: calc(var(--hc-input-height) / 2);
    transform: translateY(-50%);
    color: #b0b7c3;
    font-size: 15px;
    transition: 0.3s;
    z-index: 2;
    pointer-events: none;
}
.hc-input-group .wpcf7-not-valid-tip {
    margin-top: 6px;
    padding-left: 0;
    color: #dc3232;
    font-size: 12px;
    display: block;
}