/* GLOBAL */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
}

/* NAVBAR */
/* HEADER STYLING */
.corporate-header {
  background: #f3f3f3;
}

.nav-bottom {
  border-top: 1px solid #ddd;
  background: #f3f3f3;
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: #1f4e79;
  margin: 0 15px;
}

.navbar-nav .nav-link:hover {
  color: #0d4d8b;
}

.social-icons i {
  font-size: 18px;
  margin-right: 10px;
  cursor: pointer;
}

.social-icons i:hover {
  color: #0d4d8b;
}

.navbar.scrolled {
  background-color: #0d4d8b !important;
}

/* HERO VIDEO */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* SOLUTION CARDS */
.solution-card {
  transition: 0.3s;
}

.solution-card:hover {
  transform: translateY(-8px);
}

/* STATS */
.stat-box {
  background: white;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* INSIGHTS */
.card img {
  height: 200px;
  object-fit: cover;
}

.spectrum-section {
  background: #f4f4f4;
  overflow: hidden;
}

/* Proper spacing */
.spectrum-section .row {
  min-height: 500px;
}

/* Circle */
.big-circle {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 18px solid #ccc;
  border-bottom: 18px solid #0d2e63;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.big-circle h2 {
  font-weight: bold;
  color: #0d2e63;
  text-align: center;
}

/* Blue Box */
.solution-box {
  background: #18396b;
  border-top-left-radius: 180px;
  min-height: 320px;
  margin-right: 30px;
  /* 🔥 THIS FIXES THE STICKING ISSUE */
  position: relative;
  z-index: 2;
}

/* Images */
.img-top {
  width: 200px;
  position: absolute;
  top: -50px;
  right: 0;
  border-radius: 20px;
}

.img-bottom {
  width: 240px;
  position: absolute;
  bottom: -40px;
  right: 20px;
  border-radius: 30px;
}

/* Responsive */
@media (max-width: 992px) {
  .big-circle {
    width: 280px;
    height: 280px;
  }

  .solution-box {
    border-radius: 30px;
    margin-right: 0;
  }

  .img-top,
  .img-bottom {
    display: none;
  }
}

/* BIG LEFT CIRCLE */
.big-circle {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 20px solid #ccc;
  border-bottom: 20px solid #0d2e63;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.big-circle h2 {
  font-weight: bold;
  color: #0d2e63;
  text-align: center;
}

/* RIGHT BLUE BOX */
.solution-box {
  background: #0d2e63;
  border-top-left-radius: 200px;
  min-height: 350px;
  position: relative;
  z-index: 2;
}

/* IMAGE POSITION */
.img-top {
  width: 200px;
  position: absolute;
  top: -60px;
  right: 20px;
  border-radius: 20px 0 0 0;
}

.img-bottom {
  width: 250px;
  position: absolute;
  bottom: -40px;
  right: 0;
  border-radius: 0 0 0 100px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .big-circle {
    width: 300px;
    height: 300px;
  }

  .solution-box {
    border-radius: 40px;
  }

  .img-top,
  .img-bottom {
    display: none;
  }
}

/* RESULTS SECTION */
.results-section {
  position: relative;
  padding-bottom: 120px;
}

.results-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1552664730-d307ca884978") center/cover no-repeat;
  z-index: 0;
}

/* Light overlay */
.results-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
}

/* Bring content above bg */
.results-section .container {
  z-index: 2;
  position: relative;
}

/* Floating Cards */
.stats-row {
  margin-top: 80px;
}

