* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fff;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===========================
   HEADER
=========================== */

.header {
  width: 100%;
  background: #f5f5f5;
  padding: 14px 0;
  position: relative;
  z-index: 99;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ===========================
   LOGO
=========================== */

.logo img {
  width: 320px;
  height: auto;
  object-fit: contain;
  display: block;
}
/* ===========================
   BUTTON
=========================== */

.consult-btn {
  min-width: 230px;
  height: 52px;

  background: #f85b45;
  color: #fff;

  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 24px;

  font-size: 15px;
  font-weight: 500;

  transition: 0.3s;
}

.consult-btn:hover {
  background: #1b3497;
  transform: translateY(-2px);
}
.info-icon {
  width: 28px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;

  color: #ffd700; /* Gold */

  font-size: 16px;
  font-weight: 700;

  flex-shrink: 0;
}
/* ===========================
   TABLET
=========================== */

@media (max-width: 992px) {
  .logo img {
    width: 170px;
  }

  .consult-btn {
    min-width: 210px;
    height: 48px;
    font-size: 14px;
  }
}

/* ===========================
   MOBILE
=========================== */
@media (max-width: 768px) {
  .header {
    padding: 16px 0;
  }

  .header-wrapper {
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    text-align: center;
  }

  .logo img {
    width: 180px;
    margin: 0 auto;
  }

  /* HIDE BUTTON */

  .consult-btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 4px 0;
  }

  .logo img {
    width: 160px;
  }
}

/* ===========================
   HERO SECTION
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */

.hero {
  min-height: 760px;

  background:
    linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url("./assets/bannerimage-1.jpeg");

  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;

  padding: 70px 40px;

  font-family: "Poppins", sans-serif;
}

/* OVERLAY */
/* 
.hero-overlay{
  position:absolute;
  inset:0;

  background:
  radial-gradient(
    circle at top left,
    rgba(59,130,246,0.18),
    transparent 45%
  );

  z-index:1;
} */

/* CANVAS */

#starCanvas {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  pointer-events: none;

  z-index: 1;
}

/* HERO INNER */

.hero-inner {
  position: relative;
  z-index: 3;

  max-width: 1230px;
  margin: 0 auto;

  width: 100%;

  display: grid;
  grid-template-columns: 1fr 410px;

  gap: 70px;
  align-items: center;
}

/* ════════════════════════════════════════
   LEFT CONTENT
════════════════════════════════════════ */

.hero-text-block {
  max-width: 680px;
}

/* EYEBROW */

.hero-eyebrow {
  font-size: 14px;
  font-weight: 500;

  letter-spacing: 3px;
  text-transform: uppercase;

  color: #b0c4de;

  margin-bottom: 14px;
}

/* TITLE */

.hero-title {
  font-size: 64px;
  line-height: 1.08;

  font-weight: 700;
  color: #102a5c;

  margin-bottom: 24px;
}

/* DESCRIPTION */

.hero-desc {
  font-size: 15px;
  line-height: 1.9;

  color: black;

  max-width: 560px;

  margin-bottom: 36px;
}

/* ════════════════════════════════════════
   INFO
════════════════════════════════════════ */

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 18px;

  color: black;
  margin-bottom: 38px;
}

.hero-info-row {
  display: flex;
  align-items: center;
  gap: 14px;

  color: black;

  font-size: 14px;
  line-height: 1.7;
}

.hero-info-row strong {
  color: black;
  font-weight: 600;
}

