:root {
  --navy: #0b2e63;
  --navy: #001B48;
  --blue: #1c4f9c;
  --orange: #EE6608;
  --orange-hover: #e66a00;
  --white: #ffffff;
  --light: #f7f9fc;
  --border: #0b2e63;
  --text: #ffffff
  --heading: #172b4d;
  --green: #2e7d32;
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    Segoe UI,
    Outfit,
    Sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
  color: #fff;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.topbar {
  background: #0b2e63;
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 0;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.logo {
  width: 150px;
  height: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.company-name {
  font-size: 28px;
  font-weight: 700;
  color: #003366;
}

.brand-text small {
  font-size: 12px;
  color: #666;
}

/* Dropdown Menu */
.navlinks {
  display: flex;
  align-items: center;
  gap: 25px;
}

.dropdown {
  position: relative;
}

.dropbtn {
  text-decoration: none;
  color: inherit;
  color: #fff;
  display: inline-block;
  padding: 8px 0;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
  display: none;
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 12px 18px;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.dropdown-content a:hover {
  background: #f5f5f5;
  color: #0056d6;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.navlinks a:hover {
  color: var(--orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 800;
  border: 2px solid transparent;
  transition: 0.2s;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-hover);
}

.btn-outline {
  border-color: #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--navy);
}

.btn-light {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-light:hover {
  background: var(--navy);
  color: #fff;
}

/* ============== Page Hero Section ============== */
.hero {
  background: linear-gradient(90deg, rgba(11, 46, 99, 0.98), rgba(11, 46, 99, 0.88), rgba(11, 46, 99, 0.35)),
    radial-gradient(circle at 80% 30%, #d5e7f2 0 15%, #a9c7d9 16% 30%, #7fa7bf 31% 45%, #53788e 46% 100%);
  color: #fff;
  padding: 90px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.09;
  margin: 0 0 30px;
  font-weight: 800;
}

.hero h1 .accent {
  color: var(--orange);
}

.hero p {
  font-size: 18px;
  max-width: 600px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 30px;
  border-radius: 18px;
}

.hero-card li {
  margin: 10px 0;
}
/* ============== Page Hero Section ============== */

/* ============== New Hero Section ============== */
.hero {
  position: relative;
  overflow: hidden;
  background: #113a7b;
  padding: 70px 0;
}

/* Grid Background */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg,
      rgba(255, 255, 255, .05) 1px,
      transparent 1px);
  background-size: 48px 48px;
  opacity: .7;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 500px;
  align-items: center;
  gap: 90px;
}

/* ============== Left Content ============== */
.hero-content .eyebrow {
  display: inline-block;
  color: #ff8c24;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: 60px;
  line-height: 1;
  color: #fff;
  font-weight: 800;
  margin-bottom: 25px;
}

.hero-content h1 span {
  color: #ff8c24;
}

.hero-content p {
  color: rgba(255, 255, 255, .85);
  font-size: 24px;
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 40px;
}

/* ============== Buttons ============== */
.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  transition: .35s;
}

.btn-primary {
  background: #ff8c24;
  color: #fff;
  padding: 16px 34px;
}

.btn-primary:hover {
  background: #ff9d43;
  transform: translateY(-3px);
}

.btn-outline {
  color: #ffffff;
  border: 2px solid rgba(6, 35, 86, 0.35);
  padding: 16px 34px;
}

.btn-outline:hover {
  background: #ff8c24;
  color: #0b2e63;
}

/*============== Right Card ============== */
.hero-card {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .20);
}

.hero-card h3 {
  color: #fff;
  font-size: 34px;
  margin-bottom: 0px;
}

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

.hero-list li {
  position: relative;
  color: #fff;
  font-size: 18px;
  margin-bottom: 0px;
  padding-left: 42px;
}

/* Orange Check Circle */
.hero-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ff8c24;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

/* Responsive */
@media(max-width:992px) {

  .hero {
    padding: 80px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content p {
    margin: auto auto 35px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-card {
    max-width: 600px;
    margin: auto;
  }

  .hero-content h1 {
    font-size: 56px;
  }
}

@media(max-width:576px) {
  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-card {
    padding: 30px;
  }

  .hero-card h3 {
    font-size: 26px;
  }
}
/* ============== Page Hero Section ============== */

/* ============== Page Hero Section ============== */
.page-hero {
  padding: 80px 0;
  background: #f8fbff;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 60px;
}

.page-hero-content h1 {
  font-size: 52px;
  color: #ffffff;
  margin: 15px 0 20px;
}

.page-hero-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 30px;
}

.page-hero-image {
  text-align: right;
}

.page-hero-image img {
  width: 200%;
  max-width: 700px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

/* Responsive */
@media (max-width:992px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-hero-image {
    text-align: center;
    margin-top: 40px;
  }
}
/* ============== Page Hero Section ============== */

/* ============== Service Toggle ==============*/
.service-tabs {
  background: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #e5eaf3;
}

.service-tabs .container {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.tab-btn {
  background: #fff;
  color: #0b2e63;
  border: 2px solid #0b2e63;
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Hover Effect */
.tab-btn:hover {
  background: #ff8c1a;
  border-color: #ff8c1a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 140, 26, 0.25);
}

/* Active Button */
.tab-btn.active {
  background: #f58220;
  border-color: #0b2e63;
  color: #fff;
  box-shadow: 0 8px 20px rgba(11, 46, 99, 0.25);
}

/* Tab Content */
.tab-content {
  display: none;
  animation: fadeIn .35s ease;
}

.tab-content.active {
  display: block;
}

/* Fade Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ============== Service Toggle ==============*/

/* ============== Trust Strip ============== */
.trust-strip {
  background: #0b2e63;
  /*padding: 24px 0;*/
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.trust-item {
  padding: 12px 20px;
}

.trust-item h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.trust-item p {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.trust-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

/* Mobile */
@media (max-width:768px) {

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .trust-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

}
/* ============== Trust Strip ============== */

/* ============== Service Cards ============== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px 30px;
  border: 1px solid #e6edf5;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

/* Top Accent Line */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #EE6608;
  transition: .35s ease;
}

/* Icon */
.card .icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #0b2e63;
  background: #d8e2f6;
  border-radius: 20%;
  margin-bottom: 20px;
  transition: .35s ease;
}

/* Title */
.card h3 {
  margin-bottom: 15px;
  color: #f58220
  transition: .3s;
}

/* Paragraph */
.card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Learn More Link */
.card .eyebrow {
  color: #0b2e63;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

/* Hover Effects */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(11, 46, 99, .18);
  border-color: #0b2e63;
}

.card:hover::before {
  width: 100%;
}

.card:hover .icon {
  /* background: #0b2e63;*/
  color: #ffffff;
  /* transform: rotate(8deg) scale(1.08);*/
}

.card:hover h3 {
  color: #e66a00;
}

.card:hover .eyebrow {
  color: #e66a00;
  letter-spacing: .5px;
}

.icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef3fb;
  border-radius: 16px;
}

.icon img {
  width: 80px;
  /* Adjust as needed */
  height: 80px;
  object-fit: contain;
  display: block;
}

/* Responsive */
@media (max-width:992px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
.section {
  padding: 75px 0;
}

.section.light {
  background: var(--light);
}

.section.navy {
  background: var(--navy);
  color: #0b2e63;
}

.section-title {
  text-align: center;
  /*max-width: 820px;*/
  margin: 0 auto 42px;
}

.section-title h2 {
  font-size: 40px;
  line-height: 1.2;
  color: var(--heading);
  margin: 0 0 12px;
}

.section.navy .section-title h2 {
  color: #fff;
}

.eyebrow {
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.card {
  background: #f3f6fb;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.card h3 {
  color: var(--heading);
  margin-top: 8px;
  line-height: 1.25;
}

.icon {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  background: #eef4fb;
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 25px;
  font-weight: 800;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

/* ============== Why JITMED Cards ============== */
.section.navy .card {
  padding: 22px 20px;
  border-radius: 10px;
  min-height: 250px;
  /* Adjust to 220px–260px as needed */
}

/* Smaller icon */
.section.navy .card .icon {
  width: 55px;
  height: 55px;
  margin-bottom: 15px;
}

.section.navy .card .icon img {
  width: 30px;
  height: 30px;
}

/* Heading */
.section.navy .card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.3;
}

/* Paragraph */
.section.navy .card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* Reduce section spacing */
.section.navy {
  padding: 70px 0;
}

.section.navy .card {
  padding: 18px;
  min-height: 220px;
}

.section.navy .card .icon {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
}

.section.navy .card .icon img {
  width: 65px;
  height: 65px;
}

.section.navy .card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.section.navy .card p {
  font-size: 14px;
  line-height: 1.5;
}

/* ============== Why JITMED Cards Section ============== */
.visual {
  min-height: 320px;
  border-radius: 20px;
  background: linear-gradient(135deg, #dfeef6, #adc7d7 48%, #0b2e63 49%, #1c4f9c);
  box-shadow: var(--shadow);
}

.checks {
  list-style: none;
  padding: 0;
}

.checks li {
  margin: 12px 0;
  padding-left: 28px;
  position: relative;
}

.checks li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.step {
  text-align: center;
  padding: 18px 10px;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eef4fb;
  color: var(--navy);
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  font-weight: 900;
}

.success {
  background: linear-gradient(90deg, #0b2e63, #123c79);
  color: #fff;
  border-radius: 18px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
  align-items: center;
}

.success .visual {
  min-height: 220px;
}
/* ============== Why JITMED Cards Section ============== */

/* ============== JITMED DIFFERENCE ============== */
.difference-section {
  background: #f5f8fc;
  padding: 100px 0;
}

.difference-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left Side */
.difference-content .eyebrow {
  color: #ff8b2b;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
}

.difference-content h2 {
  margin: 15px 0 25px;
  font-size: 40px;
  color: #0b2e63;
  line-height: 1.2;
}

.difference-content p {
  color: #596b85;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 650px;
}

/* Check List */
.checks {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.checks li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 15px;
  font-size: 15px;
  color: #173a72;
  line-height: 1.5;
}

.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border: 2px solid #ff8b2b;
  border-radius: 50%;
  color: #ff8b2b;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Button */
.difference-content .btn {
  margin-top: 10px;
  padding: 16px 34px;
}

/* Image */
.difference-image {
  position: relative;
}

.difference-image img {
  width: 100%;
  display: block;
  border-radius: 22px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
}

/* Floating Card */
.floating-card {
  position: absolute;
  /* left: -75px; */
  right: -75px;
  bottom: 65px;
  background: #fff;
  border-radius: 8px;
  padding: 1px 10px;
  box-shadow: 10px 20px 40px rgba(0, 0, 0, .50);
  transition: .35s;
}

.floating-card h3 {
  text-align: center;
  font-size: 20px;
  color: #0b2e63;
  margin: 0;
}

.floating-card p {
  margin: 5px 0 0;
  color: #6b7d95;
  font-size: 12px;
}

/* Hover */
.floating-card:hover {
  transform: translateY(-8px);
}

.difference-image img {
  transition: .4s;
}

.difference-image:hover img {
  transform: scale(1.02);
}

/* Responsive */
@media (max-width:992px) {

  .difference-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .difference-image {
    order: -1;
  }

  .floating-card {
    left: 20px;
    bottom: 20px;
  }
}

@media (max-width:768px) {

  .difference-content h2 {
    font-size: 38px;
  }

  .difference-content p {
    font-size: 17px;
  }

  .checks li {
    font-size: 16px;
  }

  .floating-card h3 {
    font-size: 40px;
  }
}
/*============== JITMED DIFFERENCE ==============*/

/*============== SECURITY & COMPLIANCE ==============*/
.security-section {
  background: #0b2e63;
  padding: 100px 0;
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left */
.security-content .eyebrow {
  color: #ff8b2b;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 700;
}

.security-content h3 {
  color: #fff;
  font-size: 40px;
  line-height: 1.2;
  margin: 18px 0 30px;
}

.security-content p {
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.5;
  max-width: 650px;
}

/* Right Grid */
.security-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Individual Card */
.security-card {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  padding: 38px 30px;
  text-align: center;
  transition: .35s;
}

/* Icon */
.security-card .icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.security-card .icon img {
  width: 34px;
}

/* Title */
.security-card h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

/* Description */
.security-card p {
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
}

/* Hover */
.security-card:hover {
  background: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.security-card:hover h3 {
  color: #0b2e63;
}

.security-card:hover p {
  color: #5d708d;
}

.security-card:hover .icon {
  transform: scale(1.12);
}

.security-card .icon {
  transition: .35s;
}

/* Responsive */
@media(max-width:992px) {

  .security-grid {
    grid-template-columns: 1fr;
  }

  .security-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:768px) {

  .security-cards {
    grid-template-columns: 1fr;
  }

  .security-content h2 {
    font-size: 38px;
  }

  .security-content p {
    font-size: 18px;
  }
}
/*============== SECURITY & COMPLIANCE ==============*/

/*============== PARTNER SUCCESS STORY ==============*/
.partner-story {
  padding: 100px 0;
  background: #ffffff;
}

.partner-story .section-title {
  text-align: left;
  margin-bottom: 35px;
}

.partner-story .eyebrow {
  color: #ff7a1a;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}

/* Card */
.story-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 24px;
  background: #f4f7fc;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

/* Left */
.story-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-content h3 {
  font-size: 22px;
  color: #0b2e63;
  margin-bottom: 6px;
  line-height: 1.2;
}

.story-content p {
  color: #66758c;
  line-height: 1.5;
  font-size: 16px;
  margin-bottom: 6px;
}

.story-content strong {
  color: #0b2e63;
}

/* Link */
.story-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  text-decoration: none;
  color: #ff7a1a;
  font-weight: 700;
  font-size: 18px;
  transition: .35s;
}

.story-link span {
  transition: .35s;
}

.story-link:hover {
  color: #0b2e63;
}

.story-link:hover span {
  transform: translateX(6px);
}

/* Image */
.story-image {
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .5s;
}

.story-card:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media(max-width:992px) {

  .story-card {
    grid-template-columns: 1fr;
  }

  .story-image {
    order: -1;
  }

  .story-content {
    padding: 45px;
  }

  .story-content h2 {
    font-size: 36px;
  }

  .story-content p {
    font-size: 17px;
  }
}

@media(max-width:768px) {

  .story-content {
    padding: 35px 28px;
  }

  .story-content h2 {
    font-size: 30px;
  }
}
/*============== PARTNER SUCCESS STORY ==============*/

/*============== WHY JITMED AT A GLANCE ==============*/
.glance-section {
  background: #f7f8f9;
  padding: 90px 0;
}

.glance-section .section-title {
  text-align: center;
  margin-bottom: 55px;
}

.glance-section .eyebrow {
  color: #ff8b22;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.glance-section h3 {
  color: #0b2e63;
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}

/* Grid */
.glance-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
}

/* Card */
.glance-card {
  background: #fff;
  border: 1px solid #dfe5ee;
  border-radius: 18px;
  padding: 32px 18px;
  text-align: center;
  transition: .35s ease;
  cursor: pointer;
  position: relative;
}

.glance-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: #ff8b22;
  transition: .35s;
  border-radius: 18px 18px 0 0;
}

/* Hover */
.glance-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 18px 45px rgba(255, 140, 34, .20);
  border-color: #ff8b22;
}

.glance-card:hover::before {
  width: 100%;
}

/* Icon */
.glance-icon {
  width: 30px;
  height: 30px;
  background: #eef3fb;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: .35s;
}

.glance-card:hover .glance-icon {
  background: #ff8b22;
  /* transform: rotate(-8deg) scale(1.08); */
}

.glance-icon img {
  width: 35px;
  transition: .35s;
}

.glance-card:hover .glance-icon img {
  filter: brightness(0) invert(1);
}

/* Heading */
.glance-card h4 {
  color: #0b2e63;
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
  font-weight: 700;
  transition: .3s;
}

.glance-card:hover h4 {
  color: #ff8b22;
}

/* Responsive */
@media(max-width:1400px) {

  .glance-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media(max-width:992px) {

  .glance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .glance-section h3 {
    font-size: 36px;
  }
}

@media(max-width:576px) {

  .glance-grid {
    grid-template-columns: 1fr;
  }

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

  .glance-section h3 {
    font-size: 30px;
  }
}
/* ============== WHY JITMED AT A GLANCE ============== */

/* ============== WHY PARTNER WITH JITMED ============== */
.partner-advantage {
  padding: 90px 0;
  background: #fff;
}

.partner-advantage .section-title {
  text-align: center;
  margin-bottom: 65px;
}

.partner-advantage .eyebrow {
  color: #ff8a1f;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
}

.partner-advantage h3 {
  margin-top: 12px;
  font-size: 16px;
  color: #0b2e63;
  font-weight: 700;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 35px;
  align-items: start;

}

.advantage-card {
  text-align: center;
  transition: .35s ease;
  padding: 8px;

}

/* Card Hover */
.advantage-card:hover {
  transform: translateY(-10px);
}

.advantage-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  background: #f2f5fb;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .35s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
}

/* Icon */
.advantage-icon img {
  width: 50px;
  transition: .35s;
}

.advantage-card h3 {
  font-size: 10 px;
  color: #0b2e63;
  margin-bottom: 10px;
  font-weight: 700;
}

.advantage-card p {
  color: #667085;
  font-size: 15px;
  line-height: 1.75;
}

.advantage-card:hover .advantage-icon {
  background: #ff8a1f;
  /* transform: rotate(-5deg) scale(1.08);*/
  box-shadow: 0 15px 35px rgba(255, 138, 31, .35);
}

.advantage-card:hover .advantage-icon img {
  transform: scale(1.15) rotate(5deg);
  filter: brightness(0) invert(1);
}

.advantage-card:hover h3 {
  color: #ff8a1f;
}

@media(max-width:1200px) {

  .advantage-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:768px) {

  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media(max-width:576px) {

  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .partner-advantage h2 {
    font-size: 34px;
  }
}
/* ============== WHY PARTNER WITH JITMED ============== */

/* ============== Partnership Models ============== */
.partnership-section {
  padding: 70px 0;
  background: #f6f8fc;
}

.section-title.left {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .eyebrow {
  text-align: center;
  color: #ff8a1f;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
}

.section-title h2 {
  font-size: 30px;
  text-align: center;
  color: #0b2e63;
  margin-top: 8px;
  font-weight: 700;
}

/* Grid */
.partnership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Card */
.partner-card {
  background: #fff;
  border: 1px solid #d9e1ec;
  border-radius: 22px;
  padding: 34px 36px;
  transition: .35s ease;
  position: relative;
}

/* Dark Border Cards */
.partner-card.active {
  border: 3px solid #0b2e63;
}

/* Hover Effect */
.partner-card:hover {
  transform: translateY(-8px);
  border-color: #ff8a1f;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

/* Heading */
.partner-title {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ff8a1f;
  border-radius: 50%;
  margin-right: 14px;
  flex-shrink: 0;
}

.partner-title h3 {
  font-size: 18px;
  color: #0b2e63;
  font-weight: 700;
  margin: 0;
}

.partner-card p {
  color: #667085;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 28px;
}

/* List */
.partner-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.partner-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 13px;
  color: #1d2939;
  font-size: 13px;
  line-height: 0.8;
}

/* Orange Check */
.partner-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  border: 2px solid #ff8a1f;
  border-radius: 50%;
  color: #ff8a1f;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Hover Animation */
.partner-card:hover .partner-title h3 {
  color: #ff8a1f;
}

.partner-card:hover .dot {
  transform: scale(1.35);
}

.partner-card:hover .partner-list li::before {
  background: #ff8a1f;
  color: #fff;
}

/* Responsive */
@media(max-width:992px) {

  .partnership-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .partner-title h3 {
    font-size: 28px;
  }
}

@media(max-width:768px) {

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

  .partner-card {
    padding: 28px;
  }

  .partner-card p {
    font-size: 16px;
  }

  .partner-list li {
    font-size: 15px;
  }
}
/* ============== Partnership Models ============== */

/* ============== Leadership ============== */
.team-section {
  padding: 90px 0;
  text-align: center;
  background: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.team-card {
  background: #fff;
  border: 1px solid #e4e8ef;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: .4s;
}

.team-card img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
  transition: .5s;
}

.team-info {
  padding: 22px;
}

.team-info h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #0b2e63;
}

.team-info span {
  color: #ff8b24;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}

.team-info p {
  color: #666;
  line-height: 1.5;
  font-size: 13px;
}

/* Hover */
.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .15);
}

.team-card:hover img {
  transform: scale(1.08);
}

/* ============== Popup ============== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 55, .55);
  backdrop-filter: blur(7px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: .35s;
  z-index: 999;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-card {
  width: 850px;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  animation: popup .35s;
  position: relative;
}

@keyframes popup {

  from {
    transform: translateY(30px) scale(.95);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

.popup-header {
  display: flex;
  background: #0b2e63;
  color: #fff;
}

.popup-header img {
  width: 180px;
  height: 180px;
  object-fit: cover;
}

.popup-header div {
  padding: 35px;
}

.popup-header h2 {
  font-size: 36px;
  margin-bottom: 8px;
}

.popup-header h4 {
  color: #ff8b24;
}

.popup-body {
  padding: 35px;
}

.popup-body p {
  line-height: 2;
  color: #555;
  margin-bottom: 35px;
}

.popup-body h5 {
  color: #ff8b24;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.expertise span {
  padding: 10px 20px;
  border: 1px solid #cfd8ea;
  border-radius: 40px;
  font-size: 14px;
  background: #f7f9fc;
  transition: .3s;
}

.expertise span:hover {
  background: #ff8b24;
  color: #fff;
  border-color: #ff8b24;
}

.popup-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* Responsive */
@media(max-width:992px) {

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .popup-card {
    width: 95%;
  }
}

@media(max-width:768px) {

  .team-grid {
    grid-template-columns: 1fr;
  }

  .popup-header {
    flex-direction: column;
  }

  .popup-header img {
    width: 100%;
    height: 280px;
  }
}
/* ============== Leadership ============== */

/* ============== Our Story Leadership Team Image Section ============== */

/* .leadership-story {
  padding: 90px 0;
  background: #f5f7fc;
}

.story-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .10);
  margin-bottom: 55px;
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: .5s ease;
}

.story-image:hover img {
  transform: scale(1.03);
}

.story-content {
  max-width: 2500px;
  margin: auto;
  text-align: left;
}

.story-content .eyebrow {
  display: inline-block;
  color: #ff7a1a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.story-content h2 {
  font-size: 52px;
  color: #0b2e63;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: 700;
}

.story-content p {
  font-size: 20px;
  line-height: 1.9;
  color: #f2f5f8;
  margin-bottom: 22px;
}

/* Responsive */
/* @media(max-width:991px) {

  .story-content h2 {
    font-size: 40px;
  }

  .story-content p {
    font-size: 18px;
  }

  .story-image {
    margin-bottom: 40px;
  }
}

@media(max-width:576px) {

  .leadership-story {
    padding: 70px 0;
  }

  .story-content h2 {
    font-size: 32px;
  }

  .story-content p {
    font-size: 16px;
  }
}
/* ============== Our Story Leadership Team Image Section ============== */

/* ============== Leadership Philosophy ============== */
.leadership-philosophy {
  background: #f5f8fc;
  padding: 90px 0;
}

.leadership-philosophy .section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.leadership-philosophy .eyebrow {
  color: #ff7f22;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}

.leadership-philosophy h2 {
  color: #12356b;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 18px;
}

.leadership-philosophy .section-title p {
  color: #68768d;
  font-size: 20px;
  line-height: 1.7;
}

/* ============== */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ============== */
.philosophy-card {
  background: #fff;
  border: 1px solid #dde6f1;
  border-radius: 18px;
  padding: 40px;
  position: relative;
  transition: .35s ease;
  overflow: hidden;
}

/* Orange vertical line */
.accent-bar {
  width: 6px;
  height: 28px;
  background: #ff7f22;
  border-radius: 20px;
  display: block;
  margin-bottom: 28px;
}

.philosophy-card h3 {
  color: #12356b;
  font-size: 28px;
  margin-bottom: 18px;
  font-weight: 700;
}

.philosophy-card p {
  color: #6c778d;
  line-height: 1.9;
  font-size: 17px;
}

/* ============== Hover Effect ============== */
.philosophy-card:hover {
  transform: translateY(-10px);
  border-color: #ff7f22;
  box-shadow: 0 18px 40px rgba(18, 53, 107, .12);
}

.philosophy-card:hover .accent-bar {
  height: 40px;
  transition: .35s;
}

.philosophy-card:hover h3 {
  color: #ff7f22;
}

/* Soft orange glow */
.philosophy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #ff7f22;
  transition: .35s;
}

.philosophy-card:hover::before {
  width: 100%;
}

/* Responsive */
@media(max-width:992px) {

  .philosophy-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:768px) {

  .leadership-philosophy {
    padding: 70px 0;
  }

  .leadership-philosophy h2 {
    font-size: 34px;
  }

  .leadership-philosophy .section-title p {
    font-size: 17px;
  }

  .philosophy-card {
    padding: 30px;
  }

  .philosophy-card h3 {
    font-size: 24px;
  }
}
/*============== Leadership Philosophy ==============*/

/*============== Our Process Timeline ==============*/
.process-section {
  background: #fff;
  padding: 90px 0;
}

.process-title {
  margin-bottom: 60px;
}

.process-title .eyebrow {
  color: #ff8c1a;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}

.process-title h2 {
  font-size: 42px;
  color: #0b2e63;
  margin: 0;
}

.process-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.timeline-line {
  position: absolute;
  top: 25px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: #f2c18c;
  z-index: 0;
}

.step {
  width: 16.66%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-num {
  width: 48px;
  height: 48px;
  margin: auto;
  margin-bottom: 18px;
  background: #0b2e63;
  color: #fff;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: 700;
  transition: .35s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.step h4 {
  font-size: 13px;
  color: #0b2e63;
  font-weight: 600;
  line-height: 1.5;
}

/* Hover */
.step:hover .step-num {
  background: #ff8c1a;
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 18px 35px rgba(255, 140, 26, .35);
}

.step:hover h4 {
  color: #ff8c1a;
}

/* Beautiful sequential animation */
.step:nth-child(2) {
  transition-delay: .05s;
}

.step:nth-child(3) {
  transition-delay: .10s;
}

.step:nth-child(4) {
  transition-delay: .15s;
}

.step:nth-child(5) {
  transition-delay: .20s;
}

.step:nth-child(6) {
  transition-delay: .25s;
}

.step:nth-child(7) {
  transition-delay: .30s;
}

.step:hover {
  transform: translateY(-5px);
}

/* Responsive */
@media(max-width:991px) {

  .process-timeline {
    flex-wrap: wrap;
    gap: 40px;
  }

  .timeline-line {
    display: none;
  }

  .step {
    width: 48%;
  }
}

@media(max-width:768px) {

  .step {
    width: 100%;
  }

  .process-title h2 {
    font-size: 34px;
  }
}
/* ============== Our Process Timeline ============== */

/* ============== Success Story Section ============== */
.success-section {
  background: #0b2e63;
  padding: 90px 0;
}

.success-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 70px;
}

.success-content {
  color: #fff;
}

.success-content .eyebrow {
  color: #ff8b2b;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.success-content h2 {
  margin: 15px 0 20px;
  font-size: 42px;
  line-height: 1.2;
  color: #fff;
}

.success-content p {
  color: rgba(255, 255, 255, .82);
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 560px;
}

/* Statistics */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 35px;
}

.stat-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 24px;
  transition: .35s;
  cursor: pointer;
}

.stat-card h3 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 8px;
}

.stat-card span {
  color: #b8c9e8;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hover Effect */
.stat-card:hover {
  background: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.stat-card:hover h3 {
  color: #ff8b2b;
}

.stat-card:hover span {
  color: #173a72;
}

/* CTA */
.success-link {
  color: #ff8b2b;
  font-weight: 700;
  text-decoration: none;
  transition: .3s;
}

.success-link:hover {
  letter-spacing: 1px;
  color: #fff;
}

/* Image */
.success-image img {
  width: 100%;
  display: block;
  border-radius: 4px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
  transition: .4s;
}

.success-image img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media(max-width:992px) {

  .success-grid {
    grid-template-columns: 1fr;
  }

  .success-content {
    order: 2;
  }

  .success-image {
    order: 1;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:600px) {

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .success-content h2 {
    font-size: 34px;
  }
}
/* ============== Success Story Section ============== */



/* FAQ`s Sections */
/* ============== FAQ Section ============== */
.faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
  margin-top: 40px;
}

/* FAQ Card */
.faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: all .3s ease;
}

.faq-item:hover {
  border-color: #0b2e63;
  box-shadow: 0 10px 25px rgba(11, 46, 99, .08);
}

/* Question */
.faq-q {
  width: 100%;
  padding: 18px 20px;
  background: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: #0b2e63;
  transition: .3s;
}

.faq-q:hover {
  background: #f7faff;
}

/* Plus Icon */
.faq-q span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0b2e63;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: .3s;
}

.faq-item.active .faq-q span {
  transform: rotate(45deg);
  background: #ff8c00;
}

/* Answer */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  background: #fff;
}

.faq-a p {
  padding: 0 20px 20px;
  margin: 0;
  color: #555;
  line-height: 1.7;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  background: #fff;
}

.faq-a p {
  padding: 0 20px 20px;
  margin: 0;
  line-height: 1.7;
  color: #555;
}

/* Plus Icon */
.faq-q span {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b2e63;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  transition: .3s ease;
}

/* When Open */
.faq-item.active .faq-q span {
  transform: rotate(45deg);
  background: #ff8c00;
}

/* Mobile */
@media (max-width:992px) {
  .faq {
    grid-template-columns: 1fr;
  }
}
/* FAQ`s Sections */
/* ============== FAQ Section ============== */


/* Industries Grid */
/* ============== Industries Grid Section ============== */

/* First Row */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* Second Row */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 850px;
  margin: 30px auto 0;
}

/* Responsive */
@media (max-width:992px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
}

@media (max-width:768px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
/* Industries Grid */
/* ============== Industries Grid Section ============== */


/* ============== Call To Action CTA Section ============== */
.cta {
  background: #f3f6fb;
  color: #0b2e63;
  padding: 42px 0;
}

.cta-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer {
  background: #0b2e63;
  color: #d8e2f2;
  padding: 50px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 34px;
}

.footer h4 {
  color: #fff;
  margin-top: 0;
}

.footer a {
  display: block;
  margin: 7px 0;
}

.footer a:hover {
  color: var(--orange);
}

.copy {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 30px;
  padding-top: 18px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.breadcrumb {
  font-size: 14px;
  padding: 14px 0;
  color: #6b7280;
}

.page-hero {
  background: linear-gradient(90deg, #0b2e63, #1c4f9c);
  color: #fff;
  padding: 64px 0;
}

.page-hero h1 {
  font-size: 52px;
  margin: 0;
}

.page-hero p {
  max-width: 760px;
  font-size: 18px;
}

.badges {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.badge {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  color: var(--heading);
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
}

textarea {
  min-height: 150px;
}

@media (max-width: 900px) {
  .navlinks {
    display: none;
  }

  .hero-grid,
  .feature-row,
  .success,
  .footer-grid,
  .grid-3,
  .grid-4,
  .grid-6,
  .process,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .cta-wrap,
  .copy {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 60px 0;
  }

  .section {
    padding: 62px 0;
  }

  .page-hero h1 {
    font-size: 40px;
  }
}
/* ============== Footer ============== */

/* ==============Global Presence Page CSS ============== */
/* ==============Our Global Footprint ============== */
.global-footprint {
  padding: 100px 0;
  background: #fff;
}

.global-footprint .section-title {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.global-footprint .eyebrow {
  color: #ff7f22;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
}

.global-footprint h2 {
  font-size: 35px;
  color: #143b74;
  margin-bottom: 20px;
  font-weight: 700;
}

.global-footprint .section-title p {
  color: #6f7c91;
  font-size: 16px;
  line-height: 1.5;
}

/* ============== */
.footprint-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

/* ============== */
.footprint-card {
  border-radius: 22px;
  padding: 40px;
  transition: .4s;
  position: relative;
}

.usa-card {
  border: 2px solid #173a72;
  background: #fff;
}

.india-card {
  background: #f4f7fc;
  border: 1px solid #dce5f2;
}

/* ============== */
.card-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.country-icon {
  width: 58px;
  height: 58px;
  background: #f4f7fc;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #173a72;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.country {
  color: #ff7f22;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
}

.card-head h3 {
  color: #143b74;
  margin-top: 6px;
  font-size: 22px;
  font-weight: 700;
}

.card-text {
  color: #69788f;
  line-height: 1.9;
  font-size: 17px;
  margin-bottom: 28px;
}

/* ============== */
.footprint-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footprint-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  font-size: 17px;
  color: #143b74;
}

.footprint-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff7f22;
  font-size: 24px;
}

/* ========= Hover Effect ========= */
.footprint-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(20, 59, 116, .12);
}

.footprint-card:hover .country-icon {
  background: #f4f7fc;
  color: #fff;
  /*transform: rotate(-8deg) scale(1.08);*/
  transition: .35s;
}

.footprint-card:hover h3 {
  color: #ff7f22;
}

.footprint-card:hover {
  border-color: #ff7f22;
}

/* ============== */
@media(max-width:991px) {

  .footprint-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:768px) {

  .global-footprint {
    padding: 70px 0;
  }

  .global-footprint h2 {
    font-size: 36px;
  }

  .card-head h3 {
    font-size: 28px;
  }

  .footprint-card {
    padding: 30px;
  }
}
/* ============== Our Global Footprint ============== */
/* ============== Global Model ============== */

.global-model-section {
  background: #f5f7fc;
  padding: 90px 0;
}

.global-model-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.global-model-section .eyebrow {
  display: block;
  color: #ff7f22;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.global-model-section h2 {
  font-size: 35px;
  color: #0b2e63;
  font-weight: 700;
  margin: 0;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.model-card {
  background: #fff;
  border: 1px solid #dfe5ef;
  border-radius: 18px;
  padding: 10px 32px;
  text-align: center;
  transition: .35s ease;
  position: relative;
  overflow: hidden;
}

/* Orange Top Border */
.model-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: #ff7f22;
  transform: scaleX(0);
  transition: .35s;
}

.model-icon {
  width: 70px;
  height: 70px;
  margin: auto auto 28px;
  border-radius: 16px;
  background: #edf3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .35s;
}

.model-icon i {
  color: #0b2e63;
  font-size: 30px;
  transition: .35s;
}

.model-card h3 {
  color: #0b2e63;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
  transition: .3s;
}

.model-card p {
  color: #596b86;
  line-height: 1.5;
  font-size: 15px;
}

/* ============== Hover Effect ============== */

.model-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(255, 127, 34, .18);
  border-color: #ff7f22;
}

.model-card:hover::before {
  transform: scaleX(1);
}

.model-card:hover h3 {
  color: #ff7f22;
}

.model-card:hover .model-icon {
  background: #ff7f22;
  /* transform: rotate(-8deg) scale(1.08);*/
}

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

/* Responsive */
@media(max-width:1100px) {

  .model-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:768px) {

  .model-grid {
    grid-template-columns: 1fr;
  }

  .global-model-section h2 {
    font-size: 34px;
  }

  .model-card {
    padding: 35px 25px;
  }
}
/* ============== Global Model ============== */

/* ============== Why It Matters ============== */
.why-matters-section {
  padding: 100px 0;
  background: #fff;
}

.why-matters-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.why-image img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

/* CONTENT */
.why-content .eyebrow {
  color: #ff7f22;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.why-content h2 {
  font-size: 35px;
  color: #0b2e63;
  line-height: 1.2;
  margin-bottom: 28px;
  font-weight: 700;
}

.why-content p {
  color: #66758e;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 28px;
}

/* CERTIFICATION CARDS */
.certification-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.cert-card {
  border: 1px solid #d9e0ea;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  background: #fff;
  transition: .35s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Orange Border */
.cert-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: #ff7f22;
  transform: scaleX(0);
  transition: .35s;
}

.cert-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  background: #f3f6fc;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .35s;
}

.cert-icon i {
  color: #ff7f22;
  font-size: 24px;
  transition: .35s;
}

.cert-card h4 {
  color: #0b2e63;
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 700;
  transition: .3s;
}

.cert-card span {
  color: #66758e;
  font-size: 13px;
}

/* HOVER EFFECT */
.cert-card:hover {
  transform: translateY(-10px);
  border-color: #ff7f22;
  box-shadow: 0 18px 35px rgba(255, 127, 34, .20);
}

.cert-card:hover::before {
  transform: scaleX(1);
}

.cert-card:hover .cert-icon {
  background: #ff7f22;
  /* transform: rotate(-8deg);*/
}

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

.cert-card:hover h4 {
  color: #ff7f22;
}

/* RESPONSIVE */
@media(max-width:1100px) {

  .why-matters-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media(max-width:768px) {

  .certification-grid {
    grid-template-columns: 1fr;
  }

  .why-content h2 {
    font-size: 34px;
  }

  .why-content p {
    font-size: 18px;
  }
}
/* ============== Why It Matters ============== */
/* ============== Global Presence Page CSS ============== */

/* ============== Our Story ============== */
/*.our-story-section {
  padding: 75px 0;
  background: #fff;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 70px;
  align-items: flex-start;
}

/* Left */
/*.story-content .eyebrow {
  display: block;
  color: #ff7f22;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.story-content h2 {
  font-size: 35px;
  color: #0b2e63;
  line-height: 1.5;
  margin-bottom: 10px;
  font-weight: 700;
}

.story-content p {
  color: #62738d;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 5px;
}

/* Right */
/*.story-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-card {
  background: #fff;
  border: 1px solid #dde4ee;
  border-radius: 18px;
  padding: 45px;
  transition: .35s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Orange Top Border */
/*.story-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: #ff7f22;
  transform: scaleX(0);
  transition: .35s;
}

.story-card h3 {
  color: #0b2e63;
  font-size: 22px;
  margin-bottom: 18px;
  font-weight: 700;
  transition: .3s;
}

.story-card p {
  color: #62738d;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

/* ============== Hover Effect ============== */
/*.story-card:hover {
  transform: translateY(-8px);
  border-color: #ff7f22;
  box-shadow: 0 18px 35px rgba(255, 127, 34, .18);
}

.story-card:hover::before {
  transform: scaleX(1);
}

.story-card:hover h3 {
  color: #ff7f22;
}

/* ============== Responsive ============== */
/*@media(max-width:1100px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .story-content h2 {
    font-size: 40px;
  }
}

@media(max-width:768px) {

  .story-content h2 {
    font-size: 32px;
  }

  .story-content p {
    font-size: 17px;
  }

  .story-card {
    padding: 28px;
  }

  .story-card h3 {
    font-size: 24px;
  }

  .story-card p {
    font-size: 16px;
  }
}
/* ============== Our Story ============== */

/* ============== Our Story ============== */
.story-section {
  padding: 25px 0;
  background: #fff;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 70px;
  align-items: start;
}

/* Left */
.story-content .eyebrow {
  color: #ff7a1a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.story-content h2 {
  font-size: 35px;
  color: #0b2e63;
  margin: 12px 0 28px;
  line-height: 1.2;
}

.story-content p {
  font-size: 16px;
  color: #5d6d86;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Cards */
.story-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #f3f6fb;
  border: 1px solid #dde4ef;
  border-radius: 14px;
  padding: 22px;
  transition: .35s ease;
  position: relative;
  overflow: hidden;
}

/* Orange Strip */
.story-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #ff7a1a;
  transition: .35s;
}

.story-card:hover {
  transform: translateY(-8px);
  border-color: #ff7a1a;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.story-card:hover::before {
  width: 6px;
}

/* Icon */
.story-icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eef4ff;
  border-radius: 14px;
  color: #0b2e63;
  font-size: 24px;
  transition: .35s;
  /* Center the icon inside the card */
  margin: auto 0;
}

.story-card:hover .story-icon {
  background: #ff7a1a;
  color: #fff;
  /*transform: rotate(-10deg) scale(1.08);*/
}

/* Text */
.story-card h3 {
  color: #0b2e63;
  font-size: 22px;
  margin-bottom: 12px;
}

.story-card p {
  color: #5d6d86;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

/* Responsive */
@media(max-width:991px) {

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-content h2 {
    font-size: 36px;
  }

  .story-card {
    padding: 24px;
  }

  .story-card h3 {
    font-size: 24px;
  }

  .story-card p {
    font-size: 16px;
  }
}

@media(max-width:576px) {

  .story-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .story-content h2 {
    font-size: 30px;
  }
}
/* ============== Our Story ============== */

/* ============== Story Section ============== */
/* .story-section {
  padding: 90px 0;
  background: #fff;
}

.story-section .eyebrow {
  display: block;
  color: #ff7a1a;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 30px;
  font-size: 13px;
}

.story-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: #fff;
  border: 1px solid #d7e1ef;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(20, 45, 80, .08);
  transition: .35s;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(20, 45, 80, .15);
}

.story-card.reverse {
  grid-template-columns: 1fr 1fr;
}

.story-content {
  padding: 70px;
}

.story-content h2 {
  font-size: 35px;
  color: #0b2e63;
  margin-bottom: 20px;
}

.story-content h4 {
  color: #1d2b43;
  margin: 30px 0 18px;
  font-size: 18px;
}

.story-content p {
  color: #5b6677;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.story-link {
  display: inline-block;
  margin-top: 15px;
  color: #ff7a1a;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: .3s;
}

.story-link:hover {
  color: #0b2e63;
  transform: translateX(8px);
}

.story-image {
  overflow: hidden;
  height: 80%;
}

.story-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  transition: .6s;
}

.story-card:hover img {
  transform: scale(1.08);
}


/* ============== Responsive ============== */
/* @media(max-width:991px) {

  .story-card,
  .story-card.reverse {
    grid-template-columns: 1fr;
  }

  .story-content {
    padding: 45px;
  }

  .story-content h2 {
    font-size: 34px;
  }

  .story-image {
    order: -1;
  }

  .story-card.reverse .story-image {
    order: -1;
  }

  .story-image img {
    min-height: 420px;
  }
}

@media(max-width:768px) {

  .story-content {
    padding: 35px;
  }

  .story-content h2 {
    font-size: 28px;
  }

  .story-content h4 {
    font-size: 22px;
  }

  .story-content p {
    font-size: 17px;
  }

  .story-image img {
    min-height: 300px;
  }
}

/* ============== LEADERSHIP SECTION ============== */
/* ============== LEADERSHIP SECTION ============== */
/* ============== LEADERSHIP SECTION ============== */
/*.leadership-section {
  padding: 90px 0;
  background: #fff;
}

.leadership-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Image */
/*.leadership-image {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.leadership-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: .6s ease;
}

.leadership-image:hover img {
  transform: scale(1.06);
}

/* Content */
/*.leadership-content .eyebrow {
  display: inline-block;
  color: #ff7a1a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.leadership-content h2 {
  font-size: 46px;
  line-height: 1.2;
  color: #0b2e63;
  margin-bottom: 25px;
  font-weight: 700;
}

.leadership-content p {
  color: #5d6b7d;
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 22px;
}

.leadership-content .btn {
  margin-top: 12px;
}

/* Responsive */
/*@media(max-width:991px) {

  .leadership-row {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .leadership-image {
    order: 1;
  }

  .leadership-content {
    order: 2;
  }

  .leadership-image img {
    height: 450px;
  }

  .leadership-content h2 {
    font-size: 36px;
  }

}

@media(max-width:768px) {

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

  .leadership-image img {
    height: 320px;
  }

  .leadership-content h2 {
    font-size: 30px;
  }

  .leadership-content p {
    font-size: 17px;
  }
}
/* ============== LEADERSHIP SECTION ============== */
/* ============== LEADERSHIP SECTION ============== */
/* ============== LEADERSHIP SECTION ============== */

/* ============== Current Openings Roles ============== */

.career-section {
  padding: 90px 0;
  background: #f6f8fc;
}

.section-header {
  text-align: center;
  margin-bottom: 45px;
}

.section-header .eyebrow {
  color: #ff7a1a;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-header h2 {
  margin-top: 10px;
  font-size: 42px;
  color: #0b2e63;
  font-weight: 700;
}

/* Job Card */
.job-card {
  background: #fff;
  border: 1px solid #dfe6f1;
  border-radius: 14px;
  padding: 26px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  transition: .35s;
  position: relative;
  overflow: hidden;
}

/* Orange hover strip */
.job-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #ff7a1a;
  transition: .35s;
}

.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
  border-color: #ff7a1a;
}

.job-card:hover::before {
  width: 6px;
}

.job-info h3 {
  color: #0b2e63;
  font-size: 24px;
  margin-bottom: 14px;
  font-weight: 700;
}

.job-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.job-tags span {
  padding: 7px 16px;
  border-radius: 50px;
  background: #edf2fb;
  color: #0b2e63;
  font-size: 13px;
  font-weight: 600;
}

.job-tags .full-time {
  background: #fff2e6;
  color: #ff7a1a;
}

/* Apply Button */
.apply-btn {
  background: #f58220;
  color: #fff;
  padding: 14px 34px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: .35s;
}

.apply-btn:hover {
  background: #ff7a1a;
  transform: translateY(-3px);
}

/* Resume Box */
.resume-box {
  margin-top: 40px;
  background: #fff;
  border: 1px solid #dfe6f1;
  border-radius: 16px;
  padding: 55px;
  text-align: center;
  transition: .35s;
}

.resume-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.resume-box h3 {
  color: #0b2e63;
  font-size: 34px;
  margin-bottom: 15px;
}

.resume-box p {
  max-width: 760px;
  margin: 0 auto 30px;
  color: #5d6d86;
  font-size: 18px;
  line-height: 1.8;
}

.resume-btn {
  display: inline-block;
  padding: 15px 38px;
  border: 2px solid #0b2e63;
  border-radius: 8px;
  color: #0b2e63;
  font-weight: 700;
  text-decoration: none;
  transition: .35s;
}

.resume-btn:hover {
  background: #f58220;
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive */
@media(max-width:992px) {

  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .apply-btn {
    width: 100%;
    text-align: center;
  }

  .resume-box {
    padding: 40px 25px;
  }

  .section-header h2 {
    font-size: 34px;
  }

  .resume-box h3 {
    font-size: 28px;
  }
}
/* ============== Current Openings Roles ============== */

/* ============== Blogs Section ============== */
.blog-section {
  padding: 100px 0;
  background: #fff;
}

.featured-blog {
  display: grid;
  grid-template-columns: 60% 40%;
  border: 1px solid #d9e2ef;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  margin: 60px 0;
  transition: .4s;
  box-shadow: 0 15px 35px rgba(10, 45, 90, .08);
}

.featured-blog:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(10, 45, 90, .15);
}

.featured-content {
  padding: 50px;
}

.featured-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.badge {
  background: #eef3ff;
  color: #0b2e63;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 30px;
}

.featured-label {
  color: #64748b;
  font-size: 14px;
}

.featured-content h2 {
  color: #0b2e63;
  font-size: 42px;
  line-height: 1.25;
  margin-bottom: 25px;
}

.featured-content p {
  color: #5b6677;
  line-height: 1.8;
  font-size: 18px;
}

.blog-meta {
  margin-top: 35px;
  display: flex;
  gap: 12px;
  color: #718096;
  font-size: 14px;
}

.featured-image {
  overflow: hidden;
  background: #173f82;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s;
}

.featured-blog:hover img {
  transform: scale(1.08);
}

/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #f3f6fb;
  border: 1px solid #dde6f1;
  border-radius: 18px;
  padding: 28px;
  position: relative;
  transition: .35s;
  overflow: hidden;
}

.blog-card.blue {
  border-top: 5px solid #0b2e63;
}

.blog-card.orange {
  border-top: 5px solid #ff7a1a;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, .12);
}

.category {
  display: inline-block;
  background: #eef3ff;
  color: #0b2e63;
  padding: 7px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
}

.orange-bg {
  background: #fff3eb;
  color: #ff7a1a;
}

.read-time {
  float: right;
  color: #718096;
  font-size: 13px;
}

.blog-card h3 {
  margin: 25px 0 18px;
  color: #0b2e63;
  font-size: 28px;
  line-height: 1.35;
}

.blog-card p {
  color: #5b6677;
  line-height: 1.8;
  font-size: 17px;
}

.card-footer {
  border-top: 1px solid #e4eaf2;
  margin-top: 30px;
  padding-top: 18px;
  color: #7b8794;
  font-size: 14px;
}

/* Hover Animation */
.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 26, .08), transparent);
  transition: .6s;
}

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