.result-card {
  background: white;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.result-card:hover {
  transform: translateY(-8px);
}

/* KNOWLEDGE SECTION */
.knowledge-section {
  background: #f8f8f8;
}

.knowledge-img {
  position: relative;
  z-index: 2;
  max-width: 400px;
}

.dots-pattern {
  position: absolute;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(#00bcd4 2px, transparent 2px);
  background-size: 15px 15px;
  top: 20px;
  left: 50px;
  z-index: 1;
}

/* SLIDER SECTION */
.insight-slider {
  background: #1f1f1f;
}

.slider-left {
  background: linear-gradient(to right, #1f1f1f 60%, #243b6b);
  min-height: 300px;
}

.slider-content {
  max-width: 500px;
}

.slider-right {
  background: url("https://images.unsplash.com/photo-1551836022-d5d88e9218df") center/cover no-repeat;
  min-height: 300px;
}

/* INSIGHTS SECTION */
.insights-section {
  background: #f8f8f8;
}

.insight-card {
  transition: 0.3s;
}

.insight-card:hover {
  transform: translateY(-8px);
}

.insight-img {
  height: 250px;
  background-size: cover;
  background-position: center;
}

/* Background Images */
.img-1 {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c");
}

.img-2 {
  background-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72");
}

.img-3 {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f");
}

/* Rounded circle effect for 3rd */
/* .circle-img {
  border-radius: 50% 50% 0 0;
} */

.learn-link {
  font-weight: 600;
  text-decoration: none;
  color: #0d4d8b;
}

.learn-link:hover {
  text-decoration: underline;
}

.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  top: 100%;
  border-radius: 0;
}

.nav-item.position-static {
  position: static !important;
}

.dropdown-menu {
  background: #f8f9fa;
}

.dropdown-menu h5 {
  cursor: pointer;
  transition: 0.3s;
}

.dropdown-menu h5:hover {
  color: #0d6efd;
}

.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  top: 100%;
  border-radius: 0;
  background: #f8f9fa;
}

.nav-item.position-static {
  position: static !important;
}

.dropdown-menu h5 {
  cursor: pointer;
  transition: 0.3s;
}

.dropdown-menu h5:hover {
  color: #0d6efd;
}

/* ===== TOP BLUE TITLE BAR ===== */
.top-banner {
  background: linear-gradient(90deg, #0d4f8b, #0b3f73);
  padding: 50px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.top-banner h2 {
  font-weight: 600;
  margin: 0;
}

.top-banner::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: repeating-linear-gradient(120deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.05) 40px,
      transparent 40px,
      transparent 80px);
}

/* ===== FORM SECTION ===== */
.form-section {
  background: #f4f4f4;
  padding: 70px 0;
}

.form-box {
  background: #fff;
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-control,
.form-select {
  height: 45px;
}

.submit-btn {
  background: #0d4f8b;
  color: #fff;
  padding: 8px 30px;
  border-radius: 20px;
  border: none;
}

.submit-btn:hover {
  background: #083866;
}

.custom-solution {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.solution-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* dark overlay */

.solution-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0b2a5a 40%, rgba(11, 42, 90, 0.7));
  z-index: 2;
}

.solution-container {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* left content */

.solution-left {
  max-width: 600px;
}

.solution-left h2 {
  font-size: 44px;
  margin-bottom: 20px;
}

.solution-left p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
}

/* button */

.contact-btn {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid #fff;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

/* hover effect */

.contact-btn:hover {
  background: #fff;
  color: #0b2a5a;
}

/* responsive */

@media (max-width: 768px) {
  .custom-solution {
    height: auto;
    padding: 80px 0;
  }

  .solution-container {
    flex-direction: column;
    text-align: center;
  }

  .solution-left h2 {
    font-size: 32px;
  }
}

/* digital-7 project outcomes */
.project-outcomes {
  background: #000;
  color: #fff;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
  font-weight: 700;
}

.cc-outcomes-section {
  background: linear-gradient(135deg, #0f3d7a, #0b2b5c);
  border-radius: 20px;
  padding: 60px 40px;
  color: #fff;
}

.cc-outcomes-stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cc-stat-item {
  flex: 1;
  text-align: center;
  min-width: 180px;
  position: relative;
}

.cc-stat-item h3 {
  font-size: 52px;
  margin-bottom: 10px;
  font-weight: 700;
}

.cc-stat-item p {
  font-size: 14px;
  letter-spacing: 1px;
  color: #c9d7ff;
}

/* divider line */

.cc-stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
}

.cc-outcomes-content {
  max-width: 850px;
  margin: auto;
  text-align: center;
  line-height: 1.7;
  color: #e2ebff;
}

/* responsive */

@media(max-width:768px) {

  .cc-outcomes-stats {
    gap: 30px;
  }

  .cc-stat-item {
    flex: 0 0 45%;
  }

}

@media(max-width:480px) {

  .cc-stat-item {
    flex: 0 0 100%;
  }

}

.subtitle {
  font-weight: 600;
  margin-bottom: 10px;
}

.outcomes-content ul {
  margin: 15px 0 25px;
  padding-left: 20px;
}

.outcomes-content li {
  margin-bottom: 8px;
}

@media (max-width:768px) {

  .section-title {
    font-size: 28px;
  }

  .outcomes-card {
    flex-direction: column;
    padding: 30px;
  }

  .outcome-box h3 {
    font-size: 36px;
  }

}

/* Digital-8 after hero section css */
.dc-app-dev-section {
  padding: 80px 20px;
  background: #f5f7fa;
}

.dc-app-dev-container {
  max-width: 1200px;
  margin: auto;
}

.dc-app-dev-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.dc-app-dev-date {
  font-size: 13px;
  letter-spacing: 2px;
  color: #777;
  margin-bottom: 20px;
}

.dc-app-dev-title {
  font-size: 36px;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.dc-app-dev-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.dc-app-dev-subtitle {
  color: #1f7cb8;
  letter-spacing: 2px;
  font-size: 18px;
  margin-bottom: 15px;
}

.dc-app-dev-list {
  padding-left: 20px;
  margin-bottom: 20px;
}

.dc-app-dev-list li {
  margin-bottom: 8px;
  font-size: 16px;
}

.dc-app-dev-bottom {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* RIGHT CARD */

.dc-app-dev-card {
  background: linear-gradient(180deg, #2f86b8, #1e5c8a);
  color: #fff;
  padding: 40px;
  border-radius: 20px;
}

.dc-app-dev-stat {
  margin-bottom: 40px;
}

.dc-app-dev-stat:last-child {
  margin-bottom: 0;
}

.dc-app-dev-stat h3 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 600;
}

.dc-app-dev-stat p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* RESPONSIVE */

@media (max-width:900px) {

  .dc-app-dev-grid {
    grid-template-columns: 1fr;
  }

  .dc-app-dev-title {
    font-size: 28px;
  }

  .dc-app-dev-card {
    margin-top: 30px;
  }

}

/* digital-8 overlap card section */
.dc-native-section {
  position: relative;
  padding-bottom: 120px;
  background: #d7e6ef;
}

/* TOP BANNER */

.dc-native-banner {
  background: url("../img/contact-bg.jpg") center/cover no-repeat;
  padding: 120px 20px 160px;
  position: relative;

}

.dc-native-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);

}

.dc-native-banner-content {
  position: relative;
  max-width: 900px;
  margin: auto;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.dc-native-quote {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.dc-native-author {
  font-size: 16px;
  letter-spacing: 2px;
  opacity: 0.9;
}

/* CARD OVERLAP */

.dc-native-card-wrapper {
  max-width: 1100px;
  margin: auto;
  margin-top: -140px;
  /* overlap control */
  padding: 0 20px;
  position: relative;
  z-index: 5;
}

.dc-native-card-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.dc-native-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.dc-native-title {
  font-size: 42px;
  margin-bottom: 20px;
  color: #222;
}

.dc-native-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.dc-native-text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

/* RESPONSIVE */

@media (max-width:768px) {

  .dc-native-banner {
    padding: 100px 20px 140px;
  }

  .dc-native-quote {
    font-size: 18px;
  }

  .dc-native-card {
    padding: 40px;
  }

  .dc-native-title {
    font-size: 30px;
  }

}

/* dc choose app css */
.dc-choose-app-section {
  padding: 100px 20px;
  background: #6a7198;
  color: #fff;
}

.dc-choose-app-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.dc-choose-app-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.dc-choose-app-subtitle {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 50px;
}

.dc-choose-app-table-wrapper {
  overflow-x: auto;
}

.dc-choose-app-table {
  width: 100%;
  border-collapse: collapse;
  background: #0a0e25;
  border-radius: 8px;
  overflow: hidden;
}

.dc-choose-app-table thead th {
  background: #4b5459;
  padding: 18px;
  font-size: 14px;
  letter-spacing: 1px;
}

.dc-choose-app-table td {
  padding: 22px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
}

.dc-choose-app-factor {
  background: #4b5459;
  font-weight: 600;
}

.dc-choose-app-table tr:last-child td {
  border-bottom: none;
}

.dc-choose-app-table strong {
  display: block;
  margin-bottom: 5px;
}

@media (max-width:768px) {

  .dc-choose-app-title {
    font-size: 28px;
  }

  .dc-choose-app-table td,
  .dc-choose-app-table th {
    font-size: 14px;
    padding: 16px;
  }

}

.kf-office-section {
  padding: 60px 20px;
}

.kf-office-container {
  max-width: 1200px;
  margin: auto;
  background: #f4f4f4;
  border-radius: 10px;
  padding: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.kf-office-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.kf-office-left {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.kf-location-btn {
  padding: 12px 18px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 6px;
  cursor: pointer;
}

.kf-location-input {
  padding: 12px 18px;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 220px;
}

.kf-find-office-btn {
  padding: 12px 22px;
  border: 2px solid #0d3c78;
  background: white;
  border-radius: 25px;
  color: #0d3c78;
  font-weight: 500;
  cursor: pointer;
}

.kf-office-right {
  max-width: 420px;
}

.kf-office-title {
  font-size: 28px;
  margin-bottom: 10px;
}

.kf-office-address {
  color: #555;
  margin-bottom: 8px;
}

.kf-office-phone a {
  color: #2b6cb0;
  text-decoration: none;
}

.kf-office-block {
  margin-bottom: 30px;
}

.kf-view-location {
  color: #2b6cb0;
  text-decoration: none;
  font-weight: 500;
}

.kf-office-left {
  flex: 1;
}

.kf-office-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.kf-office-right {
  flex: 1;
  padding-left: 40px;
}

/* PRIVACY PAGE */

.privacy-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.privacy-wrapper {
  max-width: 900px;
}

.privacy-title {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.privacy-divider {
  width: 100%;
  height: 1px;
  background: #ddd;
  margin-bottom: 40px;
}

.privacy-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 22px;
}

.privacy-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-top: 40px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.privacy-heading {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}



/* SOLUTIONS SECTION */
.dc-solutions-section {
  background: #f7f9fc;
}

.dc-solutions-title {
  font-size: 40px;
  font-weight: 700;
  color: #1b1b1b;
}

/* LINK RESET */
.dc-solution-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* CARD */
.dc-solution-card {
  background: white;
  padding: 40px 30px;
  border-radius: 14px;
  transition: all .35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

/* ICON */
.dc-solution-icon {
  width: 70px;
  height: 70px;
  background: #eef4ff;
  color: #2c5cff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 20px;
}

/* TEXT */
.dc-solution-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.dc-solution-card p {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.6;
}

/* HOVER EFFECT */
.dc-solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* STATS SECTION */
.dc-stats-section {
  background: #f7f9fc;
}

/* CARD */
.dc-stat-card {
  background: white;
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all .35s ease;
  height: 100%;
}

/* NUMBER */
.dc-stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #2c5cff;
  margin-bottom: 10px;
}

/* TEXT */
.dc-stat-text {
  font-size: 16px;
  color: #6c757d;
  margin: 0;
}

/* HOVER EFFECT */
.dc-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* INSIGHTS SECTION */
.dc-insights-section {
  background: #f7f9fc;
}

.dc-insights-title {
  font-size: 40px;
  font-weight: 700;
  color: #1b1b1b;
}

/* CARD */
.dc-insight-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all .35s ease;
  height: 100%;
}

/* IMAGE */
.dc-insight-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

/* CONTENT */
.dc-insight-content {
  padding: 25px;
}

.dc-insight-content h6 {
  font-weight: 600;
  margin-bottom: 10px;
}

.dc-insight-content p {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.6;
}

/* LINK */
.dc-learn-link {
  text-decoration: none;
  color: #2c5cff;
  font-weight: 600;
  font-size: 14px;
}

/* HOVER EFFECT */
.dc-insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* ===== DC TECH INSIGHT SECTION ===== */

.dctech-insight-section {
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

/* LEFT SIDE */
.dctech-insight-left {
  background: linear-gradient(135deg, #0f1a2b, #1c2d4a);
  min-height: 420px;
  padding: 60px;
}

.dctech-insight-content {
  max-width: 420px;
}

/* TITLE */
.dctech-insight-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
}

/* TEXT */
.dctech-insight-text {
  margin-top: 15px;
  font-size: 15px;
  opacity: 0.85;
}

/* BUTTON */
.dctech-insight-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 22px;
  border: 2px solid #fff;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}

.dctech-insight-btn:hover {
  background: #fff;
  color: #111;
  transform: translateY(-3px);
}

/* IMAGE SIDE */
.dctech-insight-img-wrapper {
  overflow: hidden;
}

.dctech-insight-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: 0.6s;
}

/* IMAGE HOVER EFFECT */
.dctech-insight-img-wrapper:hover .dctech-insight-img {
  transform: scale(1.08);
}

/* RESPONSIVE */
@media(max-width:992px) {

  .dctech-insight-left {
    padding: 40px;
    text-align: center;
  }

  .dctech-insight-content {
    margin: auto;
  }

}

/* ===== DC TECH ABOUT SECTION ===== */

.dct-about-section {
  background: #f9fafc;
  font-family: "Poppins", sans-serif;
}

/* TEXT SIDE */

.dct-about-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

/* underline effect */

.dct-about-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #1e63ff;
  display: block;
  margin-top: 10px;
  border-radius: 2px;
}

.dct-about-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-top: 15px;
  max-width: 520px;
}

/* BUTTON */

.dct-about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 26px;
  background: #1e63ff;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.dct-about-btn:hover {
  background: #0d47c4;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* IMAGE SIDE */

.dct-about-image-box {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.dct-about-image {
  width: 100%;
  transition: 0.6s;
}

/* image hover zoom */

.dct-about-image-box:hover .dct-about-image {
  transform: scale(1.07);
}

/* RESPONSIVE */

@media (max-width:992px) {

  .dct-about-text {
    text-align: center;
    margin-bottom: 30px;
  }

  .dct-about-desc {
    margin: auto;
  }

  .dct-about-title::after {
    margin-left: auto;
    margin-right: auto;
  }

}

/* ===== DC TECH KNOWLEDGE SECTION ===== */

.dct-knowledge-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #f8f9fc, #ffffff);
  font-family: "Poppins", sans-serif;
}

/* IMAGE AREA */

.dct-knowledge-image-area {
  position: relative;
  text-align: center;
}

/* IMAGE CARD */

.dct-knowledge-image-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  transition: all .5s ease;
}

.dct-knowledge-img {
  width: 100%;
  display: block;
  transition: transform .6s ease;
}

.dct-knowledge-image-card:hover {
  transform: translateY(-8px);
}

.dct-knowledge-image-card:hover .dct-knowledge-img {
  transform: scale(1.07);
}

/* DOTS DECORATION */

.dct-knowledge-dots {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(#2563eb 2px, transparent 2px);
  background-size: 16px 16px;
  top: -25px;
  left: -25px;
  opacity: 0.3;
}

/* CONTENT */

.dct-knowledge-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
  position: relative;
}

/* underline accent */

.dct-knowledge-title::after {
  content: "";
  width: 65px;
  height: 4px;
  background: #2563eb;
  display: block;
  margin-top: 10px;
  border-radius: 2px;
}

.dct-knowledge-text {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  max-width: 520px;
  margin-top: 15px;
}

/* BUTTON */

.dct-knowledge-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 500;
  letter-spacing: .5px;
  transition: all .35s ease;
}

.dct-knowledge-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

/* RESPONSIVE */

@media (max-width:992px) {

  .dct-knowledge-content {
    text-align: center;
    margin-top: 40px;
  }

  .dct-knowledge-title::after {
    margin-left: auto;
    margin-right: auto;
  }

  .dct-knowledge-text {
    margin: auto;
  }

}

/* ===== DC TECH CTA SECTION ===== */

.dct-cta-section {
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #0d4d8b, #1e63ff);
  position: relative;
  overflow: hidden;
}

/* decorative glow shapes */

.dct-cta-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -120px;
  left: -120px;
}