.info-icon {
  width: 26px;
  height: 26px;

  min-width: 26px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-dm {
  font-size: 14px;
  font-weight: 500;

  color: black;

  letter-spacing: 0.3px;
}

/* ════════════════════════════════════════
   FORM
════════════════════════════════════════ */

.hero-form {
  background: white;

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 18px;

  padding: 34px 28px;

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

/* FORM HEAD */

.form-head {
  text-align: center;
  margin-bottom: 28px;
}

.form-head h3 {
  color: #102a5c;

  font-size: 24px;
  font-weight: 600;

  line-height: 1.4;
}

/* FORM BODY */

.form-body .field {
  margin-bottom: 16px;
}

.form-body input,
.form-body select {
  width: 100%;

  height: 56px;

  border: none;
  outline: none;

  border-radius: 10px;

  padding: 0 18px;

  font-size: 14px;
  font-family: "Poppins", sans-serif;

  color: #102a5c;

  background: rgba(255, 255, 255, 0.12);

  border: 1px solid gray;

  transition: 0.3s;
}

/* PLACEHOLDER */

.form-body input::placeholder {
  color: #102a5c;
}

/* SELECT */

.form-body select {
  appearance: none;
  cursor: pointer;
}

.form-body select option {
  background: #0f172a;
  color: #ffffff;
}

/* FOCUS */

.form-body input:focus,
.form-body select:focus {
  border-color: rgba(255, 255, 255, 0.35);

  background: rgba(255, 255, 255, 0.16);
}

/* SELECT ARROW */

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "▼";

  position: absolute;
  right: 18px;
  top: 18px;

  font-size: 10px;
  color: #cbd5e1;

  pointer-events: none;
}

/* BUTTON */

.btn-form {
  width: 100%;

  height: 56px;

  border: none;
  border-radius: 10px;
  background: #f85b45;

  color: #ffffff;

  font-size: 15px;
  font-weight: 600;

  font-family: "Poppins", sans-serif;

  cursor: pointer;

  margin-top: 10px;

  transition: 0.3s;
}

.btn-form:hover {
  background: #1e40af;

  transform: translateY(-2px);

  box-shadow: 0 10px 24px rgba(29, 78, 216, 0.4);
}

/* ════════════════════════════════════════
   TABLET
════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero {
    min-height: auto;

    padding: 60px 22px;

    background-image:
      linear-gradient(rgba(5, 15, 35, 0), rgba(5, 15, 35, 0)),
      url("./assets/mobilebannervalusim.jpg");

    background-position: center;
  }

  .hero-inner {
    grid-template-columns: 1fr;

    gap: 40px;

    max-width: 600px;
  }

  .hero-text-block {
    text-align: center;

    margin: 0 auto;
  }

  .hero-desc {
    margin: 0 auto 30px auto;
  }

  .hero-info {
    align-items: center;
  }

  .hero-info-row {
    justify-content: center;
  }
}

/* ════════════════════════════════════════
   MOBILE
════════════════════════════════════════ */

@media (max-width: 768px) {
  .hero {
    padding: 60px 22px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* ===========================
     TEXT CONTENT
  =========================== */

  .hero-text-block {
    width: 100%;
    text-align: left;
  }

  .hero-eyebrow {
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 12px;

    text-align: left;
  }

  .hero-title {
    font-size: 52px;
    line-height: 1.12;

    margin-bottom: 26px;

    text-align: center;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.9;

    max-width: 100%;

    margin: 0 0 34px;

    text-align: center;
  }

  /* ===========================
     INFO SECTION
  =========================== */

  .hero-info {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 22px;

    margin-bottom: 30px;
  }

  .hero-info-row {
    display: flex;
    align-items: flex-start;

    gap: 16px;

    width: 100%;

    text-align: left;

    font-size: 15px;
    line-height: 1.8;

    color: black;
  }

  .info-icon {
    width: 24px;
    height: 24px;

    min-width: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 2px;
  }

  .info-icon svg {
    width: 20px;
    height: 20px;
  }

  .hero-info-row span {
    flex: 1;
  }

  .hero-dm {
    font-size: 14px;
    line-height: 1.8;

    text-align: left;
  }

  /* ===========================
     FORM
  =========================== */

  .hero-form {
    width: 100%;

    padding: 30px 22px;

    border-radius: 18px;
  }

  .form-head {
    margin-bottom: 24px;
  }

  .form-head h3 {
    font-size: 22px;
    line-height: 1.4;

    text-align: center;
  }

  .form-body .field {
    margin-bottom: 15px;
  }

  .form-body input,
  .form-body select {
    height: 56px;

    padding: 0 18px;

    font-size: 14px;

    border-radius: 10px;
  }

  .select-wrapper::after {
    right: 18px;
    top: 20px;
  }

  .btn-form {
    width: 100%;

    height: 56px;

    border-radius: 10px;

    font-size: 15px;

    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 45px 16px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-desc {
    font-size: 13px;
  }

  .hero-info-row {
    align-items: flex-start;
  }
}
.features-section {
  padding: 90px 0;
}

.featuresSlider {
  width: 100%;
  overflow: hidden;
  padding: 15px 0 35px;
}

.featuresSlider .swiper-slide {
  height: auto !important;
  display: flex;
}

.feature-card {
  border-radius: 28px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.blue-card:hover {
  box-shadow:
    0 15px 30px rgba(27, 52, 151, 0.1),
    0 5px 15px rgba(27, 52, 151, 0.05);
}

.pink-card:hover {
  box-shadow:
    0 15px 30px rgba(248, 91, 69, 0.1),
    0 5px 15px rgba(248, 91, 69, 0.05);
}

.green-card:hover {
  box-shadow:
    0 15px 30px rgba(23, 63, 57, 0.1),
    0 5px 15px rgba(23, 63, 57, 0.05);
}

.gray-card:hover {
  box-shadow:
    0 15px 30px rgba(135, 80, 156, 0.1),
    0 5px 15px rgba(135, 80, 156, 0.05);
}

/* CARD COLORS */

.blue-card {
  background: #e4f2fe;
}

.pink-card {
  background: #fdefe2;
}

.green-card {
  background: #f5f7e9;
}

.gray-card {
  background: #f4ebfc;
}

/* ICON */

.feature-icon {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  padding: 20px;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* CONTENT */

.feature-card h3 {
  font-size: 24px;
  color: #222;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* FEATURES NAVIGATION */

.features-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.features-prev,
.features-next {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #f85b45;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.features-prev:hover,
.features-next:hover {
  background: #f85b45;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.35);
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .features-section {
    padding: 60px 0;
  }

  .feature-card {
    border-radius: 22px;
    padding: 28px 20px;
  }

  .feature-icon {
    width: 85px;
    height: 85px;
    padding: 16px;
    margin-bottom: 18px;
  }

  .feature-card h3 {
    font-size: 22px;
  }

  .feature-card p {
    font-size: 15px;
    line-height: 1.7;
  }

  .features-navigation {
    margin-top: 25px;
  }

  .features-prev,
  .features-next {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}
/* ==========================
   VALUEISM SECTION
========================== */

/* ==========================
   SECTION
========================== */

.valueism-section {
  position: relative;
  padding: 90px 0;
  background: #f7f1ea;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================
   DECORATIVE ELEMENTS
========================== */

.leaf-shape {
  position: absolute;
  left: 0;
  bottom: 100px;
  width: 140px;
  z-index: 1;
}

.doodle-shape {
  position: absolute;
  left: 48%;
  top: 52%;
  width: 40px;
  z-index: 1;
}

.butterfly-shape {
  position: absolute;
  right: 80px;
  top: 160px;
  width: 70px;
  z-index: 1;
}

.flower-shape {
  position: absolute;
  right: 40px;
  bottom: 60px;
  width: 100px;
  z-index: 1;
}

/* ==========================
   LAYOUT
========================== */

.valueism-wrapper {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 620px;
  gap: 50px;
  align-items: center;
}

/* ==========================
   CONTENT
========================== */

.valueism-content h2 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.1;
  color: #072b67;
  margin: 0;
}

.valueism-content h2::after {
  content: "";
  display: block;
  width: 75px;
  height: 5px;
  background: #f3c31a;
  border-radius: 50px;
  margin-top: 18px;
}

.valueism-content p {
  max-width: 620px;
  margin: 30px 0 40px;

  font-size: 18px;
  line-height: 1.8;
  color: #24345f;
}

/* ==========================
   CARDS DESKTOP
========================== */

.valueism-cards {
  display: flex;
  align-items: stretch;
  gap: 18px;
}
.value-card {
  width: 180px;
  min-height: 160px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.12),
    0 4px 10px rgba(0, 0, 0, 0.06);
}
/* ICON */
.value-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* TITLE */
.value-card h3 {
  font-size: 18px;
  line-height: 1.45;
  color: #111111;
  font-weight: 500;
  margin: 0;
}

/* ==========================
   IMAGE
========================== */

.valueism-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.valueism-image img {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 1100px) {
  .valueism-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .valueism-content h2::after {
    margin: 18px auto 0;
  }

  .valueism-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .valueism-cards {
    justify-content: center;
  }

  .value-card {
    width: 200px;
    height: 220px;
  }

  .value-icon {
    width: 52px;
    height: 52px;
  }

  .value-card h3 {
    font-size: 17px;
  }

  .valueism-image img {
    max-width: 550px;
  }
}

/* ==========================
   MOBILE
========================== */
/* ==========================
   MOBILE VIEW
========================== */

@media (max-width: 768px) {
  .valueism-section {
    padding: 60px 0;
  }

  .valueism-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .valueism-content {
    text-align: center;
  }

  .valueism-content h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .valueism-content h2::after {
    margin: 15px auto 0;
  }

  .valueism-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
  }

  /* Cards */

  .valueism-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .value-card {
    width: 100%;
    max-width: 350px;
    height: 185px;

    background: #ffffff;
    border-radius: 24px;

    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  /* Icon */

  .value-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  /* Card Title */

  .value-card h3 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    margin: 0;
    color: #172654;
  }

  /* Image */

  .valueism-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .valueism-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 18px;
    display: block;
  }

  /* Hide Decorative Elements */

  .leaf-shape,
  .doodle-shape,
  .butterfly-shape,
  .flower-shape {
    display: none;
  }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px) {
  .valueism-section {
    padding: 50px 0;
  }

  .valueism-content h2 {
    font-size: 34px;
  }

  .valueism-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .value-card {
    max-width: 100%;
    height: 170px;
  }

  .value-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }

  .value-card h3 {
    font-size: 18px;
  }

  .valueism-image img {
    max-width: 100%;
  }
}

.skills-section {
  padding: 100px 0;
  background: #f8f7f4;
}

.skills-wrapper {
  display: grid;
  grid-template-columns: 1fr 500px;
  align-items: center;
  gap: 70px;
}

/* ===========================
   LEFT CONTENT
=========================== */

.skills-content h2 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.1;
  color: #072b67;
  margin: 0;

  margin-bottom: 24px;
  max-width: 650px;
}

.skills-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  max-width: 620px;
  margin-bottom: 40px;
}

/* ===========================
   TAGS
=========================== */

.skills-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 620px;
}

.skill-tag {
  height: 72px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 40px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}

.tag-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tag-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.skill-tag span {
  font-size: 16px;
  font-weight: 500;
  color: #222;
}

/* ===========================
   INSIGHT CARD
=========================== */

.insight-card {
  background: #dfeaf3;
  border-radius: 36px;
  padding: 36px 28px;
}

.insight-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  color: #222;
  font-weight: 500;
  margin-bottom: 38px;
}