/* Responsive */
@media(max-width:991px) {

  .featured-blog {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-content h2 {
    font-size: 34px;
  }
}

@media(max-width:768px) {

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .featured-content {
    padding: 35px;
  }

  .featured-content h2 {
    font-size: 28px;
  }

  .blog-card h3 {
    font-size: 22px;
  }
}
/* ============== Blogs Section ============== */

/* ============== All Case Studies Section ============== */
.case-studies-section {
  padding: 90px 0;
  background: #fff;
}

.case-filter {
  display: flex;
  gap: 35px;
  margin-bottom: 40px;
  border-bottom: 1px solid #dbe3ee;
}

.case-filter button {
  border: none;
  background: none;
  cursor: pointer;
  padding-bottom: 15px;
  font-size: 15px;
  font-weight: 600;
  color: #667085;
  transition: .35s;
}

.case-filter button.active {
  color: #0B2E63;
  border-bottom: 3px solid #0B2E63;
}

.case-filter button:hover {
  color: #FF7A1A;
}

/*--------------------*/
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/*--------------------*/
.case-card {
  background: #fff;
  border: 1px solid #d9e1ec;
  border-radius: 18px;
  overflow: hidden;
  transition: .4s;
  position: relative;
}

.case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(10, 30, 70, .12);
  border-color: #FF7A1A;
}