.dct-cta-section::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  bottom: -120px;
  right: -120px;
}

/* TITLE */

.dct-cta-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* TEXT */

.dct-cta-text {
  font-size: 18px;
  opacity: .9;
  max-width: 650px;
  margin: auto;
}

/* BUTTON */

.dct-cta-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 40px;
  background: #fff;
  color: #0d4d8b;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  transition: all .35s ease;
}

/* button hover */

.dct-cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  background: #f2f6ff;
}

/* responsive */

@media(max-width:768px) {

  .dct-cta-title {
    font-size: 30px;
  }

  .dct-cta-text {
    font-size: 16px;
  }

}

/* ===== DC TECH FOOTER ===== */

.dct-footer {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #cbd5e1;
  font-family: "Poppins", sans-serif;
}

/* LOGO */

.dct-footer-logo {
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}

/* DESCRIPTION */

.dct-footer-desc p {
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5e1;
}

/* DIVIDER */

.dct-footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 25px 0;
}

/* TITLES */

.dct-footer-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
}

/* underline accent */

.dct-footer-title::after {
  content: "";
  width: 35px;
  height: 3px;
  background: #3b82f6;
  display: block;
  margin-top: 6px;
  border-radius: 2px;
}

/* LINKS */

.dct-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dct-footer-links li {
  margin-bottom: 10px;
}

.dct-footer-links a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 14px;
  transition: all .3s ease;
  position: relative;
}

/* HOVER EFFECT */

.dct-footer-links a:hover {
  color: #3b82f6;
  padding-left: 6px;
}

/* underline animation */

.dct-footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #3b82f6;
  transition: 0.3s;
}

.dct-footer-links a:hover::after {
  width: 100%;
}

/* RESPONSIVE */

@media(max-width:768px) {

  .dct-footer-logo {
    margin-bottom: 15px;
  }

  .dct-footer-desc {
    margin-top: 10px;
  }

}


/* ===== DC TECH RESULTS SECTION ===== */

.dct-results-section {
  position: relative;
  padding: 100px 0 80px;
  color: #111;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

/* BACKGROUND IMAGE */

.dct-results-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/result-bg.jpg") center/cover no-repeat;
  z-index: -2;
}

/* DARK OVERLAY */

.dct-results-bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  top: 0;
  left: 0;
}

/* TITLE */

.dct-results-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}

/* TEXT */

.dct-results-text {
  font-size: 17px;
  color: #444;
  max-width: 600px;
  line-height: 1.7;
}

/* STATS ROW */

.dct-results-stats {
  margin-top: 60px;
}

/* STAT CARD */

.dct-results-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: all .35s ease;
  height: 100%;
}

/* HOVER EFFECT */

.dct-results-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

/* NUMBER */

.dct-results-number {
  font-size: 36px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 5px;
}

/* SUB HEADING */

.dct-results-heading {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */

.dct-results-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */

@media(max-width:768px) {

  .dct-results-title {
    font-size: 28px;
    text-align: center;
  }

  .dct-results-text {
    text-align: center;
    margin: auto;
  }

}

.dc-spectrum-section {
  background: #f6f6f6;
}

/* CIRCLE */

.dc-spectrum-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 15px solid #d2d2d2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  color: #0a2e66;
  font-weight: 700;
  text-align: center;
  position: relative;
}

/* MENU */

.dc-spectrum-item {
  margin-bottom: 25px;
  color: #999;
  cursor: pointer;
  transition: .3s;
}

.dc-spectrum-item a {
  text-decoration: none;
  color: inherit;
}

.dc-spectrum-item:hover {
  color: #0a2e66;
}

.dc-spectrum-item.active {
  color: #0a2e66;
  font-weight: 700;
}

/* RIGHT BOX */

.dc-spectrum-box {
  background: #0a2e66;
  border-radius: 70px 0 0 0;
  position: relative;
  z-index: 2;
}

/* IMAGES */

.dc-spectrum-img {
  position: absolute;
  opacity: 0;
  transition: .5s;
}

.dc-spectrum-img.active {
  opacity: 1;
}

/* TOP IMAGE */

.dc-img-talent {
  width: 170px;
  top: -60px;
  right: 0;
  border-radius: 80px 0 0 0;
}

/* MIDDLE IMAGE */

.dc-img-team {
  width: 200px;
  bottom: -50px;
  right: 0;
  border-radius: 0 0 0 80px;
}

/* PROJECT IMAGE */

.dc-img-project {
  width: 200px;
  bottom: -50px;
  right: 0;
  border-radius: 0 0 0 80px;
}

.dc-spectrum-circle {
  width: 320px;
  height: 320px;

  border-radius: 50%;
  border: 18px solid #d6d6d6;
  border-right-color: transparent;
  border-bottom-color: transparent;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: auto;
  color: #0a2e66;
  font-weight: 700;
  text-align: center;
  position: relative;
}