.insight-card h3 img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.progress-item {
  margin-bottom: 34px;
}

.progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.progress-top span {
  font-size: 17px;
  font-weight: 600;
  color: #222;
}

.progress-top strong {
  font-size: 18px;
  color: #0c5d93;
}

.red-text {
  color: #b03b32 !important;
}

.green-text {
  color: #0b7a26 !important;
}

.progress-bar {
  width: 100%;
  height: 14px;
  background: #d7d7d7;
  border-radius: 30px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 30px;
}

.blue-fill {
  width: 90%;
  background: #156195;
}

.red-fill {
  width: 85%;
  background: #a43a32;
}

.green-fill {
  width: 78%;
  background: #0a7a22;
}

.insight-note {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-top: 10px;
  font-style: italic;
}

/* ===========================
   TABLET
=========================== */

@media (max-width: 1100px) {
  .skills-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {
  .skills-section {
    padding: 70px 0;
  }

  .skills-content {
    text-align: center;
  }

  .skills-content h2 {
    font-size: 38px;
    margin-bottom: 18px;
  }

  .skills-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
  }

  .skills-tags {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .skill-tag {
    height: 64px;
    justify-content: center;
  }

  .skill-tag span {
    font-size: 15px;
  }

  .insight-card {
    border-radius: 28px;
    padding: 28px 20px;
  }

  .insight-card h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .progress-top span {
    font-size: 15px;
  }

  .progress-top strong {
    font-size: 16px;
  }

  .progress-bar {
    height: 12px;
  }
}
/* ===========================
   LABS SECTION
=========================== */

.labs-section {
  padding: 100px 0;
  background: #f4f5f7;
}

/* ===========================
   HEADING
=========================== */

.labs-heading {
  text-align: center;
  margin-bottom: 55px;
}

.labs-heading h2 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.1;
  color: #072b67;
  margin: 0;
  font-weight: 600;
  margin-bottom: 14px;
}