/* Orange Top Line */
.case-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 5px;
  background: #FF7A1A;
  transition: .45s;
}

.case-card:hover:before {
  width: 100%;
}

/*--------------------*/
.case-image {
  position: relative;
}

.case-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/*--------------------*/
.case-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #FF7A1A;
  color: #fff;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
}

/*--------------------*/
.case-stat {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: #fff;
  width: 120px;
  border-radius: 15px;
  text-align: center;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.case-stat h3 {
  margin: 0;
  color: #0B2E63;
  font-size: 28px;
}

.case-stat span {
  display: block;
  color: #0B2E63;
  font-size: 13px;
  font-weight: 600;
}

.case-stat small {
  color: #6d7a92;
}

/*--------------------*/
.case-content {
  padding: 28px;
}

.case-content h3 {
  font-size: 22px;
  color: #0B2E63;
  margin-bottom: 10px;
}

.case-content h5 {
  color: #FF7A1A;
  margin-bottom: 18px;
  font-weight: 600;
}

.case-content p {
  color: #5F6C84;
  line-height: 1.9;
  margin-bottom: 25px;
}

.case-content a {
  color: #FF7A1A;
  text-decoration: none;
  font-weight: 700;
  transition: .3s;
}

.case-content a:hover {
  letter-spacing: 1px;
}

/*--------------------*/
.case-btn {
  text-align: center;
  margin-top: 50px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 34px;
  border-radius: 10px;
  background: #f58220;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: .35s;
}

.btn-primary:hover {
  background: #FF7A1A;
  transform: translateY(-4px);
}

/*--------------------*/
@media(max-width:991px) {

  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-filter {
    overflow: auto;
    white-space: nowrap;
  }

  .case-content h3 {
    font-size: 28px;
  }
}
/* ============== All Case Studies Section ============== */

/* ============== All New Case Studies Section Start ============== */
.case-study-list {
  padding: 90px 0;
  background: #ffffff;
}

.study-card {
  background: #fff;
  border: 1px solid #d8e0ec;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 35px;
  transition: .4s;
  position: relative;
}

/* Hover Effect */
.study-card:hover {
  transform: translateY(-8px);
  border-color: #ff7a1a;
  box-shadow: 0 18px 45px rgba(20, 40, 90, .12);
}

.study-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #ff7a1a;
  transition: .45s;
}