.dc-spectrum-circle::after {
  content: "";
  position: absolute;

  width: 320px;
  height: 320px;

  border-radius: 50%;
  border: 18px solid transparent;
  border-bottom-color: #0a2e66;

  transform: rotate(-40deg);
}


.dc-bottom-links {
  background: #f5f7fb;
  padding: 60px 0;
}

.dc-bottom-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.dc-link-card {

  background: #fff;
  padding: 25px 35px;

  border-radius: 12px;

  display: flex;
  align-items: center;
  gap: 12px;

  text-decoration: none;

  font-weight: 600;
  color: #333;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

  transition: 0.35s;
}

.dc-link-card i {

  font-size: 20px;
  color: #0a2e66;

  transition: 0.3s;
}

.dc-link-card:hover {

  transform: translateY(-6px);

  background: #0a2e66;

  color: #fff;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.dc-link-card:hover i {
  color: #fff;
}

.dc-share-section {

  padding: 80px 0;

  background: linear-gradient(135deg, #f5f8ff, #eef3ff);

}

/* IMAGE */

.dc-share-image img {

  max-width: 420px;

  transition: 0.4s;

}

.dc-share-image:hover img {

  transform: translateY(-8px) scale(1.03);

}

/* CONTENT CARD */

.dc-share-content {

  background: #fff;

  padding: 40px;

  border-radius: 18px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

}

/* HEADING */

.dc-share-content h3 {

  font-weight: 700;

  margin-bottom: 15px;

  color: #0a2e66;

}

/* TEXT */

.dc-share-content p {

  color: #666;

  line-height: 1.7;

}

/* SHARE BUTTONS */

.dc-share-buttons {

  margin-top: 25px;

  display: flex;

  gap: 15px;

  flex-wrap: wrap;

}

.dc-share-btn {

  background: #0a2e66;

  color: #fff;

  padding: 10px 18px;

  border-radius: 30px;

  font-size: 14px;

  text-decoration: none;

  display: flex;

  align-items: center;

  gap: 8px;

  transition: 0.3s;

}

.dc-share-btn:hover {

  background: #1d4ed8;

  transform: translateY(-3px);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

}

.dc-role-section {

  padding: 70px 0;

  background: #f6f8fc;

}

/* CARD */

.dc-role-card {

  display: flex;

  align-items: center;

  gap: 20px;

  background: #fff;

  padding: 28px;

  border-radius: 16px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.35s;

  height: 100%;

}

.dc-role-card:hover {

  transform: translateY(-6px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);

}

/* ICON */

.dc-role-icon {

  width: 60px;

  height: 60px;

  border-radius: 14px;

  background: linear-gradient(135deg, #0a2e66, #1d4ed8);

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 24px;

  flex-shrink: 0;

}

/* CONTENT */

.dc-role-content h5 {

  font-weight: 700;

  margin-bottom: 8px;

  color: #0a2e66;

}

.dc-role-content p {

  color: #666;

  font-size: 14px;

  margin-bottom: 10px;

}

/* BUTTON */

.dc-role-btn {

  text-decoration: none;

  font-weight: 600;

  color: #0a2e66;

  display: inline-flex;

  align-items: center;

  gap: 6px;

  transition: 0.3s;

}

.dc-role-btn span {

  transition: 0.3s;

}

.dc-role-btn:hover span {

  transform: translateX(5px);

}

.dc-testimonial-section {

  padding: 80px 0;

  background: linear-gradient(135deg, #f6f8ff, #eef2ff);

}

/* TITLE */

.dc-testimonial-title {

  font-weight: 700;

  margin-bottom: 50px;

  color: #0a2e66;

}

/* CARD */

.dc-testimonial-card {

  background: #fff;

  padding: 40px 25px 30px;

  border-radius: 18px;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);

  position: relative;

  transition: 0.35s;

}

.dc-testimonial-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);

}

/* AVATAR */

.dc-avatar {

  width: 80px;

  height: 80px;

  border-radius: 50%;

  overflow: hidden;

  margin: -60px auto 15px;

  border: 4px solid #fff;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

}

.dc-avatar img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}

/* QUOTE ICON */

.dc-quote-icon {

  font-size: 22px;

  color: #1d4ed8;

  margin-bottom: 10px;

}

/* TEXT */

.dc-testimonial-card p {

  font-size: 15px;

  color: #555;

  line-height: 1.7;

}

/* CORPORATE FOOTER */
.corporate-footer {
  background: #0d4d8b;
  color: white;
}

.corporate-footer h5 {
  margin-bottom: 15px;
  font-weight: 600;
}

.referral-hero {
  position: relative;
  background: url("../img/refer.jpg") center/cover no-repeat;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Blue overlay */
.referral-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13, 79, 139, 0.85), rgba(13, 79, 139, 0.85));
}

/* Content above overlay */
.referral-hero .container {
  position: relative;
  z-index: 2;
}

.referral-hero h1 {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 40px;
}

.refer-btn {
  display: inline-block;
  padding: 15px 45px;
  background: #5fb2da;
  color: #fff;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.refer-btn:hover {
  background: #3c9ac9;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .referral-hero h1 {
    font-size: 36px;
  }

  .referral-hero {
    height: 400px;
  }
}

.how-it-works {
  background: #f3f3f3;
  padding: 80px 0;
}

.how-it-works h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.lead-text {
  max-width: 800px;
  margin: auto;
  color: #555;
}

.work-card {
  background: #fff;
  padding: 50px 25px 40px;
  border-radius: 40px;
  border: 2px solid #5ea4d6;
  position: relative;
  transition: 0.3s;
  height: 100%;
}

.work-card:hover {
  transform: translateY(-5px);
}

.icon-circle {
  width: 110px;
  height: 110px;
  background: #9dc6e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: -100px auto 30px;
}

.work-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.work-card p {
  color: #555;
}

/* Responsive */
@media (max-width: 992px) {
  .icon-circle {
    margin-top: -80px;
  }
}

.download-bar {
  background: #2f63b5;
  padding: 20px 0;
  color: #fff;
}

.store-btn {
  display: inline-block;
  margin: 10px;
  padding: 8px 20px;
  border: 1px solid #fff;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
}

/* TESTIMONIALS */
.testimonials {
  padding: 60px 0;
}

.avatar-circle {
  width: 180px;
  height: 180px;
  background: #2f63b5;
  border-radius: 50%;
  margin: auto;
}

/* ROLE CARDS */
.roles-section {
  padding: 50px 0;
}

.role-card {
  display: flex;
  align-items: center;
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.role-icon {
  width: 80px;
  height: 80px;
  background: #f5b82e;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-right: 20px;
}

/* SHARE SECTION */
.share-section {
  background: #f3f3f3;
  padding: 70px 0;
}

.share-illustration {
  width: 250px;
  height: 250px;
  background: #2f63b5;
  border-radius: 50%;
  margin: auto;
}

/* BOTTOM LINKS */
.bottom-links {
  padding: 40px 0;
  border-top: 1px solid #ddd;
}

.bottom-links a {
  margin: 0 20px;
  text-decoration: none;
  color: #2f63b5;
  font-weight: 500;
}

/* SECTION */
.visa-section {
  padding: 100px 0;
  background: #f3f3f3;
  overflow: hidden;
}

/* LEFT TEXT */
.visa-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
}

.visa-text {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

/* RIGHT SIDE */
.dot-bg {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #2f63b5 2px, transparent 2px);
  background-size: 15px 15px;
  border-radius: 50%;
  margin: auto;
  opacity: 0.25;
}

/* STAT COMMON */
.stat {
  position: absolute;
  background: #2f63b5;
  color: #fff;
  padding: 30px;
  border-radius: 50%;
  text-align: center;
}

/* 99% */
.stat-approval {
  width: 200px;
  height: 200px;
  left: 40px;
  bottom: 40px;
}

/* 38k */
.stat-cases {
  width: 170px;
  height: 170px;
  top: 0;
  right: 60px;
  background: #1f3f73;
}

/* 4.8 */
.stat-rating {
  width: 180px;
  height: 180px;
  bottom: 0;
  right: 0;
  background: #1e7db2;
}

.stat h2,
.stat h3 {
  margin: 0;
  font-weight: 700;
}

.stat p {
  font-size: 14px;
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .visa-title {
    font-size: 32px;
  }

  .dot-bg {
    width: 300px;
    height: 300px;
  }

  .stat {
    position: relative;
    margin: 20px auto;
    left: unset;
    right: unset;
    top: unset;
    bottom: unset;
  }
}

.visa-cta {
  background: #0f4f8b;
  padding: 80px 0;
  color: #fff;
}

.visa-cta h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 35px;
}