.labs-heading p {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
}

/* ===========================
   WRAPPER
=========================== */

.labs-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

/* ===========================
   CARD
=========================== */

.lab-card {
  background: #fff;

  border-radius: 28px;

  overflow: hidden;

  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);

  display: flex;
  flex-direction: column;

  height: 100%;
}

/* ===========================
   IMAGE
=========================== */

.lab-image {
  width: 100%;
  height: 230px;
}

.lab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===========================
   CONTENT
=========================== */

.lab-content {
  padding: 22px 22px 24px;

  display: flex;
  flex-direction: column;

  flex: 1;
}

/* TOP */

.lab-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 18px;
}

/* TAG */

.age-tag {
  padding: 7px 14px;

  border-radius: 30px;

  font-size: 12px;
  font-weight: 600;
}

.blue-tag {
  background: #e6f2ff;
  color: #2070b8;
}

.pink-tag {
  background: #ffe8ec;
  color: #d0627c;
}

.green-tag {
  background: #e5f7ea;
  color: #1f8d45;
}

/* DURATION */

.duration {
  font-size: 13px;
  color: #777;
}

/* TITLE */

.lab-content h3 {
  font-size: 24px;
  line-height: 1.35;

  color: #1d1d1d;
  font-weight: 500;

  margin-bottom: 14px;

  min-height: 21px;
}

/* TEXT */

.lab-content p {
  font-size: 16px;
  line-height: 1.6;

  color: #666;

  margin-bottom: 28px;

  flex-grow: 1;

  min-height: 87px;
}

/* BUTTON */

.lab-btn {
  width: 100%;
  height: 54px;

  border-radius: 8px; /* Rectangle with slightly rounded corners */

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  font-weight: 600;

  transition: 0.3s;
}

/* BUTTON COLORS */

.blue-btn {
  border: 2px solid #2070b8;
  color: white;
  background: #2070b8;
}

.pink-btn {
  border: 2px solid #d0627c;
  color: white;
  background: #d0627c;
}

.green-btn {
  border: 2px solid #1f8d45;
  background: #1f8d45;
  color: white;
}

.lab-btn:hover {
  transform: translateY(-3px);
}

/* ===========================
   TABLET
=========================== */

@media (max-width: 1100px) {
  .labs-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================
   MOBILE
=========================== */

.labs-navigation {
  display: none;
}

@media (max-width: 768px) {
  .labs-section {
    padding: 9px 0;
  }

  .labs-heading {
    margin-bottom: 35px;
  }

  .labs-heading h2 {
    font-size: 38px;
  }

  .labs-heading p {
    font-size: 16px;
  }

  .labs-wrapper {
    display: flex;
    overflow-x: auto;

    gap: 22px;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;
  }

  .labs-wrapper::-webkit-scrollbar {
    display: none;
  }

  .lab-card {
    flex: 0 0 100%;
    min-width: 100%;

    scroll-snap-align: start;
  }

  .lab-image {
    height: 220px;
  }

  .lab-content {
    padding: 20px;
  }

  .lab-content h3 {
    font-size: 24px;
    min-height: auto;
  }

  .lab-content p {
    font-size: 15px;
    min-height: auto;
  }

  .lab-btn {
    height: 50px;
    font-size: 15px;
  }

  .labs-navigation {
    display: flex;
    justify-content: center;
    gap: 16px;

    margin-top: 25px;
  }

  .labs-prev,
  .labs-next {
    width: 45px;
    height: 45px;

    border: none;

    border-radius: 50%;

    background: #fff;

    cursor: pointer;

    font-size: 18px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
  }
}

@media (max-width: 480px) {
  .labs-heading h2 {
    font-size: 32px;
  }
}
/* ===========================
   LUMINOUS SECTION
=========================== */

.luminous-section {
  padding: 100px 0;
  background: #f8f7f4;
}

/* ===========================
   WRAPPER
=========================== */

.luminous-wrapper {
  width: 100%;
  max-width: 1150px;

  margin: 0 auto;

  background: #7058a8;

  border-radius: 30px;

  padding: 50px 55px;

  display: grid;
  grid-template-columns: 320px 1fr;

  gap: 70px;
  align-items: flex-start;
}

/* ===========================
   LEFT CONTENT
=========================== */

.luminous-content h2 {
  font-size: 28px;
  line-height: 1.2;

  color: white;
  font-weight: 600;

  margin-bottom: 24px;
}

.luminous-content p {
  font-size: 16px;
  line-height: 1.6;
  color: white;

  margin-bottom: 32px;
}

/* BUTTON */

.feature-btn {
  width: 210px;
  height: 54px;

  background: #ffffff;

  border-radius: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 15px;
  font-weight: 600;

  color: #1b6ea0;

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);

  transition: 0.3s;
}