.study-card:hover::before {
  width: 100%;
}

/* Top Header */
.study-top {
  background: #1e4785;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 15px 22px;
}

/* Content */
.study-content {
  padding: 20px;
}

.study-content h2 {
  color: #0B2E63;
  font-size: 20px;
  margin-bottom: 12px;
}

.subtitle {
  color: #67758f;
  margin-bottom: 22px;
}

.label {
  display: block;
  color: #ff7a1a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.study-content p {
  color: #61708b;
  line-height: 1.9;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 35px 0;
}

.stat-box {
  background: #eef4fc;
  border-radius: 14px;
  padding: 15px 10px;
  text-align: center;
  transition: .35s;
  border: 1px solid transparent;
}

.stat-box:hover {
  background: #ff7a1a;
  transform: translateY(-8px);
  color: #fff;
}

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

.stat-box h3 {
  color: #0B2E63;
  font-size: 18px;
  margin-bottom: 6px;
}

.stat-box span {
  color: #67758f;
  font-size: 15px;
}

/* Link */
.study-link {
  color: #ff7a1a;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .35s;
}

.study-link:hover {
  gap: 14px;
}

.study-link i {
  font-size: 12px;
}

/* Responsive */
@media(max-width:991px) {

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .study-content h2 {
    font-size: 30px;
  }
}