.cta-btn {
  display: inline-block;
  padding: 15px 40px;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #fff;
  color: #0f4f8b;
}

/* Responsive */
@media (max-width: 768px) {
  .visa-cta h2 {
    font-size: 26px;
  }
}

.expect-section {
  background: #f5f5f5;
}

/* LEFT IMAGE */
.expect-image {
  height: 600px;
  background:
    linear-gradient(to right,
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0.2)),
    url("../img/Visa-expect.png") center/cover no-repeat;
}

/* RIGHT CONTENT */
.expect-content {
  padding: 80px;
}

.expect-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
}

.expect-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.expect-content ul {
  font-size: 18px;
  line-height: 2;
  padding-left: 20px;
}

.expect-content li {
  margin-bottom: 5px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .expect-image {
    height: 350px;
  }

  .expect-content {
    padding: 40px 25px;
  }

  .expect-content h2 {
    font-size: 28px;
  }
}

.sponsor-process {
  background: #f4f4f4;
  padding: 100px 0;
}

.process-title {
  font-size: 34px;
  font-weight: 700;
}

/* CARD BASE */
.process-card {
  position: relative;
  padding: 40px 30px;
  border-radius: 40px;
  color: #fff;
  min-height: 220px;
}

.process-card h5 {
  font-weight: 700;
  margin-bottom: 15px;
}

.process-card p {
  font-size: 15px;
  line-height: 1.6;
}

/* STEP NUMBER */
.step-number {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 22px;
  font-weight: 700;
  opacity: 0.8;
}

/* COLOR VARIANTS */
.light {
  background: #3bb1c7;
}

.medium {
  background: #2a7ec7;
}

.dark {
  background: #0f4f8b;
}

.navy {
  background: #143d8f;
}

.deep {
  background: #1b2f57;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .process-card {
    border-radius: 25px;
  }
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.3);
}

.consultant-benefits {
  background: #f4f4f4;
  padding: 100px 0;
}

.benefits-title {
  font-size: 34px;
  font-weight: 700;
}

/* BENEFIT ITEM */
.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.benefit-icon {
  font-size: 28px;
  color: #2f63b5;
  margin-right: 20px;
  margin-top: 5px;
}

.benefit-item h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.benefit-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .benefit-item {
    margin-bottom: 30px;
  }
}

/* FAQ */
.faq-section {
  padding: 100px 0;
  background: #f4f4f4;
}

.faq-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

.faq-wrapper {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 18px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding-top: 10px;
  font-size: 15px;
  color: #555;
}

/* Toggle JS */
.faq-item.active .faq-answer {
  display: block;
}

/* Spotlight */
.consultant-spotlight {
  padding: 80px 0;
  background: #fff;
}

.consultant-spotlight h3 {
  font-weight: 700;
  margin-bottom: 20px;
}

.spotlight-btn {
  display: inline-block;
  padding: 10px 30px;
  background: #0f4f8b;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 15px;
}

.spotlight-images {
  position: relative;
  display: inline-block;
}

.spotlight-main {
  width: 260px;
  height: 260px;
  background: url("https://images.unsplash.com/photo-1544005313-94ddf0286df2") center/cover no-repeat;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

.spotlight-bg {
  width: 200px;
  height: 200px;
  background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e") center/cover no-repeat;
  position: absolute;
  top: -40px;
  right: -40px;
  border-radius: 30px;
  z-index: 1;
}

.talent-network {
  padding: 100px 0;
  background: #f4f4f4;
}

/* LEFT SIDE */
.network-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}

.talent-network p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

/* RIGHT SIDE GRAPHIC */
.hiring-circle {
  position: relative;
  width: 420px;
  height: 420px;
  margin: auto;
}

.center-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  background: #ffffff;
  border-radius: 50%;
  top: 110px;
  left: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  color: #1b2f57;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ARC BASE */
.arc {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
}

/* Individual arcs */
.contract {
  background: #3b6bb3;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.direct {
  background: #5ca8c9;
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

.cth {
  background: #1ca6a6;
  clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
}

/* Caption */
.circle-caption {
  margin-top: 30px;
  font-style: italic;
  color: #444;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .network-title {
    font-size: 30px;
  }

  .hiring-circle {
    width: 300px;
    height: 300px;
  }

  .center-circle {
    width: 140px;
    height: 140px;
    top: 80px;
    left: 80px;
    font-size: 14px;
  }
}

.final-cta {
  background: #0f4f8b;
  padding: 80px 0;
  color: #fff;
}

.final-cta h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 35px;
}

.final-cta-btn {
  display: inline-block;
  padding: 14px 45px;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s ease;
}

.final-cta-btn:hover {
  background: #fff;
  color: #0f4f8b;
}

/* Responsive */
@media (max-width: 768px) {
  .final-cta h2 {
    font-size: 26px;
  }
}

.staffing-section {
  padding: 100px 0;
  background: #f4f4f4;
}

/* CARD */
.staff-card {
  background: #fff;
  padding: 60px 45px;
  border-radius: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  height: 100%;
}

.staff-card h3 {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 25px;
}

.staff-card p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444;
}

.staff-card ul {
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.staff-card li {
  margin-bottom: 6px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .staff-card {
    border-radius: 30px;
    padding: 40px 30px;
  }
}

.coe-slider {
  padding: 100px 0;
  background: #f5f5f5;
}

.coe-slider h2 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 20px;
}

.coe-slider p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.btn-coe {
  background: #0f4f8b;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
}

.btn-coe:hover {
  background: #083763;
}

.coe-images {
  position: relative;
  display: inline-block;
}

.img-main {
  width: 380px;
  border-radius: 0 180px 0 0;
}

.img-overlay {
  width: 260px;
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: 0 0 0 180px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #0f4f8b;
  border-radius: 50%;
  padding: 15px;
}

.hiring-image-wrapper {
  position: relative;
  display: inline-block;
}

.hiring-image {
  max-width: 100%;
  width: 450px;
  border-radius: 0 200px 0 200px;
  /* curved style like your design */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.team-solutions {
  padding: 100px 0;
  background: #f7f9fc;
}

.team-solutions h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
}

.team-solutions p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #444;
}

.team-solutions ul {
  margin-bottom: 20px;
}

.team-solutions ul li {
  margin-bottom: 8px;
  font-size: 16px;
}

/* IMAGE STACK STYLE */
.image-stack {
  position: relative;
  display: inline-block;
}

.img-main {
  width: 420px;
  border-radius: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.img-small {
  width: 184px;
  position: absolute;
  top: -52px;
  right: -38px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.capabilities-section {
  padding: 100px 0;
  background: #f5f6f8;
}

.capabilities-section h2 {
  font-size: 36px;
  font-weight: 700;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
}

.accordion-button {
  background: transparent;
  font-weight: 600;
  font-size: 18px;
  padding: 20px 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  color: #0f4f8b;
  box-shadow: none;
}

.accordion-body {
  padding: 15px 0 25px 0;
  font-size: 16px;
  color: #555;
}

.visa-section {
  padding: 100px 0;
  background: #f6f7f9;
}

.visa-section h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 25px;
}

.visa-section p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

.visa-section ul {
  margin-bottom: 20px;
}

.visa-section ul li {
  margin-bottom: 8px;
  font-size: 16px;
}

.visa-link a {
  color: #0f4f8b;
  font-weight: 600;
  text-decoration: none;
}

.visa-link a:hover {
  text-decoration: underline;
}

.visa-image {
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.compliance-section {
  padding: 100px 0;
  background: #f4f2ef;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  max-width: 900px;
  margin: auto;
}

.compliance-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  height: 100%;
}

.compliance-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.compliance-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

.compliance-card ul {
  padding-left: 18px;
}

.compliance-card ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

.video-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 0, 30, 0.65);
  z-index: 2;
}

.carousel {
  position: relative;
  z-index: 3;
  height: 100%;
}

.carousel-inner {
  height: 100%;
}