.feature-btn:hover {
  transform: translateY(-3px);
}

/* ===========================
   FEATURES GRID
=========================== */

.luminous-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  column-gap: 36px;
  row-gap: 36px;
}

/* FEATURE ITEM */

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;

  min-height: 150px;
}

/* ICON */

.feature-icon {
  width: 60px;
  height: 60px;

  min-width: 60px;

  background: rgba(255, 255, 255, 0.16);

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.feature-icon img {
  width: 34px;
  height: 34px;

  object-fit: contain;
  display: block;
}

/* TEXT */

.feature-text {
  flex: 1;
}

.feature-text h3 {
  font-size: 18px;
  line-height: 1.45;

  color: #ffffff;
  font-weight: 600;

  margin-bottom: 10px;

  min-height: 58px;
}

.feature-text p {
  font-size: 14px;
  line-height: 1.4;

  color: #e5f3ff;

  min-height: 105px;
}

/* ===========================
   TABLET
=========================== */

@media (max-width: 1100px) {
  .luminous-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .luminous-content {
    text-align: center;
  }

  .feature-btn {
    margin: 0 auto;
  }
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {
  .luminous-section {
    padding: 28px 0;
  }

  .luminous-wrapper {
    padding: 40px 22px;
    border-radius: 24px;
    gap: 40px;
  }

  .luminous-content h2 {
    font-size: 34px;
    margin-bottom: 18px;

    text-align: left;
  }

  .luminous-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 26px;

    text-align: left;
  }
  .feature-btn {
    width: 100%;
    max-width: 240px;
    height: 52px;
    font-size: 14px;
  }

  .luminous-features {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .feature-item {
    min-height: auto;
  }

  .feature-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
  }

  .feature-icon img {
    width: 28px;
    height: 28px;
  }

  .feature-text h3 {
    font-size: 18px;
    min-height: auto;
  }

  .feature-text p {
    font-size: 13px;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .luminous-content h2 {
    font-size: 30px;
  }
}
/* ===========================
   TESTIMONIAL SECTION
=========================== */

.testimonial-section {
  padding: 100px 0;
  background: #081f42;
  overflow: hidden;
}

/* ===========================
   HEADING
=========================== */

.testimonial-heading {
  text-align: center;
  margin-bottom: 55px;
}

.testimonial-heading h2 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.1;
  color: WHITE;
  margin: 0;

  letter-spacing: 1px;
}

/* ===========================
   WRAPPER
=========================== */

.testimonial-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;

  align-items: stretch;
}

/* ===========================
   CARD
=========================== */

.testimonial-card {
  position: relative;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 30px;

  padding: 30px 24px;

  backdrop-filter: blur(10px);

  min-height: 320px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);

  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

/* ACTIVE CARD */

.active-card {
  transform: translateY(6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.28);
}

/* ===========================
   STARS
=========================== */

.stars {
  color: #f7d20f;

  font-size: 18px;
  letter-spacing: 4px;

  margin-bottom: 22px;
}

/* ===========================
   TEXT
=========================== */

.testimonial-text {
  font-size: 16px;
  line-height: 1.9;

  color: #f1f1f1;

  font-style: italic;

  margin-bottom: 35px;

  min-height: 150px;
}

/* ===========================
   USER
=========================== */

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* IMAGE */

.user-image {
  width: 58px;
  height: 58px;

  min-width: 58px;

  border-radius: 50%;

  overflow: hidden;

  border: 2px solid #2ec4ff;
}

.user-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;
}

/* CONTENT */

.user-content h3 {
  font-size: 18px;
  line-height: 1.4;

  color: #ffffff;
  font-weight: 600;

  margin-bottom: 4px;
}

.user-content span {
  font-size: 13px;
  color: #a7a7a7;
}

/* ===========================
   TABLET
=========================== */

@media (max-width: 1100px) {
  .testimonial-wrapper {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .testimonial-card {
    min-height: auto;
  }

  .testimonial-text {
    min-height: auto;
  }
}

/* ===========================
   MOBILE
=========================== */
.testimonial-navigation {
  display: none;
}

@media (max-width: 768px) {
  .testimonial-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;

    margin-top: 25px;
  }

  .testimonial-prev,
  .testimonial-next {
    width: 45px;
    height: 45px;

    border: none;
    outline: none;

    border-radius: 50%;

    background: #ffffff;

    font-size: 18px;
    font-weight: 600;

    cursor: pointer;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);

    transition: 0.3s;
  }

  .testimonial-prev:hover,
  .testimonial-next:hover {
    transform: translateY(-2px);
  }
}
@media (max-width: 768px) {
  .testimonial-wrapper {
    display: flex;
    overflow-x: auto;

    gap: 20px;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;
  }

  .testimonial-wrapper::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;

    scroll-snap-align: start;
  }
}