@media(max-width:576px) {

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .study-content {
    padding: 22px;
  }

  .study-content h2 {
    font-size: 24px;
  }

  .study-top {
    font-size: 12px;
    padding: 12px 18px;
  }
}
/* ============== All New Case Studies Section Start ============== */

/* ============== All New Case Studies Section Start ============== */
.case-studies-section {
  padding: 90px 0;
  background: #f5f8fc;
}

.case-study-card {
  background: #fff;
  border: 1px solid #d7dfeb;
  border-radius: 18px;
  overflow: hidden;
  transition: .35s;
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .10);
}

.case-category {
  background: #143b78;
  color: #fff;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.case-content {
  padding: 38px;
}

.case-content h2 {
  color: #0a3473;
  font-size: 36px;
  margin-bottom: 12px;
}

.subtitle {
  color: #6d7b95;
  font-size: 18px;
  margin-bottom: 28px;
}

.label {
  display: block;
  color: #ff7b22;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.challenge {
  color: #55657f;
  font-size: 17px;
  line-height: 1.8;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 40px 0;
}

.metric-box {
  background: #edf3fd;
  border-radius: 14px;
  text-align: center;
  padding: 26px;
  transition: .35s;
  cursor: pointer;
}

.metric-box:hover {
  background: #ff7b22;
  color: #fff;
  transform: translateY(-6px);
}