.carousel-item {
  height: 100vh;
  display: block;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.hero-subtitle {
  font-size: 22px;
  display: block;
  margin-bottom: 20px;
  opacity: 0.85;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 40px;
}

.hero-btn {
  padding: 12px 35px;
  border: 2px solid #fff;
  border-radius: 40px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #fff;
  color: #000;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 40px;
  height: 40px;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.carousel-item {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* ADD THIS */
}

.hero-content {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  /* ADD THIS */
}

.insight-section {
  padding: 100px 0;
  background: #f4f4f4;
}

.insight-left {
  position: relative;
  padding-left: 80px;
}

.social-icons {
  position: absolute;
  left: 20px;
  top: 0;
  display: contents;
  flex-direction: row;
  gap: 25px;
}

.social-icons a {
  color: #999;
  font-size: 22px;
  transition: 0.3s;
  left: 20px;
}

.social-icons a:hover {
  color: #0b3d91;
}

.content h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 15px;
  margin-left: 60px;
}

.content p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0px;
  margin-left: 60px;
}

.insight-video {
  position: relative;
  height: 330px;
  overflow: hidden;
}

.insight-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay-text {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  text-align: right;
}

.video-overlay-text h3 {
  font-size: 38px;
  font-weight: 600;
}

.video-overlay-text span {
  opacity: 0.4;
}

.articles-section {
  padding: 100px 0;
  background: #f5f6f8;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-header h5 {
  color: #1d4ed8;
  letter-spacing: 3px;
  font-weight: 500;
  margin-bottom: 15px;
}

.section-header p {
  color: #666;
  max-width: 800px;
  margin: auto;
}

.article-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
  transition: 0.3s;
}

.article-card:hover {
  transform: translateY(-10px);
}

.article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 25px;
  text-align: center;
}

.category {
  font-size: 12px;
  letter-spacing: 2px;
  color: #999;
}

.card-content h4 {
  margin: 15px 0;
  font-weight: 600;
}

.plus-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #eee;
  font-size: 24px;
  cursor: pointer;
  transition: 0.3s;
}

.plus-btn:hover {
  background: #1d4ed8;
  color: white;
}

.read-more {
  margin-top: 15px;
  display: none;
}

.card-paragraph {
  display: none;
  margin-top: 10px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.read-btn {
  display: none;
  margin-top: 12px;
  display: none;
  text-decoration: none;
  color: #1d4ed8;
  font-weight: 600;
}

.article-card {
  position: relative;
  padding-bottom: 30px;
}

.articles-section {
  padding: 80px 0;
  background: #f4f6f9;
}

.article-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: 0.3s;
  text-align: center;
}

.article-card:hover {
  transform: translateY(-8px);
}

.article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 25px;
}

.category {
  font-size: 12px;
  letter-spacing: 2px;
  color: #888;
}

.card-title {
  margin: 15px 0;
  font-weight: 600;
}

.card-paragraph {
  display: none;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.plus-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #e5e7eb;
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s;
}

.plus-btn:hover {
  background: #1d4ed8;
  color: white;
}

.read-btn {
  display: none;
  text-decoration: none;
  color: #1d4ed8;
  font-weight: 600;
  margin-top: 10px;
}

.journey-section {
  padding: 100px 0;
  background: #f7f9fc;
}

.journey-header h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 50px;
}

.journey-content {
  max-width: 1000px;
  margin: auto;
}

.journey-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

.integrated-section {
  padding: 100px 0;
  background: linear-gradient(to right, #eef2f7, #e8edf4);
}

.integrated-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
}

.integrated-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
}

.contact-btn {
  display: inline-block;
  padding: 12px 35px;
  border: 2px solid #0b3d91;
  border-radius: 40px;
  text-decoration: none;
  color: #0b3d91;
  font-weight: 600;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #0b3d91;
  color: white;
}

.integrated-image img {
  max-width: 100%;
  height: auto;
}

.experts-section {
  padding: 100px 0;
  background: linear-gradient(to right, #eef2f7, #e9edf5);
}

.experts-wrapper {
  background: white;
  padding: 60px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
}

.expert-card {
  text-align: center;
  transition: 0.4s ease;
  max-width: 320px;
  /* Card width fix */
  margin: auto;
  /* Center card */
}

.expert-img {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  height: 260px;
  /* Image height fix */
}

.expert-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Image crop karega, stretch nahi hoga */
  transition: 0.4s ease;
}

.expert-card:hover img {
  transform: scale(1.05);
}

.experts-wrapper {
  background: white;
  padding: 50px 30px;
  /* Pehle 60px tha */
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.experts-section {
  padding: 100px 0;
  background: linear-gradient(to right, #eef2f7, #e9edf5);
}

.experts-wrapper {
  background: white;
  padding: 60px 30px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 60px;
}

/* Card */
.expert-card {
  max-width: 260px;
  text-align: center;
  transition: 0.4s ease;
}

.expert-card:hover {
  transform: translateY(-10px);
}

/* Image */
.expert-img {
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
}

.expert-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.expert-card:hover img {
  transform: scale(1.06);
}

/* Text */
.expert-info {
  margin-top: 20px;
}

.expert-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
}

.role {
  color: #888;
  margin-bottom: 3px;
}

.dept {
  font-size: 13px;
  letter-spacing: 1px;
  color: #555;
}

/* Overlay + */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 61, 145, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s ease;
}

.overlay span {
  font-size: 40px;
  color: white;
  font-weight: bold;
}

.expert-card:hover .overlay {
  opacity: 1;
}

/* Text */
.expert-info {
  margin-top: 25px;
}

/* OUTER BIG CARD */
.articles-wrapper {
  padding: 100px 0;
  background: linear-gradient(to right, #eaf1f7, #dde6f2);
}

.articles-container {
  background: #fff;
  padding: 70px 40px;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* HEADER */
.articles-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.sub-heading {
  color: #0b3d91;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.articles-header p {
  max-width: 700px;
  margin: auto;
  color: #666;
  margin-bottom: 60px;
}

/* CARD */
.article-card {
  width: 100%;
  max-width: 350px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  position: relative;
}

.article-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.image-box {
  height: 220px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.article-card:hover img {
  transform: scale(1.08);
}

/* CONTENT */
.card-content {
  padding: 25px;
  text-align: center;
}

.category {
  font-size: 12px;
  letter-spacing: 2px;
  color: #888;
}

.card-title {
  font-weight: 700;
  margin: 15px 0;
}

.card-paragraph {
  font-size: 14px;
  color: #666;
  display: none;
}

/* BUTTONS */
.plus-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f1f1f1;
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.plus-btn:hover {
  background: #0b3d91;
  color: white;
}

.read-btn {
  display: none;
  margin-top: 15px;
  color: #0b3d91;
  font-weight: 600;
  text-decoration: none;
}

.expert-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
}

.role {
  color: #888;
  margin-bottom: 5px;
}

.dept {
  letter-spacing: 2px;
  font-size: 14px;
  color: #444;
}

/* Social Icons */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin: 0 8px;
  width: 40px;
  height: 40px;
  background: #f1f3f8;
  border-radius: 8px;
  line-height: 40px;
  color: #0b3d91;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #0b3d91;
  color: white;
  transform: translateY(-4px);
}

.article-section {
  padding: 80px 0;
  position: relative;
}

.publish-date {
  letter-spacing: 2px;
  font-size: 14px;
  color: #888;
}

.article-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.3;
}

.article-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.graph-image {
  margin: 50px 0;
  text-align: center;
}

.graph-image img {
  max-width: 85%;
  margin: auto;
  display: block;
}

.ai-cards-section {
  position: relative;
  margin-top: -60px;
  /* overlap with upper section */
  padding-bottom: 120px;
}

.ai-card {
  background: #233a63;
  color: #fff;
  width: 70%;
  margin: 0 auto 120px auto;
  padding: 60px;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}

.ai-card h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
}

.ai-card p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #d6dbe7;
}

.ai-card ul {
  padding-left: 20px;
}

.ai-card li {
  margin-bottom: 15px;
  font-size: 17px;
  color: #e4e8f3;
}

.ai-card li strong {
  color: #ffffff;
}

b,
strong {
  font-weight: bolder;
  margin-left: 60px;
}

/* Slight vertical layering effect */
.ai-card:nth-child(2) {
  margin-top: -80px;
}

.ai-card:nth-child(3) {
  margin-top: -80px;
}

.ai-card:nth-child(4) {
  margin-top: -80px;
}

/* Author Box */
.author-box {
  background: #f2f2f2;
  padding: 30px;
  border-radius: 10px;
}