@media (max-width: 480px) {
  .testimonial-heading h2 {
    font-size: 28px;
  }
}
.destination-section {
  padding: 90px 0;
  background: #f8f7f4;
}

.destination-heading {
  text-align: center;
  margin-bottom: 55px;
}

.destination-heading h2 {
  font-size: 64px;
  line-height: 1.2;
  color: #072b67;
  font-weight: 600;
}

/* ===========================
   GRID
=========================== */

.destination-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* ===========================
   CARD
=========================== */

.destination-card {
  background: #dce9f5;
  border-radius: 111px;
  padding: 16px 20px;
  min-height: 125px;
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.destination-card:hover {
  transform: translateY(-5px);
}

/* ===========================
   ICON
=========================== */

.destination-icon {
  width: 96px;
  height: 96px;
  min-width: 96px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.destination-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

/* ===========================
   TEXT
=========================== */

.destination-card h3 {
  font-size: 24px;
  line-height: 1.4;
  color: #12291f;
  font-weight: 600;
}
/* Different color for each card */

.destination-card:nth-child(1) {
  background: #fee8ee;
}

.destination-card:nth-child(2) {
  background: #d3f0f1; /* Light Peach */
}

.destination-card:nth-child(3) {
  background: #f3f3d9; /* Light Green */
}

.destination-card:nth-child(4) {
  background: #f1e8fd; /* Light Pink */
}

.destination-card:nth-child(5) {
  background: #ebf4fd; /* Light Yellow */
}

.destination-card:nth-child(6) {
  background: #e7f4fe; /* Light Lavender */
}
/* ===========================
   TABLET
=========================== */

@media (max-width: 1100px) {
  .destination-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {
  .destination-section {
    padding: 70px 0;
  }

  .destination-heading {
    margin-bottom: 35px;
  }

  .destination-heading h2 {
    font-size: 38px;
    line-height: 1.3;
  }

  .destination-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .destination-card {
    width: 100%;
    min-width: 0;

    min-height: 140px;

    padding: 18px 12px;

    border-radius: 18px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    gap: 12px;
  }

  .destination-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
  }

  .destination-icon img {
    width: 40px;
    height: 40px;
  }

  .destination-card h3 {
    font-size: 18px;
    line-height: 1.4;
  }
}
@media (max-width: 480px) {
  .destination-heading h2 {
    font-size: 32px;
  }

  .destination-card h3 {
    font-size: 18px;
  }
}
.cta-section {
  padding: 110px 0 90px;
  background: #f8f7f4;
  overflow: hidden;
}

.cta-wrapper {
  position: relative;

  min-height: 290px;

  border-radius: 18px;

  background:
    linear-gradient(rgba(252, 80, 97, 1), rgba(252, 111, 89, 1)),
    url("./assets/Group.png");

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;

  padding: 55px 55px;

  overflow: visible;
}

/* ===========================
   LEFT CONTENT
=========================== */

.cta-content {
  max-width: 560px;
  z-index: 2;
}

.cta-content h2 {
  font-size: 38px;
  line-height: 1.08;
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
  max-width: 520px;
}

.cta-content p {
  font-size: 14px;
  line-height: 1.45;
  color: #f2f2f2;
  max-width: 520px;
  margin-bottom: 26px;
}

/* ===========================
   BUTTON
=========================== */

.cta-btn {
  width: 175px;
  height: 44px;

  background: #2443b7;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 15px;
  font-weight: 600;

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);

  transition: 0.3s;
}

.cta-btn:hover {
  transform: translateY(-3px);
}

/* ===========================
   RIGHT IMAGE
=========================== */

.cta-image {
  position: absolute;
  right: 70px;
  bottom: 1px;
}

.cta-image img {
  width: 530px;
  height: 450px;
  object-fit: contain;
  display: block;
}

/* ===========================
   TABLET
=========================== */

@media (max-width: 1100px) {
  .cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 35px 0;
    min-height: auto;
  }

  .cta-content {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .cta-image {
    position: relative;
    right: auto;
    margin: 0 auto;
  }
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {
  .cta-section {
    padding: 0px 0;
  }

  .cta-wrapper {
    padding: 40px 22px 0;
    border-radius: 18px;
    text-align: center;
  }

  .cta-content {
    max-width: 100%;
  }

  .cta-content h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .cta-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .cta-btn {
    margin: 0 auto;
    width: 190px;
    height: 50px;
    font-size: 15px;
  }

  .cta-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .cta-image img {
    width: 354px;
    height: 330px;
  }
}

@media (max-width: 480px) {
  .cta-content h2 {
    font-size: 26px;
  }
}
/* ===========================
   FOOTER SECTION
=========================== */

.footer-section {
  background: #dce9f5;

  padding: 55px 0 40px;

  overflow: hidden;

  margin-top: 0px;

  border-radius: 0;
}

/* ===========================
   FOOTER WRAPPER
=========================== */

.footer-section {
  background: #dce9f5;

  padding: 65px 0 25px;

  overflow: hidden;
}

/* TOP */

.footer-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;

  gap: 625px;

  align-items: flex-start;

  padding-bottom: 40px;
}

/* LEFT */

.footer-logo {
  margin-bottom: 18px;
}

.footer-logo img {
  width: 210px;
  object-fit: contain;
}

.footer-left p {
  font-size: 15px;
  line-height: 1.9;

  color: #4d5d6d;

  max-width: 270px;
}

/* RIGHT */

.footer-links-wrapper {
  display: flex;
  justify-content: space-between;

  gap: 60px;
}

.footer-links h3 {
  font-size: 17px;
  font-weight: 600;

  color: #1c5e93;

  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 14px;

  font-size: 14px;
  line-height: 1.8;

  color: #5d6a76;
}

.footer-links ul li a {
  color: #5d6a76;
}

.contact-list strong {
  color: #1c5e93;
}

/* BOTTOM */

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);

  padding-top: 22px;

  text-align: center;
}