.metric-box:hover h3,

.metric-box:hover span {
  color: #fff;
}

.metric-box h3 {
  font-size: 34px;
  color: #0a3473;
  margin-bottom: 8px;
}

.metric-box span {
  color: #6c7c94;
  font-size: 15px;
}

.details-btn {
  background: none;
  border: none;
  color: #ff7b22;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: .3s;
}

.details-btn:hover {
  color: #143b78;
}

.case-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height .6s ease;
  border-top: 1px solid #dce5f1;
}

.case-study-card.active .case-details {
  max-height: 800px;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 40px;
}

.details-grid h4 {
  color: #ff7b22;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 22px;
}

.details-grid ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.details-grid li {
  margin-bottom: 15px;
  color: #4d5d76;
  line-height: 1.8;
  position: relative;
  padding-left: 20px;
}

.details-grid li:before {
  content: "›";
  color: #ff7b22;
  position: absolute;
  left: 0;
  font-size: 22px;
}

.details-grid p {
  color: #4d5d76;
  line-height: 1.8;
  margin-bottom: 18px;
}

.details-grid strong {
  color: #0a3473;
}

@media(max-width:991px) {

  .case-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .details-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .case-content h2 {
    font-size: 28px;
  }
}

@media(max-width:600px) {

  .case-metrics {
    grid-template-columns: 1fr;
  }

  .case-content {
    padding: 25px;
  }
}
/* ============== All New Case Studies Section End ============== */