.author-box h5 {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author h6 {
  font-size: 18px;
  margin-bottom: 5px;
}

.author p {
  font-size: 14px;
  margin-bottom: 5px;
}

/* Social Icons */
.social-icons {
  position: fixed;
  left: 40px;
  top: 200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.social-icons a {
  color: #555;
  font-size: 18px;
}

.social-icons a:hover {
  color: #0077b5;
}

.quote-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #001f3f, #1e90c2);
  text-align: center;
  color: #fff;
}

.quote-content {
  max-width: 900px;
  margin: auto;
}

.quote-text {
  font-size: 26px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 40px;
}

.quote-author {
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 600;
}

.data-work-section {
  padding: 100px 0;
  background: #ffffff;
}

.data-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.data-intro {
  font-size: 18px;
  margin-bottom: 30px;
  color: #555;
}

.sub-heading {
  letter-spacing: 3px;
  font-size: 16px;
  font-weight: 600;
  margin: 30px 0 20px;
}

.data-work-section p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

/* Blob Image Style */
.blob-image {
  width: 500px;
  height: 500px;
  margin: auto;
  overflow: hidden;
  position: relative;
  border-radius: 50% 40% 60% 50% / 60% 50% 50% 40%;
}

.blob-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 991px) {
  .blob-image {
    width: 350px;
    height: 350px;
    margin-top: 40px;
  }

  .data-title {
    font-size: 32px;
  }
}

.asset-section {
  padding: 120px 0;
  background: #f8f8f8;
  position: relative;
}

.asset-title {
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 30px;
}

.asset-section p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

/* Circles */
.circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle-top {
  top: -50px;
  left: 0;
}

.circle-bottom {
  bottom: -50px;
  left: 150px;
}

/* Quote Card */
.asset-quote-card {
  position: relative;
  background: #2e8bb8;
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  width: 380px;
  margin-top: 120px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.asset-quote-card p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.asset-quote-card span {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
  .circle {
    position: relative;
    margin: 20px auto;
  }

  .circle-bottom {
    left: 0;
  }

  .asset-quote-card {
    width: 100%;
    margin: 30px 0;
  }
}

.unlock-section {
  padding: 120px 0;
  background: #ffffff;
}

.unlock-title {
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 40px;
}

.unlock-section p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

/* Image */
.unlock-image {
  max-width: 500px;
  margin: auto;
}

.unlock-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 991px) {
  .unlock-section {
    padding: 80px 0;
  }

  .unlock-title {
    font-size: 22px;
  }

  .unlock-image {
    margin-top: 40px;
  }
}

.ai-talent-section {
  padding: 120px 0;
  background: #f5f6f8;
  position: relative;
}

.content-area h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
}

.content-area p {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

.content-area h5 {
  margin-top: 30px;
  font-weight: 600;
}

.content-area ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.content-area li {
  margin-bottom: 10px;
}

/* RIGHT SIDE */
.image-area {
  position: relative;
  min-height: 700px;
}

/* Circle Images */
/* .circle-img {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
} */

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Positioning */
.top-img {
  top: 0;
  right: 0;
}

.bottom-img {
  bottom: 0;
  right: 80px;
}

/* Quote Card */
.quote-card {
  position: absolute;
  top: 40%;
  right: 20px;
  width: 420px;
  background: #000;
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  z-index: 5;
}

.quote-card p {
  font-size: 18px;
  line-height: 1.6;
}

.quote-card span {
  display: block;
  margin-top: 20px;
  font-weight: 600;
  font-size: 14px;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 1200px) {
  .circle-img {
    width: 320px;
    height: 320px;
  }

  .quote-card {
    width: 360px;
    padding: 30px;
  }
}

@media (max-width: 992px) {
  .ai-talent-section {
    padding: 80px 0;
  }

  .image-area {
    min-height: auto;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .circle-img {
    position: relative;
    width: 280px;
    height: 280px;
    margin-bottom: 40px;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
  }

  .quote-card {
    position: relative;
    width: 90%;
    margin: -60px auto 40px auto;
    top: auto;
    right: auto;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .content-area h2 {
    font-size: 28px;
  }

  .content-area p {
    font-size: 16px;
  }

  .quote-card {
    padding: 25px;
  }

  .quote-card p {
    font-size: 16px;
  }

  .circle-img {
    width: 220px;
    height: 220px;
  }
}

/* HERO SECTION */

.hero {
  height: 100vh;
  background:
    linear-gradient(rgba(0, 60, 120, 0.7), rgba(0, 30, 90, 0.9)),
    url("../img/power-transmission.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
  padding: 0 20px;
}

/* Content */
.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 900px;
  margin: 20px auto;
}

.sub-text {
  font-size: 18px;
  opacity: 0.8;
}

/* Scroll Arrow */
.scroll-down {
  margin-top: 40px;
  font-size: 22px;
  animation: bounce 1.5s infinite;
}

/* Bounce Animation */
@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* Fixed Social Icons */
.social-fixed {
  position: fixed;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 999;
}

.social-fixed a {
  color: #9aa4b2;
  font-size: 20px;
  transition: 0.3s ease;
}

.social-fixed a:hover {
  color: #ffffff;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .social-fixed {
    display: none;
  }
}

.hero-section {
  position: relative;
  height: 100vh;
  background: linear-gradient(to bottom, #0a7fa4, #0b3c8a);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Optional abstract pattern effect */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%,
      rgba(255, 255, 255, 0.08),
      transparent 40%),
    radial-gradient(circle at 80% 70%,
      rgba(255, 255, 255, 0.05),
      transparent 40%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.scroll-down {
  margin-top: 40px;
  font-size: 32px;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(10px);
  }

  60% {
    transform: translateY(5px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 30px;
  }
}

.glance-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(to bottom, #0b3c8a, #1558b0);
  color: #ffffff;
}

.glance-container {
  width: 85%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

/* SOCIAL ICONS */
.social-icons {
  position: absolute;
  left: 45px;
  top: 0px;
  display: contents;
  flex-direction: row;
  gap: 5px;
}

.social-icons img {
  width: 22px;
  opacity: 0.8;
  transition: 0.3s;
}

.social-icons img:hover {
  opacity: 1;
}

/* LEFT CONTENT */
.glance-left {
  flex: 1;
}

.glance-left h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

.glance-left p {
  line-height: 1.8;
  font-size: 16px;
  max-width: 600px;
}

.info-block {
  margin-top: 40px;
}

.info-block h4 {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #cbd6ff;
}

/* TEAM CARD */
.team-card {
  width: 420px;
  background: #e6e6e6;
  padding: 40px;
  border-radius: 8px;
  color: #222;
}

.team-card h5 {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 30px;
  color: #777;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}

.team-member:last-child {
  border-bottom: none;
}

.team-member img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.team-member h3 {
  margin: 0;
  font-size: 20px;
}

.team-member span {
  font-size: 14px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .glance-container {
    flex-direction: column;
  }

  .team-card {
    width: 100%;
    margin-top: 50px;
  }

  .social-icons {
    display: none;
  }
}

.cta-section {
  background: #e9e9e9;
  padding: 80px 0;
}

.cta-container {
  width: 85%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-container h2 {
  font-size: 48px;
  font-weight: 400;
  color: #777;
}

.cta-btn {
  padding: 14px 40px;
  border: 2px solid #777;
  border-radius: 40px;
  text-decoration: none;
  color: #777;
  font-size: 18px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #777;
  color: #fff;
}

@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .cta-container h2 {
    font-size: 28px;
  }
}

.challenge-section {
  background: #f3f3f3;
  padding: 100px 0;
}

.challenge-container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: stretch;
  gap: 60px;
}

/* LEFT SIDE */
.challenge-left {
  flex: 1;
  padding-right: 40px;
}

.challenge-left h2 {
  font-size: 48px;
  margin-bottom: 30px;
  color: #222;
}

.challenge-left p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 25px;
}

.challenge-left h4 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #111;
}

/* RIGHT SIDE */
.challenge-right {
  flex: 1;
}

.challenge-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .challenge-container {
    flex-direction: column;
  }

  .challenge-left {
    padding-right: 0;
  }

  .challenge-right img {
    margin-top: 40px;
    height: auto;
  }
}

.solution-section {
  position: relative;
  padding: 120px 0;
  color: #fff;
  overflow: hidden;
}

.solution-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
}

.solution-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #000 40%, rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.solution-container {
  position: relative;
  z-index: 2;
  width: 85%;
  margin: auto;
}