.footer-copy {
  font-size: 13px;
  line-height: 1.8;

  color: #4d5d6d;
}
@media (max-width: 768px) {
  .footer-section {
    padding: 60px 0 22px;
    margin-top: 60px;
  }

  /* WRAPPER */

  .footer-wrapper {
    display: flex;
    flex-direction: column;

    gap: 40px;

    text-align: left;

    padding-bottom: 30px;
  }

  /* ===========================
     LEFT
  =========================== */

  .footer-left {
    width: 100%;
  }

  .footer-logo {
    margin-bottom: 18px;
  }

  .footer-logo img {
    width: 180px;
    height: auto;

    object-fit: contain;

    display: block;
  }

  .footer-left p {
    font-size: 14px;
    line-height: 1.8;

    color: #4d5d6d;

    max-width: 320px;
  }

  /* ===========================
     LINKS
  =========================== */

  .footer-links-wrapper {
    display: flex;
    flex-direction: column;

    gap: 35px;
  }

  .footer-links {
    width: 100%;
  }

  .footer-links h3 {
    font-size: 16px;
    font-weight: 600;

    margin-bottom: 16px;

    color: #1c5e93;
  }

  .footer-links ul {
    list-style: none;
  }

  .footer-links ul li {
    margin-bottom: 12px;

    font-size: 14px;
    line-height: 1.8;

    color: #5d6a76;
  }

  .footer-links ul li a {
    color: #5d6a76;
  }

  .contact-list strong {
    color: #1c5e93;
  }

  /* ===========================
     BOTTOM
  =========================== */

  .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);

    padding-top: 18px;

    text-align: center;
  }

  .footer-copy {
    font-size: 12px;
    line-height: 1.7;

    color: #4d5d6d;
  }
}

@media (max-width: 480px) {
  .footer-section {
    padding: 55px 0 20px;
  }

  .footer-logo img {
    width: 160px;
  }

  .footer-left p {
    font-size: 13px;
  }

  .footer-links h3 {
    font-size: 15px;
  }

  .footer-links ul li {
    font-size: 13px;
  }

  .footer-copy {
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .footer-logo img {
    width: 160px;
  }

  .footer-links h3 {
    font-size: 16px;
  }

  .footer-links ul li {
    font-size: 14px;
  }

  .footer-copy {
    font-size: 12px;
  }
}

/* ===========================
   STICKY CONTACT
=========================== */

.sticky-contact {
  position: fixed;
  right: 18px;
  bottom: 95px;

  display: flex;
  flex-direction: column;
  gap: 16px;

  z-index: 99999;
}

/* BUTTON */

.sticky-btn {
  width: 74px;
  height: 74px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);

  transition: 0.3s ease;
}

/* ICON */

.sticky-btn i {
  font-size: 34px;
  color: #fff;
}

/* HOVER */

.sticky-btn:hover {
  transform: translateY(-4px);
}

/* WHATSAPP */

.whatsapp-btn {
  background: #25d366;
}

/* PHONE */

.phone-btn {
  background-color: #1b2087;
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {
  .sticky-contact {
    right: 16px;
    bottom: 85px;
    gap: 14px;
  }

  .sticky-btn {
    width: 68px;
    height: 68px;
  }

  .sticky-btn i {
    font-size: 30px;
  }
}
/* ===================================
   SECTION
=================================== */

.valueism-standout {
  padding: 100px 0;
  background: #f7f1ea;
  overflow: hidden;
}

.valueism-standout .container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

/* ===================================
   HEADING
=================================== */

.standout-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 35px;
}

.standout-heading h2 {
  font-size: 48px;
  line-height: 1.2;
  color: #173f39;
  font-weight: 700;
  margin-bottom: 16px;
}

.standout-heading p {
  max-width: 650px;
  margin: 0 auto;

  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

/* ===================================
   SLIDER
=================================== */

.standoutSlider {
  margin-top: -10px;
  overflow: hidden;
  padding: 10px 0 25px;
}

.standoutSlider .swiper-slide {
  height: auto !important;
  display: flex;
}

/* ===================================
   CARD
=================================== */

.standout-card {
  background: #fff;
  border-radius: 20px;
  min-height: 260px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.standout-card:hover {
  transform: translateY(-5px);
}

/* ===================================
   ICON
=================================== */

.standout-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;

  margin-bottom: 20px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ===================================
   TEXT
=================================== */

.standout-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #172654;
  margin: 0;

  text-align: left;
}

/* ===================================
   SWIPER NAVIGATION
=================================== */

.swiper {
  padding-bottom: 20px;
}

.swiper-slide {
  height: auto;
}

.standout-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 35px;
}