/* ============== New Contact Us Form Start ============== */



/* ============== New Contact Us Form End ============== */


/* ============== Footer ============== */
.footer {
  background: #0b2e63;
  color: #fff;
  padding: 70px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-logo img {
  width: 180px;
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, .85);
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Tags */
.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-tags .tag {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 5px;
  font-size: 13px;
  color: #ffffff;
  transition: .3s;
}

.footer-tags .tag:hover {
  background: #ff8c24;
  border-color: #ff8c24;
}
/* Tags */

.footer-links h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  margin-bottom: 12px;
  transition: .3s;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 8px;
}

.copy {
  border-top: 1px solid rgba(255, 255, 255, .15);
  margin-top: 50px;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copy p {
  margin: 0;
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
}

/* Responsive */
@media(max-width:992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .copy {
    flex-direction: column;
    text-align: center;
  }
}

@media(max-width:768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
/* ============== Footer ============== */

/* ============== JITMED CONTACT PAGE ============== */
/* ============== Part 2A ============== */

/* ============== Global Styles + Layout + Sidebar ==============*/

/* ============== Google Font ============== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ============== Variables ============== */
/* ============== Reset ============== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ============== Container ============== */
.container {
  width: 100%;
  max-width: 1320px;
  margin: auto;
  padding: 10 20px;
}

/* ============== Section ============== */
.contact-section {
  padding: 90px 0;
  background: var(--light);
}

/* ============== Main Layout ============== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: start;
}

/* ============== LEFT SIDEBAR ============== */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sidebar-title {
  color: var(--heading);
  font-size: 22px;
  font-weight: 700;
}

/* ============== Contact Info ============== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
  cursor: pointer;
}

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

.info-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eef4fb;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition);
}

.info-item:hover .icon {
  background: var(--orange);
  color: #fff;
  /*transform: rotate(-8deg) scale(1.08);*/
}

.info-text span {
  display: block;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-text h4 {
  color: var(--heading);
  font-size: 16px;
  font-weight: 600;
}

.info-text p {
  color: #66758d;
  margin-top: 3px;
}

/* ============== TIMELINE CARD ============== */
.timeline-card {
  background: var(--primary);
  border-radius: 18px;
  padding: 30px;
  color: #fff;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.timeline-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(11, 46, 99, .22);
}

.timeline-card h3 {
  font-size: 26px;
  margin-bottom: 28px;
  font-weight: 700;
}

/* ============== Timeline Items ============== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition);
}

.timeline-item:hover .number {
  transform: scale(1.12);
  box-shadow: 0 0 0 8px rgba(255, 122, 26, .18);
}

.timeline-item h4 {
  font-size: 17px;
  margin-bottom: 4px;
  font-weight: 600;
}

.timeline-item p {
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
  line-height: 1.7;
}

/* ============== CTA CARD ============== */
.cta-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  transition: var(--transition);
}

.cta-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.cta-card h3 {
  color: var(--heading);
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.cta-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-weight: 700;
  transition: var(--transition);
}

.cta-card a i {
  transition: var(--transition);
}

.cta-card:hover a {
  color: var(--primary);
}

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

/* ============== Responsive (Layout Only) ============== */
@media(max-width:1100px) {

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    order: 2;
  }
}

@media(max-width:768px) {

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

  .sidebar-title {
    font-size: 24px;
  }

  .timeline-card {
    padding: 24px;
  }

  .cta-card {
    padding: 22px;
  }
}

/* ============== CONTACT FORM - SELECT DROPDOWN ============== */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background:
    #f7f9fc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23193d7a' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5 8 12l6.5-6.5' stroke='%23193d7a' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 18px center;
  cursor: pointer;
}

.form-group select:hover {
  border-color: #ff7a1a;
  background-color: #fff;
}

.form-group select:focus {
  outline: none;
  border-color: #ff7a1a;
}

/* ============== TEXTAREA ============== */
.form-group textarea {
  width: 100%;
  min-height: 160px;
  resize: vertical;
  border: 1px solid #d7dfef;
  border-radius: 10px;
  background: #f7f9fc;
  padding: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: #1f2937;
  transition: .35s ease;
}

.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group textarea:hover {
  background: #fff;
  border-color: #ff7a1a;
}

.form-group textarea:focus {
  outline: none;
  background: #fff;
  border-color: #ff7a1a;
  box-shadow: 0 0 0 4px rgba(255, 122, 26, .12);
}


/* ============== BUTTON ROW ============== */
.submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: #173c79;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: .35s ease;
}

.submit-btn i {
  transition: .35s;
}

.submit-btn:hover {
  background: #ff7a1a;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(23, 60, 121, .25);
}

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

.submit-note {
  font-size: 14px;
  color: #6b7280;
}


/* ============== INPUT VALIDATION ============== */
input:valid,
select:valid,
textarea:valid {
  border-color: #0b2e63;
}

input:focus:invalid,
select:focus:invalid,
textarea:focus:invalid {
  border-color: #ef4444;
}

input:focus:valid,
select:focus:valid,
textarea:focus:valid {
  border-color: #22c55e;
}


/* ============== HOVER EFFECT FOR FORM PANEL ============== */
.contact-form {
  transition: .35s ease;
}

.contact-form:hover {
  transform: translateY(-5px);
}

/* ============== RESPONSIVE TABLET ============== */
@media (max-width:991px) {

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    order: 2;
  }

  .contact-form {
    order: 1;
  }
}


/* ============== MOBILE ============== */
@media (max-width:768px) {

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

  .contact-info-item {
    gap: 15px;
  }

  .contact-info-icon {
    width: 48px;
    height: 48px;
  }

  .contact-info-icon i {
    font-size: 18px;
  }

  .submit-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .submit-btn {
    width: 100%;
    justify-content: center;
  }

  .sidebar-card {
    padding: 28px;
  }

  .step {
    gap: 14px;
  }

  .step-number {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .form-group input,
  .form-group select {
    height: 54px;
  }

  textarea {
    min-height: 150px;
  }

}

/* ============== SMALL MOBILE ============== */
@media (max-width:480px) {

  .contact-section {
    padding: 60px 0;
  }

  .contact-form,
  .sidebar-card,
  .cta-card {
    padding: 25px;
  }

  .contact-info-item {
    align-items: flex-start;
  }

  .contact-info-icon {
    width: 44px;
    height: 44px;
  }

  .contact-info-content h5 {
    font-size: 12px;
  }

  .contact-info-content p {
    font-size: 14px;
  }

  .submit-note {
    font-size: 13px;
  }
}

/* ============== PART 2C ============== */
/* ============== Timeline + CTA Card + Hover Effects + Responsive ============== */

/* ============== TIMELINE CARD ============== */
.timeline-card {
  background: #0b2e63;
  color: #fff;
  padding: 35px 30px;
  border-radius: 18px;
  margin-top: 30px;
  box-shadow: 0 20px 45px rgba(11, 46, 99, .18);
  transition: .4s ease;
  overflow: hidden;
  position: relative;
}

.timeline-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
}

.timeline-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(11, 46, 99, .25);
}

.timeline-card h3 {
  font-size: 22px;
  margin-bottom: 30px;
  color: #fff;
}

/* ============== Timeline Items ============== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
}

/* Vertical Line */
.timeline-item::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 40px;
  width: 2px;
  height: calc(100% + 18px);
  background: rgba(255, 255, 255, .20);
}

.timeline-item:last-child::before {
  display: none;
}

/* ============== Number Circle ============== */
.number {
  width: 36px;
  height: 36px;
  background: #ff7a1a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  transition: .35s;
  z-index: 2;
}

.timeline-item:hover .number {
  /* transform: scale(1.18) rotate(12deg);*/
  box-shadow: 0 0 0 8px rgba(255, 122, 26, .18);
}

/* ============== Timeline Content ============== */
.timeline-item h4 {
  color: #fff;
  margin-bottom: 5px;
  font-size: 16px;
}

.timeline-item p {
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  line-height: 1.7;
}

/* ============== CTA CARD ============== */
.cta-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  margin-top: 30px;
  border: 1px solid #dfe7f3;
  transition: .35s;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 26, .08), transparent);
  transition: .8s;
}

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

.cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
  border-color: #ff7a1a;
}

.cta-card h3 {
  color: #0b2e63;
  line-height: 1.6;
  margin-bottom: 22px;
  font-size: 16px;
}

.cta-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ff7a1a;
  font-weight: 700;
  transition: .35s;
}

.cta-card a i {
  transition: .35s;
}

.cta-card:hover a {
  color: #0b2e63;

}

.cta-card:hover a i {
  transform: translateX(8px);
}

/* ============== General Hover Animation ============== */
.info-item,
.timeline-card,
.cta-card {
  transition: all .35s ease;
}

/* ============== Responsive ============== */
@media(max-width:1200px) {

  .contact-wrapper {
    grid-template-columns: 320px 1fr;
    gap: 30px;
  }
}


@media(max-width:992px) {

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    order: 2;
  }

  .contact-form-area {
    order: 1;
  }

  .timeline-card {
    margin-top: 20px;
  }
}