/* TOP CONTENT */
.solution-left {
  max-width: 700px;
}

.solution-left h2 {
  font-size: 48px;
  margin-bottom: 30px;
}

.solution-left p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.solution-left h4 {
  margin-top: 30px;
  margin-bottom: 10px;
}

/* BLUE CARD */
.journey-card {
  background: #2d8bb8;
  margin-top: 100px;
  padding: 60px;
  border-radius: 25px;
}

.journey-card h3 {
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.journey-steps {
  display: flex;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
}

.step {
  flex: 1;
  padding: 30px;
  border-right: 1px solid #444;
}

.step:last-child {
  border-right: none;
}

.step h5 {
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.journey-text {
  margin-top: 40px;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .solution-left {
    max-width: 100%;
  }

  .journey-steps {
    flex-direction: column;
  }

  .step {
    border-right: none;
    border-bottom: 1px solid #444;
  }

  .step:last-child {
    border-bottom: none;
  }

  .journey-card {
    padding: 30px;
  }
}

.deliverables-section {
  background: #f4f4f4;
  padding: 120px 0;
}

.deliverables-container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: stretch;
  gap: 60px;
}

/* LEFT SIDE */
.deliverables-left {
  flex: 1;
  padding-right: 40px;
}

.deliverables-left h2 {
  font-size: 48px;
  margin-bottom: 40px;
  color: #222;
}

.deliverables-left h4 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #111;
}

.deliverables-left p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* RIGHT SIDE */
.deliverables-right {
  flex: 1;
}

.deliverables-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .deliverables-container {
    flex-direction: column;
  }

  .deliverables-left {
    padding-right: 0;
  }

  .deliverables-right img {
    margin-top: 40px;
    height: auto;
  }
}

.outcomes-section {
  background: #000;
  color: #fff;
  padding: 120px 0;
}

.outcomes-container {
  width: 85%;
  margin: auto;
}

.outcomes-section h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 40px;
}

.outcomes-intro {
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
  line-height: 1.8;
}

.outcomes-section h4 {
  margin-top: 30px;
  margin-bottom: 20px;
}

.outcomes-list {
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
}

.outcomes-list li {
  margin-bottom: 12px;
}

.stats-card {
  margin-top: 90px;
  background: linear-gradient(135deg, #1fa2c9 0%, #2d8bb8 60%, #3aa0d1 100%);
  border-radius: 30px;
  padding: 70px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 20px;
}

/* Each column */
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Big Numbers */
.stat h3 {
  font-size: 64px;
  font-weight: 500;
  margin-bottom: 20px;
}

/* Text */
.stat p {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.6;
  max-width: 200px;
}

@media (max-width: 992px) {
  .stats-card {
    flex-direction: column;
    gap: 40px;
  }

  .outcomes-section h2 {
    font-size: 32px;
  }
}

/* HERO SECTION */
.contact-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.contact-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 50, 0.6);
}

.contact-hero-content {
  position: relative;
  color: #fff;
}

.contact-hero-content h1 {
  font-size: 64px;
  font-weight: 700;
}

.contact-hero-content p {
  font-size: 22px;
  max-width: 600px;
}

/* FORM SECTION */
.contact-form-section {
  background: #f4f4f4;
}

.contact-form-section h2 {
  font-size: 42px;
  font-weight: 600;
}

.contact-form-section label {
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-form-section .form-control {
  border-radius: 6px;
  padding: 14px;
  border: 1px solid #ccc;
}

.contact-form-section .btn-primary {
  background: #0b3c8a;
  border: none;
}

.contact-form-section .btn-primary:hover {
  background: #072c66;
}

.who-section {
  padding-top: 80px;
  position: relative;
  font-family: Arial;
}

.who-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.who-top {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.who-img {
  flex: 1;
}

.who-img img {
  width: 100%;
  border-radius: 8px;
}

.who-text {
  flex: 1;
}

.who-text h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.who-text p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Stats */

.stats-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 3;
}

.stat-card {
  background: #fff;
  padding: 30px;
  width: 220px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-card h2 {
  color: #2563eb;
  margin-bottom: 10px;
}

/* Blue slanted section */

.blue-bg {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  margin-top: -80px;
  padding: 140px 20px 80px;
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
  color: #fff;
}

.blue-content {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.blue-content h2 {
  margin-bottom: 20px;
}

.blue-content p {
  margin-bottom: 40px;
}

/* Cards */

.action-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.action-card {
  background: #fff;
  color: #333;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 12px;
  width: 320px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
}

.icon.k {
  background: #3b82f6;
}

.icon.partner {
  background: #10b981;
}

/* Responsive */

@media (max-width: 768px) {
  .who-top {
    flex-direction: column;
  }

  .stats-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .blue-bg {
    clip-path: none;
    padding-top: 120px;
  }

  .action-cards {
    flex-direction: column;
    align-items: center;
  }
}

.belief-section {
  padding: 100px 0;
  font-family: Arial;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.belief-grid {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* IMAGE BLOCKS */

.belief-images {
  display: flex;
  width: 420px;
}

.belief-box {
  position: relative;
  width: 100px;
  height: 200px;
  overflow: hidden;
}

.belief-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.belief-box::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.7;
}

.belief-box.blue::after {
  background: #2db3c7;
}

.belief-box.light::after {
  background: #7cc0e7;
}

.belief-box.green::after {
  background: #7cc043;
}

.belief-box.dark::after {
  background: #1e4e8c;
}

.icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 34px;
  color: #fff;
  z-index: 2;
}

/* CONTENT */

.belief-content {
  max-width: 500px;
}

.belief-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.belief-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.outline-btn {
  padding: 12px 24px;
  border: 2px solid #2f80c2;
  border-radius: 30px;
  color: #2f80c2;
  text-decoration: none;
  display: inline-block;
}

/* CORE VALUES */

.core-grid {
  margin-top: 120px;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.core-content {
  max-width: 450px;
}

.core-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.core-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* IMAGE COLLAGE */

.core-images {
  position: relative;
  width: 420px;
  height: 260px;
}

.core-images img {
  position: absolute;
  width: 150px;
  border-radius: 6px;
}

.img1 {
  left: 0;
  top: 0;
}

.img2 {
  left: 120px;
  top: 40px;
}

.img3 {
  left: 240px;
  top: 0;
}

.img4 {
  left: 170px;
  top: 140px;
}

/* RESPONSIVE */

@media (max-width: 768px) {

  .belief-grid,
  .core-grid {
    flex-direction: column;
    text-align: center;
  }

  .belief-images {
    justify-content: center;
  }

  .core-images {
    margin-top: 40px;
  }
}

.story-section {
  padding: 120px 0;
  background: #f6f7f8;
  font-family: Arial;
  overflow: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.story-grid {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  flex-wrap: wrap;
}

/* LEFT CONTENT */

.story-content {
  flex: 1;
  min-width: 320px;
}

.story-content h2 {
  font-size: 40px;
  margin-bottom: 25px;
  color: #333;
}

.story-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

/* RIGHT SIDE */

.story-right {
  flex: 1;
  position: relative;
  min-width: 320px;
  display: flex;
  justify-content: center;
}

/* TESTIMONIAL CARD */

.testimonial-card {
  background: #fff;
  padding: 60px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  max-width: 377px;
  position: relative;
  z-index: 3;
}

.quote {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #333;
}

.testimonial-card h4 {
  margin-bottom: 5px;
  font-size: 18px;
  letter-spacing: 1px;
}

.testimonial-card span {
  color: #555;
  font-size: 14px;
}

/* DOT PATTERN */

.dots {
  position: absolute;
  bottom: -40px;
  left: 0px;
  width: 157px;
  height: 136px;
  background-image: radial-gradient(#7cc6c9 2px, transparent 2px);
  background-size: 18px 18px;
  z-index: 1;
}

/* CIRCLES */

.circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.circle1 {
  width: 140px;
  height: 140px;
  background: #6ec2c4;
  top: -90px;
  right: 80px;
}

.circle2 {
  width: 140px;
  height: 140px;
  background: #1f4f95;
  top: -63px;
  right: 0;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .story-grid {
    flex-direction: column;
    gap: 50px;
  }

  .circle1,
  .circle2 {
    display: none;
  }

  .dots {
    left: 0;
  }
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #cfdfff;
}