.standout-prev,
.standout-next {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #172654;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.standout-prev:hover,
.standout-next:hover {
  background: #ff7a00;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.35);
}

/* ===================================
   TABLET
=================================== */

@media (max-width: 1024px) {
  .standout-heading h2 {
    font-size: 40px;
  }

  .standout-heading p {
    font-size: 17px;
  }

  .standout-card {
    min-height: 240px;
  }
}

/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {
  .valueism-standout {
    padding: 70px 0;
  }

  .standout-heading {
    margin-bottom: 30px;
  }

  .standout-heading h2 {
    font-size: 32px;
  }

  .standout-heading p {
    font-size: 16px;
    line-height: 1.7;
  }

  .standoutSlider {
    margin-top: 0;
  }

  .standout-card {
    min-height: 220px;
    padding: 24px 20px;
  }

  .standout-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
  }

  .standout-card p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {
  .valueism-standout {
    padding: 60px 0;
  }

  .standout-heading h2 {
    font-size: 28px;
  }

  .standout-heading p {
    font-size: 15px;
  }

  .standout-card {
    min-height: 200px;
    padding: 22px 18px;
  }

  .standout-card img {
    width: 45px;
    height: 45px;
  }

  .standout-card p {
    font-size: 14px;
  }
}
/* ==========================
   SECTION
========================== */

.gallery-section {
  padding: 100px 0;
  background: #f8f7f4;
}

.gallery-section .container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}

/* ==========================
   HEADING
========================== */

/* ==========================
   HEADING
========================== */

.gallery-heading {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-heading h2 {
  font-size: 48px;
  font-weight: 700;
  color: #173f39;
  margin: 0;
}

/* ==========================
   SLIDER
========================== */

.gallerySlider {
  overflow: hidden;
}

/* ==========================
   IMAGE
========================== */

.gallery-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-slide img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ==========================
   ARROWS
========================== */

.gallery-navigation {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.gallery-prev,
.gallery-next {
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: #1b2087;
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gallery-prev:hover,
.gallery-next:hover {
  background: #173f39;
  transform: translateY(-2px);
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {
  .gallery-heading h2 {
    font-size: 40px;
  }

  .gallery-slide img {
    max-width: 420px;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {
  .gallery-section {
    padding: 70px 0;
  }

  .gallery-heading {
    margin-bottom: 35px;
  }

  .gallery-heading h2 {
    font-size: 34px;
  }

  .gallery-slide img {
    max-width: 320px;
    border-radius: 16px;
  }

  .gallery-prev,
  .gallery-next {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px) {
  .gallery-heading h2 {
    font-size: 30px;
  }

  .gallery-slide img {
    max-width: 500px;
    border-radius: 14px;
  }

  .gallery-navigation {
    gap: 12px;
  }
}
.valueism-banner {
  width: 100%;
  overflow: hidden;
}

.valueism-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .valueism-banner img {
    width: 100%;
    height: auto;
  }
}
.top-announcement {
  width: 100%;
  overflow: hidden;
  background: #f85b45;
  color: #fff;
  padding: 12px 0;
  display: flex;
  font-family: "Outfit", sans-serif;
}

.announcement-track {
  display: flex;
  white-space: nowrap;
  animation: scrollText 25s linear infinite;
  flex-shrink: 0;
}

.announcement-track span {
  display: inline-block;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 600;
  padding-right: 40px;
}

@keyframes scrollText {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .announcement-track span {
    font-size: 14px;
    padding-right: 30px;
  }
}

/* ==========================================
   GLOBAL SCROLL REVEAL ANIMATIONS & HOVERS
========================================== */

/* Micro-transitions for interactive cards & elements */
.destination-card {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.lab-card {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
.lab-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.consult-btn {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  position: relative;
  overflow: hidden;
}
.consult-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
}
.consult-btn:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

.cta-btn {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  position: relative;
  overflow: hidden;
}
.cta-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
}
.cta-btn:hover::after {
  transform: translate(-50%, -50%) scale(1);
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   HERO ENTRANCE ANIMATIONS (PAGE LOAD)
========================================== */

.hero-title {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  animation-delay: 0.15s;
}

.hero-desc {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  animation-delay: 0.3s;
}

.hero-info {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  animation-delay: 0.45s;
}

.hero-form-desktop-panel {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  animation: heroFormFadeIn 1.1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  animation-delay: 0.35s;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFormFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ==========================================
   EXTRA PREMIUM CARD HOVERS & INTERACTIONS
========================================== */

.lab-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.lab-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.destination-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.destination-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* ==========================================
   GLOBAL SCROLL REVEAL ANIMATIONS & HOVERS
========================================== */

.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Active states */
.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.6s; }

/* ==========================================
   HEADER & STICKY BUTTON ENTRANCE ANIMATIONS
========================================== */

.header {
  opacity: 0;
  transform: translateY(-20px);
  animation: headerSlideDown 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes headerSlideDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sticky-contact {
  opacity: 0;
  transform: translateX(30px);
  animation: stickySlideIn 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  animation-delay: 1.2s;
}

@keyframes stickySlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