@media(max-width:768px) {

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

  .timeline-card {
    padding: 25px;
  }

  .timeline-card h3 {
    font-size: 24px;
  }

  .timeline-item {
    gap: 15px;
  }

  .number {
    width: 34px;
    height: 34px;
  }

  .cta-card {
    padding: 25px;
  }

  .cta-card h3 {
    font-size: 20px;
  }
}


@media(max-width:576px) {

  .timeline-card {
    padding: 22px;
  }

  .timeline {
    gap: 20px;
  }

  .timeline-item h4 {
    font-size: 16px;
  }

  .timeline-item p {
    font-size: 13px;
  }

  .cta-card {
    padding: 22px;
  }

  .cta-card h3 {
    font-size: 18px;
  }
}


/* Input States */
.form-group {
  position: relative;
}

.form-group input.valid,
.form-group textarea.valid,
.form-group select.valid {
  border-color: #22c55e;
}

.form-group input.invalid,
.form-group textarea.invalid,
.form-group select.invalid {
  border-color: #ef4444;
}

/* Error Message */
.error-message {
  display: block;
  color: #ef4444;
  font-size: 13px;
  margin-top: 6px;
  font-weight: 500;
}

/* Focus Animation */
.form-group.focused label {
  color: #0b2e63;
}

/* Filled State */
.form-group input.filled,
.form-group textarea.filled,
.form-group select.filled {
  background: #fff;
}

/* ============== Character Counter ============== */
.character-counter {
  text-align: right;
  margin-top: 8px;
  font-size: 13px;
  color: #64748b;
  transition: .3s;
}

/* ============== Loading Button ============== */
.submit-btn.loading {
  opacity: .85;
  cursor: not-allowed;
}

.submit-btn.loading i {
  margin-right: 8px;
}

/* ============== Ripple Effect ============== */
.submit-btn {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, .5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: rippleEffect .6s linear;
  pointer-events: none;
}

@keyframes rippleEffect {

  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    width: 350px;
    height: 350px;
    opacity: 0;
  }
}

/* ============== Input Animation ============== */
input,
textarea,
select {
  transition: .35s ease;
}

input:hover,
textarea:hover,
select:hover {
  transform: translateY(-2px);
}

input:focus,
textarea:focus,
select:focus {
  transform: translateY(-2px);
}


/* ============== Smooth Fade ============== */
.form-group {
  transition: .35s ease;
}

.form-group:hover {
  transform: translateY(-2px);
}

/* ============== ALERT ============== */
.custom-alert {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 360px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 15px;
  z-index: 99999;
  transform: translateX(450px);
  opacity: 0;
  transition: .4s ease;
}

.custom-alert.show {
  transform: translateX(0);
  opacity: 1;
}

.custom-alert.success {
  border-left: 5px solid #22c55e;
}

.custom-alert.error {
  border-left: 5px solid #ef4444;
}

.alert-icon {
  font-size: 28px;
}

.success .alert-icon {
  color: #22c55e;
}

.error .alert-icon {
  color: #ef4444;
}

.alert-content {
  flex: 1;
}

.alert-content strong {
  display: block;
  font-size: 17px;
  margin-bottom: 3px;
  color: #173a72;
}

.alert-content span {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.alert-close {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 18px;
  color: #888;
  transition: .3s;
}

.alert-close:hover {
  color: #ff7a1a;
  transform: rotate(90deg);
}


/* ============== Loading Button ============== */
.submit-btn.loading {
  pointer-events: none;
  opacity: .9;
}

.submit-btn.loading i {
  margin-right: 8px;
}


/* ============== Responsive ============== */
@media(max-width:576px) {

  .custom-alert {
    left: 15px;
    right: 15px;
    width: auto;
  }
}


/* ============== Call To Action CTA Section ============== */
.cta {
  background: #d4dce9;
  color: #0b2e63;
  padding: 42px 0;
}

.cta-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer {
  background: #0b2e63;
  color: #d8e2f2;
  padding: 50px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 34px;
}

.footer h4 {
  color: #fff;
  margin-top: 0;
}

.footer a {
  display: block;
  margin: 7px 0;
}

.footer a:hover {
  color: var(--orange);
}

.copy {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 30px;
  padding-top: 18px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.breadcrumb {
  font-size: 14px;
  padding: 14px 0;
  color: #fff;
}

.page-hero {
  background: linear-gradient(90deg, #0b2e63, #1c4f9c);
  color: #fff;
  padding: 64px 0;
}

.page-hero h1 {
  font-size: 52px;
  margin: 0;
}

.page-hero p {
  max-width: 760px;
  font-size: 18px;
}

.badges {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.badge {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  color: var(--heading);
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
}

textarea {
  min-height: 150px;
}

@media (max-width: 900px) {
  .navlinks {
    display: none;
  }

  .hero-grid,
  .feature-row,
  .success,
  .footer-grid,
  .grid-3,
  .grid-4,
  .grid-6,
  .process,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .cta-wrap,
  .copy {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 60px 0;
  }

  .section {
    padding: 62px 0;
  }

  .page-hero h1 {
    font-size: 40px;
  }
}

/* ============== Footer ============== */


/*========================================
  SERVICES SHOWCASE
========================================*/

.services-showcase {
  background: #f5f7fa;
  padding: 90px 0;
}

.services-showcase .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ROW */

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.service-row:last-child {
  margin-bottom: 0;
}

/* CONTENT */

.service-content h2 {
  font-size: 35px;
  line-height: 1.2;
  font-weight: 700;
  color: #0b2e63;
  margin-bottom: 20px;
}

.service-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #61718c;
  margin-bottom: 15px;
}

.service-content ul {
  list-style: none;
  margin: 0 0 35px;
  padding: 0;
}

.service-content ul li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 5px;
  color: #0b2e63;
  font-size: 16px;
  font-weight: 500;
}

.service-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #f58220;
  font-weight: 700;
}

/* BUTTON */

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f58220;
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  transition: .35s ease;
}

.service-btn:hover {
  background: #0b2e63;
  transform: translateY(-4px);
}

.service-btn i {
  font-size: 12px;
}

/* IMAGE */

.service-image {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .10);
}

.service-image img {
  width: 100%;
  display: block;
  border-radius: 24px;
  transition: .6s ease;
}

/* IMAGE HOVER */

.service-image:hover img {
  transform: scale(1.08);
}

/* CONTENT HOVER */

.service-content {
  transition: .4s ease;
}

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

/* REVERSE ROW */

.service-row.reverse {
  grid-template-columns: 1fr 1fr;
}

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

@media(max-width:992px) {

  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 70px;
  }

  .service-row.reverse .service-image {
    order: 1;
  }

  .service-row.reverse .service-content {
    order: 2;
  }

  .service-content h2 {
    font-size: 34px;
  }

  .service-content p {
    font-size: 18px;
  }
}

@media(max-width:576px) {

  .services-showcase {
    padding: 60px 0;
  }

  .service-content h2 {
    font-size: 28px;
  }

  .service-content p {
    font-size: 16px;
    line-height: 1.7;
  }

  .service-content ul li {
    font-size: 15px;
  }

  .service-btn {
    width: 100%;
    justify-content: center;
  }
}





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

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

.footer-social {
  max-width: 1320px;
  margin: 22px auto 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 29px;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.social-link:hover {
  color: #ff821c;
  transform:
    translateY(-5px) scale(1.08);
}

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

@media (max-width: 1000px) {

  .footer-container {
    grid-template-columns:
      1.4fr 1fr 1fr;
    gap: 45px;
  }

  .footer-brand {
    grid-column: span 3;
    max-width: 450px;
  }

  .footer-social {
    margin-top: 35px;
  }
}

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

@media (max-width: 700px) {

  .footer-main {
    padding: 45px 20px 25px;
  }

  .footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-brand {
    grid-column: auto;
    max-width: 100%;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-logo img {
    width: 165px;
  }

  .footer-description {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.7;
  }

  .compliance-badges {
    margin-top: 20px;
  }

  .footer-column h3 {
    margin-bottom: 17px;
    font-size: 19px;
  }

  .footer-column ul li {
    margin-bottom: 11px;
  }

  .footer-column ul li a {
    font-size: 14px;
  }

  .footer-social {
    justify-content: flex-start;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
  }

  .social-link {
    width: 36px;
    height: 36px;
    font-size: 26px;
  }

  .footer-bottom {
    padding: 20px;
  }

  .footer-bottom-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }

  .copyright {
    font-size: 13px;
  }

  .footer-legal a {
    font-size: 13px;
  }
}

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

@media (max-width: 420px) {

  .compliance-badges {
    gap: 8px;
  }

  .compliance-badge {
    font-size: 12px;
    padding: 7px 11px;
  }

  .footer-social {
    gap: 12px;
  }

  .social-link {
    font-size: 24px;
  }

  .footer-legal {
    flex-wrap: wrap;
  }
}

/* ========== BACK TO TOP BUTTON ========== */

.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #f58220;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* Show button */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover */
.back-to-top:hover {
  background: #12366b;
  transform: translateY(-5px);
  box-shadow:
    0 10px 25px rgba(18, 54, 107, 0.30);
}

/* Icon */
.back-to-top i {
  transition: transform 0.3s ease;
}

.back-to-top:hover i {
  transform: translateY(-3px);
}

/* Keyboard focus */
.back-to-top:focus-visible {
  outline: 3px solid rgba(245, 130, 32, 0.35);
  outline-offset: 3px;
}

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

@media (max-width: 700px) {

  .back-to-top {
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

}