:root {
  --bg-dark: #122a57;

  /* Dark Navy from Image */

  --accent-orange: #ff7d50;

  /* Orange color */

  --glass-bg: rgba(255, 255, 255, 0.05);

  --glass-border: rgba(255, 255, 255, 0.1);
}

.questrial-regular {
  font-family: "Questrial", sans-serif;

  font-weight: 400;

  font-style: normal;
}

.poppins-thin {
  font-family: "Poppins", sans-serif;

  font-weight: 100;

  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;

  font-weight: 200;

  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;

  font-weight: 300;

  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;

  font-weight: 400;

  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;

  font-weight: 500;

  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;

  font-weight: 600;

  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;

  font-weight: 700;

  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;

  font-weight: 800;

  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;

  font-weight: 900;

  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;

  font-weight: 100;

  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;

  font-weight: 200;

  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;

  font-weight: 300;

  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;

  font-weight: 400;

  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;

  font-weight: 500;

  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;

  font-weight: 600;

  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;

  font-weight: 700;

  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;

  font-weight: 800;

  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;

  font-weight: 900;

  font-style: italic;
}

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

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

button {
  font-family: "Questrial", sans-serif !important;
}

h2 {
  color: #000a35;

  font-size: 40px;
}

button.btn-primary {
  color: #000a35;

  padding: 12px 20px;
}

body {
  background: #d7eaf9;
}

ul {
  list-style: none;
}


.c-orange {
  color: #f18557;
}

.bg-light-grey {
  background-color: #d4e0e9;
}

.bg-dark-grey {
  background-color: #cdd6de;
}

.bg-darker-grey {
  background-color: #c7ced4;
}

.section-dark {
  background: #0b1d3a;

  color: #fff;
}

.section-light {
  background: #f5f7fb;
}

.btn-primary {
  background: #ff7d50;

  border: none;
}

.btn-container {
  background: #ff7d50;

  border: 1px solid #ff7d50;

  color: #000a35 !important;

  display: flex;

  width: 340px;

  align-items: center;

  justify-content: center;

  margin: 0 auto;

  padding: 4px 2px !important;
}

.btn-container .btn:hover,
.btn-general {
  border: 1px solid #000a35;

  transition: font-size 0.3s ease;
}
.btn-container .btn:hover {
  font-weight: 600;
}

.hero {
  background: url("../../assets/images/banner-only.webp");

  background-repeat: no-repeat;

  background-size: cover;

  color: #fff;

  padding: 100px 0 0 0;

  text-align: center;

  min-height: 850px;

  height: 850px;
}

.card-custom {
  border-radius: 12px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.3s;
}

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

.fade-in {
  opacity: 0;

  transform: translateY(30px);

  transition: all 0.6s ease;
}

.fade-in.show {
  opacity: 1;

  transform: none;
}

.cta {
  background: linear-gradient(135deg, #0b1d3a, #123a7a);

  color: #fff;

  text-align: center;

  padding: 80px 0;
}

/* 

        .nav-list::before {

            content: "";

            position: absolute;

            inset: 0;

            padding: 2px;

            border-radius: 14px;

            background: linear-gradient(135deg, #D7EAF9, #000A35);

            -webkit-mask:

                linear-gradient(#fff 0 0) content-box,

                linear-gradient(#fff 0 0);

            -webkit-mask-composite: xor;

            mask-composite: exclude;

        } */

.glass-box {
  position: relative;

  display: inline-flex;

  gap: 30px;

  padding: 15px 40px;

  border-radius: 8px;

  /* Glass effect */

  background: rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(14px);

  -webkit-backdrop-filter: blur(14px);

  /* Depth */

  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.25),
    0 10px 30px rgba(0, 0, 0, 0.25);

  z-index: 1;
}

/* 🔥 Gradient Border (perfect method) */

.glass-box::before {
  content: "";

  position: absolute;

  inset: 0;

  padding: 1.5px;

  border-radius: 8px;

  background: linear-gradient(135deg, #d7eaf923, #000a3586);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;

  mask-composite: exclude;

  pointer-events: none;
}

.logo-container {
  position: relative;

  border-radius: 8px;

  backdrop-filter: blur(12px);

  background: #d9d9d912;

  height: 50px;

  padding: 0px 24px;
}

.logo-container a {
  display: flex;

  align-items: center;
}

/* Links */

.nav-list a {
  color: #ffffffcc;

  text-decoration: none;

  font-weight: 500;

  transition: all 0.3s ease;
}

/* 🔥 Hover like Figma */

.glass-box a:hover {
  color: #ffffff;

  transform: translateY(-1px);
}

/* Optional glow on hover */

.glass-box:hover {
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.3),
    0 12px 35px rgba(0, 0, 0, 0.35);
}

.logo-container img {
  display: block;

  margin: 0 auto;
}

.nav-list ul li {
  color: #fff;
}

.badge-container {
  position: absolute;

  display: flex;

  flex-direction: column;

  gap: 40px; /* Space between badges */

  z-index: 10;
}


.nav-header.scrolled .social-container {
  display: inline-block;
}
.social-container i {
  color: #fff;
  font-size: 22px;
}

.service-badge-row {
  display: block;
  margin-top: 10px;
}

.service-badge-row .custom-badge {
  background: #209bff;
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-right: 6px;
  margin-bottom: 10px;
  display: inline-block;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.35;
}
.faq-text {
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0;
  padding-right: 40px;
  color: #000a35;
}

.custom-faq .accordion-button {
  background: #d1d8e0;
  color: #132347;
  font-size: 24px;
  font-weight: 700;
  border-radius: 10px !important;
  box-shadow: none;
  padding: 18px 25px;
}
/* Custom (+) */
.custom-faq .accordion-button::before {
  content: "(+)";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff7d50;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

/* Custom (-) when open */
.custom-faq .accordion-button:not(.collapsed)::before {
  content: "(-)";
}
.custom-faq .accordion-button {
  padding-right: 40px;
  color: #000a35;
  font-size: 1.6rem;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
  color: #000a35;
  background: #cdd6de;
  border: none;
}
.custom-faq .accordion-body {
  color: #000a35;
  padding-top:0px;
  font-size: 1.3rem;
    font-weight: 400;
}

.accordion-collapse.collapse.show {
  background-color: #cdd6de;
  border-radius: 0px 0px 20px 20px;
}

.accordion-button:not(.collapsed) {
  border-radius: 20px 20px 0px 0px !important;
}
.custom-faq .accordion-item {
  margin-bottom: 20px;
  border: none;
}

.social-container a {
  margin-right:10px;
  color: transparent;
}

/* Position Left Badges */

.left-side {
  left: 5%;

  top: 50%;

  transform: translateY(-50%);

  align-items: flex-start;
}

/* Position Right Badges */

.right-side {
  right: 5%;

  top: 50%;

  transform: translateY(-50%);

  align-items: flex-end;
}

/* Badge Styling */

.floating-badge-img {
  height: auto;

  transition: transform 0.3s ease;
}

/* Animation Effect (Optional) */

.floating-badge-img:hover {
  transform: scale(1.05);
}

/* Center Content Styling */

.banner-center {
  text-align: center;

  max-width: 700px;

  color: white;
}

.broker-support {
  align-self: end;
}

.accordion {
  background: transparent;

  --bs-accordion-bg: transparent;
}

.accordion-button::after {
  display: none;
}

.accordion h2 strong {
  font-size: 40px;

  font-weight: bold;

  color: #000a35;
}

.accordion-button:not(.collapsed) {
  background-color: #cdd6de;
}

.services-section {
  padding: 80px 8%;

  background-color: #d7eaf9;
}

/* ROW LAYOUT */

.service-item {
  display: flex;

  align-items: flex-start;

  cursor: pointer;

  transition: all 0.5s ease;

  border-radius: 5px;

  overflow: hidden;
}

/* LEFT IMAGE CONTAINER */

.service-image-container {
  width: 350px;

  /* Fixed width for the image */

  height: 115px;

  /* Default small height */

  overflow: hidden;

  margin-right: 50px;

  flex-shrink: 0;

  transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  border-radius: 2px;
}

.service-image-container img {
  width: 100%;

  height: 250px;

  /* The actual full size of the image */

  object-fit: cover;

  filter: grayscale(10%);
}

/* TEXT CONTENT AREA */

.service-content {
  display: flex;

  justify-content: space-between;

  flex-grow: 1;

  padding-top: 10px;

  /* Align with top of image slice */
}

.service-name {
  font-size: 2.2rem;

  margin: 0;

  font-weight: 600;

  color: #000a35;

  margin-top: 5px;
}

.service-desc {
  font-size: 1.2rem;

  line-height: 1.6;

  color: #000a35;

  /* Hidden by default */

  opacity: 0;

  transform: translateY(10px);

  transition: all 0.4s ease;

  height: 1px;
}

/* HOVER INTERACTIONS */

.service-item:hover .service-image-container {
  height: 250px;

  /* Expands to show full image */
}

.service-item:hover .service-desc {
  opacity: 1;

  transform: translateY(0);

  margin-top: 10px;
}

.service-item:hover {
  padding-bottom: 50px;

  /* Adds extra breathing room when open */
}

/* MOBILE VIEW */

@media (max-width: 768px) {
  .service-item {
    flex-direction: column;
  }

  .service-image-container {
    width: 100%;

    margin-bottom: 20px;
  }
}

.discover-section {
  padding: 20px;

  border-radius: 8px;

  display: flex;

  justify-content: space-around;

  font-weight: 400;
}

.discover-section span {
  color: #000a35;

  font-size: 40px;

  font-weight: 600;
}

.header-row {
  display: flex;

  justify-content: center;

  gap: 20px;

  margin-bottom: 50px;
}

.logo-box {
  border: 1px solid rgba(255, 255, 255, 0.3);

  padding: 10px 20px;

  border-radius: 8px;

  font-size: 0.9rem;
}

.cta-button {
  background-color: var(--accent-orange);

  color: white;

  border: none;

  padding: 10px 25px;

  border-radius: 8px;

  font-weight: bold;

  cursor: pointer;
}

/* Title */

.main-title {
  font-size: 3rem;

  margin-bottom: 40px;
}

.main-title span {
  color: var(--accent-orange);
}

/* Content Layout */

.main-content {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 30px;

  align-items: center;

  margin-top: 5px;
}

/* Glassmorphism Cards */

.cards-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;
}

.card {
  background: var(--glass-bg);

  backdrop-filter: blur(10px);

  -webkit-backdrop-filter: blur(10px);

  border: 1px solid var(--glass-border);

  padding: 30px;

  border-radius: 15px;

  transition: transform 0.3s ease;
}

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

  background: rgba(255, 255, 255, 0.08);
}

.card-num {
  display: block;

  color: var(--accent-orange);

  font-size: 1.5rem;

  font-weight: bold;

  margin-bottom: 10px;
}

.card h3 {
  font-size: 1.1rem;

  margin: 0;

  line-height: 1.4;

  font-weight: 500;

  color: #fff;
}

/* Right Side Image Box */

.image-box {
  width: 100%;

  height: 100%;

  min-height: 400px;

  background: linear-gradient(to bottom, #4a90e2, var(--accent-orange));

  border-radius: 20px;

  overflow: hidden;

  display: flex;

  align-items: flex-end;

  justify-content: center;
}

.image-box img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

/* Responsive for Mobile */

@media (max-width: 850px) {
  .main-content {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 30px;
  }
}

.quote-section {
  background-color: #f0f8ff;

  /* Outer light blue background */

  display: flex;

  justify-content: center;
}

.quote-container {
  width: 100%;

  background: linear-gradient(135deg, #c7e3f8 0%, #e0f0ff 100%);

  padding: 140px 60px;

  position: relative;

  text-align: center;

  border: 1px solid rgba(255, 255, 255, 0.4);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.quote-text {
  font-family: "Inter", sans-serif;

  font-size: 3.5rem;

  line-height: 1.2;

  color: #122a57;

  /* Dark navy color */

  font-weight: 700;

  margin: 0;

  max-width: 900px;

  margin: 0 auto;
}

.quote-text .highlight {
  color: #ff7d50;

  /* Orange color from "scales" */
}

/* Quote Icons */

.quote-icon {
  font-family: serif;

  /* Using serif for more elegant quote marks */

  font-size: 8rem;

  color: #ff7d50;

  opacity: 0.7;

  position: absolute;

  line-height: 1;
}

.open-quote {
  top: 60px;

  left: 120px;
}

.close-quote {
  bottom: -40px;

  right: 120px;
}

/* Responsive adjustments */

@media (max-width: 768px) {
  .quote-text {
    font-size: 2rem;

    padding: 40px 0;
  }

  .quote-icon {
    font-size: 5rem;
  }

  .open-quote {
    top: 20px;

    left: 20px;
  }

  .close-quote {
    bottom: 0;

    right: 20px;
  }
}

.how-we-work {
  background-color: #122a57;

  /* Dark navy */

  padding: 100px 5%;

  color: white;

  font-family: "Inter", sans-serif;

  text-align: center;
}

.inner-container {
  max-width: 1200px;

  margin: 0 auto;
}
.experience-section .inner-container {
  padding: 0px 24px;
}

/* Header Buttons Layout */

.button-header {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 15px;

  margin-bottom: 50px;
}

.btn-logo {
  border: 1px solid rgba(255, 255, 255, 0.2);

  padding: 10px 20px;

  border-radius: 8px;

  font-size: 0.9rem;
}

.btn-arrow {
  background: rgba(255, 255, 255, 0.1);

  width: 40px;

  height: 40px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 8px;
}

.btn-cta {
  background-color: #ff7d50;

  color: white;

  border: none;

  padding: 10px 25px;

  border-radius: 8px;

  font-weight: 700;

  cursor: pointer;
}

/* Section Title */

.section-title {
  font-size: 3.5rem;

  font-weight: 700;

  margin-bottom: 16px;
}

.section-title span {
  color: #ff7d50;
}

/* Steps Grid */

.steps-container {
  display: flex;

  justify-content: center;

  align-items: center;

  /* Important: aligns smaller side cards to center */

  gap: 30px;
}

.step-card {
  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(10px);

  border-radius: 20px;

  padding: 40px 30px;

  width: 280px;

  min-height: 250px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  transition: all 0.4s ease;

  opacity: 0.6;

  /* Dim side cards */
}

.step-card.active {
  border: 1px solid #f1855775;

  opacity: 1;

  width: 350px;

  /* Slightly wider */

  min-height: 400px;

  /* Taller active card */
}

.icon-box {
  font-size: 3rem;

  margin-bottom: 20px;
}

.step-card h3 {
  color: #ff7d50;

  font-size: 1.4rem;

  margin-bottom: 15px;
}

.step-card p {
  font-size: 0.95rem;

  line-height: 1.6;

  color: #cbd5e1;

  margin: 0;
}

/* Mobile Responsiveness */

@media (max-width: 900px) {
  .steps-container {
    flex-direction: column;
  }

  .step-card,
  .step-card.active {
    width: 100%;

    min-height: auto;
  }
}

.who-we-are {
  background-color: #e0f0ff;

  /* Light blue background from Figma */

  padding: 100px 10%;

  font-family: "Inter", sans-serif;

  color: #122a57;
}

.who-container {
  max-width: 1200px;

  margin: 0 auto;

  display: flex;

  gap: 60px;

  align-items: flex-start;
}

.who-column {
  flex: 1;

  display: flex;

  flex-direction: column;
}

/* Typography */

.who-title {
  font-size: 3.5rem;

  font-weight: 700;

  margin-bottom: 20px;
}

.who-title span {
  color: #ff7d50;

  /* Brand Orange */
}

.who-intro {
  font-size: 1.1rem;

  line-height: 1.6;

  margin-bottom: 60px;

  max-width: 500px;
}

.who-mission {
  font-size: 1.1rem;

  line-height: 1.6;

  margin: 40px 0 20px 0;
}

/* Member Cards */

.member-card {
  text-align: center;

  width: 320px;

  margin-bottom: 30px;
}

.image-wrapper {
  overflow: hidden;

  border-radius: 40px;

  background: #000;

  /* This ensures the image moves inside a "clipped" container */

  position: relative;

  /* Hardware acceleration for smooth movement */

  will-change: transform;

  transition: transform 0.1s linear;
}

.image-wrapper img {
  width: 100%;

  height: 110%; /* Slightly taller than container so it doesn't show gaps when moving */

  object-fit: cover;

  display: block;
}

.member-card h3 {
  font-size: 1.4rem;

  margin-bottom: 5px;

  font-weight: 700;
}

.member-card p {
  font-size: 0.9rem;

  color: #555;
}

/* Discover Our Story Link */

.story-link {
  display: flex;

  align-items: center;

  gap: 15px;

  text-decoration: none;

  color: #122a57;

  font-weight: 700;

  font-size: 1.2rem;

  margin-top: 20px;
}

.arrow-circle {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 50px;

  height: 50px;

  border: 2px solid #122a57;

  border-radius: 50%;

  transition: all 0.3s ease;
}

.story-link:hover .arrow-circle {
  background-color: #122a57;

  color: white;
}

/* Responsive */

@media (max-width: 900px) {
  .who-container {
    flex-direction: column;
  }

  .col-right {
    margin-top: 0;
  }

  .member-card {
    width: 100%;
  }
}

.faq-section {
  background-color: #d7eaf9;
  padding: 100px 0px 250px 0px;
  font-family: "Inter", sans-serif;
  color: #122a57;
}

.faq-container {
  max-width: 1100px;

  margin: 0 auto;
}

.faq-title {
  color: #ff7d50;

  /* Orange accent color */

  font-size: 2.5rem;

  font-weight: 600;

  margin-bottom: 20px;

  text-transform: capitalize;
}

.faq-list {
  display: flex;

  flex-direction: column;
}

.faq-item {
  display: flex;

  justify-content: space-between;

  padding: 30px 0;

  border-bottom: 1px solid rgba(18, 42, 87, 0.1);

  cursor: pointer;

  transition: all 0.3s ease;
}

/* Question Side (Left) */

.faq-question {
  flex: 0 0 40%;

  /* Takes up 40% of the width */
}

.faq-question h3 {
  font-size: 1.6rem;

  margin: 0;

  font-weight: 600;

  line-height: 1.3;

  color: #000a35;
}

/* Answer Side (Right) */

.faq-answer-wrapper {
  flex: 0 0 55%;

  /* Takes up 55% of the width */

  display: flex;

  justify-content: space-between;

  align-items: flex-start;
}

.faq-answer {
  font-size: 1.1rem;

  line-height: 1.6;

  margin: 0;

  padding-right: 40px;

  color: #000a35;

  /* Hide answer by default */

  opacity: 0;

  max-height: 0;

  overflow: hidden;

  transition: all 0.4s ease;
}

.faq-icon {
  font-weight: 600;

  font-size: 1.2rem;

  color: #ff7d50;

  white-space: nowrap;
}

/* Active State Styles */

.faq-item.active .faq-answer {
  opacity: 1;

  max-height: 300px;

  /* Expands to show text */
}

/* Responsive for Mobile */

@media (max-width: 768px) {
  .faq-item {
    flex-direction: column;

    gap: 15px;
  }

  .faq-question,
  .faq-answer-wrapper {
    flex: 1 1 100%;
  }
}

.nav-list {
  /* Your existing styles */

  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  overflow: hidden; /* Critical: prevents text from wrapping while width shrinks */

  white-space: nowrap; /* Keeps menu items in one line */

  opacity: 1;
}

/* The state when scrolled down */

.nav-list.is-collapsed {
  width: 0 !important;

  padding-left: 0 !important;

  padding-right: 0 !important;

  opacity: 0 !important;

  pointer-events: none; /* Prevents clicking links when hidden */
}

/* Fixed Header Container */

.nav-header {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 1000;

  padding: 20px 0;
}

.nav-custom {
  display: flex;

  align-items: center;

  justify-content: space-between; /* Keeps them centered when width changes */

  gap: 15px;

  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-header.scrolled .nav-custom {
  justify-content: center;
}

/* Arrow Box: Hidden by default, shows when scrolled */

.arrow-box {
  width: 0;

  height: 0px;

  overflow: hidden;

  opacity: 0;

  font-size: 24px;

  color: white;

  cursor: pointer;
}

.arrow-box.is-visible {
  width: 70px; /* Small square box like Figma */

  opacity: 1;

  height: 95px;
}

.nav-header.scrolled .glass-box {
  background: #000a35;
}

.banner-sub-title {
  font-size: 20px;

  padding-bottom: 20px;

  width: 50%;

  margin: 0 auto;
}

.banner-side-content {
  width: 100%;

  text-align: center;
      z-index: 1;
    position: relative;
}

.hero .container {
  z-index: 111;
}

.hero > img {
  transform: translateX(-120%) !important;

  width: 70%;

  margin: 0 auto;

  bottom: 0px;
  z-index: 111;
}

h1 {
  background: linear-gradient(
    to left,

    #f18557 0%,

    /* Start with the orange brand color */ #d7eaf9 54%,

    /* Transition to the light blue from navigation border */ #6abcff 100%
      /* End with the dark, slightly greenish blue stop */
  );

  -webkit-background-clip: text;

  background-clip: text;

  font-weight: 600;

  font-size: 70px;

  line-height: 1;

  letter-spacing: -2%;

  text-align: center;

  color: transparent;
}

.nav-header.scrolled {
  background: rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(10px);

  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.1),
    0 10px 30px rgba(0, 0, 0, 0.1);

  z-index: 1111111;

  border-radius: 0px;

  padding: 0px 0px 0px 0px;
}

.nav-header.scrolled .ham-nav-list {
  position: absolute;

  top: 100px; /* Adjust based on your 91px header height */

  left: 50%;

  transform: translateX(-50%);

  background: rgba(0, 10, 53, 0.9); /* Dark blue from your Figma */

  backdrop-filter: blur(15px);

  padding: 40px;

  border-radius: 20px;

  border: 2px solid rgba(215, 234, 249, 0.3);

  width: 300px;

  z-index: 1111111;

  display: none; /* Keep it hidden by default */
}

/* Use this class for the "Show" state */

.ham-nav-list ul li a{
  color:#fff;
  text-decoration: none;
  line-height: 28px;
}

/* Base styles for all menu icons */
.ham-nav-list ul li a::before {
    font-family: "Font Awesome 6 Free"; 
    font-weight: 900;                  /* Required for solid icons */
    margin-right: 13px;                /* Spacing between icon and text */
    display: inline-block;
    vertical-align: middle;
    font-size: 17px;
}

/* 1. Home Item */
.ham-nav-list ul li:nth-child(1) a::before {
    content: "\f015"; /* house / home icon */
}

/* 2. About Item */
.ham-nav-list ul li:nth-child(2) a::before {
    content: "\f05a"; /* info icon (or use \f007 for a user profile icon) */
}

/* 3. Service Item */
.ham-nav-list ul li:nth-child(3) a::before {
    content: "\f0ad"; /* wrench / screwdriver icon (alternatively use \f085 for gears) */
}

/* 4. Career Item */
.ham-nav-list ul li:nth-child(4) a::before {
    content: "\f0f2"; /* briefcase icon */
}
.ham-nav-list.show-menu {
  display: block !important;
}

.nav-header .ham-nav-list {
  display: none;
}

.nav-header.header-hidden {
  transform: translateY(-100%); /* Slides completely out of view */

  opacity: 0;

  pointer-events: none;
}

.hero-bottom h2 {
  background: linear-gradient(
    to left,

    #f18557 0%,

    /* Start with the orange brand color */ #d7eaf9 54%,

    /* Transition to the light blue from navigation border */ #6abcff 100%
      /* End with the dark, slightly greenish blue stop */
  );

  -webkit-background-clip: text;

  background-clip: text;

  font-weight: 600;

  font-size: 95px;

  line-height: 1;

  letter-spacing: -2%;

  text-align: center;

  color: transparent;

  margin-bottom: 50px;
}

.hero-bottom {
  position: relative;
}

.hero-bottom img {
  left: 75% !important;

  width: 47%;
}

@media (min-width: 1500px) {
  .hero {
    min-height: 900px;

    height: 900px;
  }
}

@media (min-width: 1700px) {
  .hero {
    min-height: 1000px;

    height: 1000px;
  }
}

@media (min-width: 2000px) {
  .hero > img {
    width: 60%;

    transform: translateX(-130%) !important;
  }
}

/* MAIN WRAPPER */

.experience-section {
  z-index: 11;
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0px !important;
}

.experience-section .inner-container {
  background: #000a35;
  padding: 20px;
  width: 100%;
  max-width: 100%;
}

.slider-wrapper {
  overflow: hidden;

  border-radius: 25px;
}

/* TRACK */

.slider-track {
  display: flex;

  gap: 20px;

  width: max-content;

  animation: scroll 18s linear infinite;
}

/* SLIDES */

.slide {
  flex-shrink: 0;

  border-radius: 20px;

  overflow: hidden;
}

/* YOUR CUSTOM WIDTHS */

.w-40 {
  width: 40vw;
}

.w-15 {
  width: 15vw;
}

.w-30 {
  width: 30vw;
}

/* IMAGE FIX */

.slide img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;
}

/* INFINITE ANIMATION */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* OPTIONAL: pause on hover */

.slider-wrapper:hover .slider-track {
  animation-play-state: paused;
}

.process-section {
  position: relative;

  padding: 80px 20px 200px 20px;

  margin: 0 auto;

  overflow: hidden;
}

.process-container {
  display: flex;

  flex-direction: column;

  gap: 20px;
}

.process-item {
  display: flex;

  width: 100%;

  opacity: 0; /* Hidden by default for JS animation */

  transition: all 1.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Alternating Logic */

.item-right {
  justify-content: flex-end;
  transform: translateX(100px);
}

.item-left {
  justify-content: flex-start;
  transform: translateX(-100px);
}

/* Animation Trigger Class */

.process-item.is-visible {
  opacity: 1;

  transform: translateX(0);
}

.process-card {
  width: 60%;

  padding: 30px;

  background: var(--glass-bg);

  backdrop-filter: blur(10px);

  border: 1px solid var(--glass-border);

  border-radius: 12px;

  position: relative;
}

.step-number {
  position: absolute;

  top: 20px;

  right: 20px;

  font-weight: 700;

  font-size: 1.5rem;

  color: var(--accent-orange);

  opacity: 1;
}

.icon-box {
  background: rgba(255, 107, 53, 0.1);

  width: 40px;

  height: 40px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 8px;

  margin-bottom: 20px;
}

.icon-box img {
  width: 50px;
}

h3 {
  color: var(--accent-orange);

  margin-bottom: 15px;

  font-size: 1.4rem;
}

p {
  line-height: 1.6;

  font-size: 0.95rem;

  color: #ccc;
}

/* Mobile Responsive */

@media (max-width: 768px) {
  .process-card {
    width: 85%;
    margin-left: 40px;
  }

  .item-right,
  .item-left {
    justify-content: flex-start;
    transform: translateX(50px);
  }
}

.video-wrapper {
  max-width: 900px; /* Adjust based on your preference */

  margin: 0 auto 0px auto;

  border-radius: 20px;

  overflow: hidden;

  margin-top: -10rem;
}

.video-container {
  position: relative;

  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */

  height: 0;

  overflow: hidden;
}

.video-container iframe {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 450px;

  border-radius: 20px;
}

/* Grid Layout */

.content-grid {
  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  gap: 40px;

  margin-bottom: 60px;
  margin-top: -70px;
}

.content-left {
  flex: 1;
}

.content-right {
  flex: 1.2;
}

/* Typography */

.text-blue {
  color: var(--primary-blue);
}

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

.content-right p {
  font-size: 1.1rem;

  line-height: 1.6;

  color: var(--text-dark);

  margin-bottom: 20px;
}

.secondary-heading {
  text-align: center;

  font-size: 2.8rem;
}

/* Button */

.btn-primary {
  display: inline-block;

  background-color: var(--accent-orange);

  color: #000a35;

  padding: 12px 30px;

  border-radius: 8px;

  text-decoration: none;

  font-weight: 600;

  transition: transform 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);

  filter: brightness(1.1);
  background-color: #000a35 !important;
    border-color: #000a35 !important;
    color:#fff;
}


/* Mobile Adjustments */

@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
  }

  .title {
    font-size: 2.2rem;
  }

  .secondary-heading {
    font-size: 1.6rem;
  }
}

/* Join Our Team Section */

.join-team {
  background-color: #000a35;

  padding: 60px 0;
}

.join-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;
}

.join-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}

.join-content p {
  color: #ffffff;

  margin-bottom: 20px;

  line-height: 1.6;

  font-size: 1.1rem;

  font-weight: 400;
}

.btn-join {
  display: inline-block;
  background-color: #ff7d50;
  color: #000a35;
  padding: 12px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  font-size: 16px;
  transition: 0.3s ease;
}

.btn-join:hover {
  filter: brightness(1.1);

  transform: translateY(-2px);
}

.rounded-img {
  width: 100%;

  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */

@media (max-width: 768px) {
  .join-grid {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .join-image {
    order: -1; /* Image appears above text on mobile */
  }
}

:root {
  --navy: #000a35; /* */

  --orange: #ff7d50; /* */
}

.testimonial-section {
  padding: 80px 0;

  overflow: hidden;
}

/* Swiper specific overrides */

.testimonial-swiper {
  padding: 40px 0;

  overflow: visible !important; /* To see slides on the far left/right */
}

.swiper-slide {
  width: 450px; /* Width for side cards */

  transition: all 0.6s ease;

  opacity: 0.3;

  transform: scale(0.85);

  cursor: pointer;
}

/* The Middle (Active) Card */

.swiper-slide-active {
  opacity: 1;

  transform: scale(1);
}

.testimonial-card {
  background: var(--glass-bg);

  backdrop-filter: blur(10px);

  border: 1px solid var(--glass-border);

  border-radius: 16px;

  padding: 40px;

  height: 100%;
}

.profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
  transition: 0.6s;
}

/* .swiper-slide-active .profile-img { width: 70px; height: 70px; } */

.quote {
  color: white;
  line-height: 1.6;
  font-size: 1.1rem;
  transition: 0.6s;
}

/* .swiper-slide-active .quote { font-size: 1.3rem; } */

.name {
  display: block;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.9rem;
}

/* .swiper-slide-active .name { font-size: 1.2rem; } */

.role {
  color: var(--orange);
}

.footer-section {
  background-color: #010a35; /* Deep Navy from design */
  padding-top: 50px;
  border-radius: 50px 50px 0px 0px;
}

.footer-container {
  border-radius: 60px 60px 0 0; /* Huge rounded top corners */

  padding: 0px 80px 60px 80px;
  color: white;
}
.section-title span {
  font-size: 3.5rem;
  font-weight: 700;
}
#scrollTopBtn {
  width: 100px;
  margin-top: -80px;
  cursor: pointer;
}

.c-orange {
  color: #ff7d50;
}

.c-blue {
  color: #0dcaf0;
  margin-right: 10px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: white;

  text-decoration: none;

  font-size: 1.1rem;

  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #f97316;
}

.contact-info p {
  margin-bottom: 5px;

  font-size: 1.2rem;

  color: rgba(255, 255, 255, 0.85);
}

.footer-section .btn-container {
  margin: unset;
}

.tracking-widest {
  font-size: 30px;
}

/* Button Styling */

.btn-orange {
  background-color: #f97316;

  color: white;

  border-radius: 8px;

  padding: 10px 25px;

  border: none;
}

.btn-outline-orange {
  border: 1px solid #f97316;

  color: #f97316;

  border-radius: 8px;

  padding: 10px 25px;
}

.btn-orange:hover,
.btn-outline-orange:hover {
  background-color: white;

  color: #010a35;

  border-color: white;
}

.footer-icon {
  width: 60px;
}

/* Responsive Padding */

@media (max-width: 768px) {
  .footer-container {
    padding: 40px 20px;

    border-radius: 30px 30px 0 0;
  }
}

/* Specific color for the icons from your design */

.contact-icon {
  color: #43daff; /* Bright Cyan/Blue */

  font-size: 1.1rem;

  width: 20px; /* Ensures vertical alignment is perfectly straight */

  text-align: center;
}

.contact-text {
  color: #ffffff;

  font-size: 1.1rem;

  font-weight: 400;

  line-height: 1.6;
}

/* Spacing between the two office blocks */

.contact-block {
  margin-bottom: 2.5rem;
}

/* Optional: Slight hover effect on text */

.contact-text:hover {
  color: #43daff;

  cursor: pointer;

  transition: color 0.3s ease;
}

/* Header style for "Contact" */

h4.text-white {
  letter-spacing: 0.5px;
}

.footer-social-links li {
  margin-bottom: 15px; /* Spacing between links */
}

.social-link {
  color: #ffffff;

  text-decoration: none;

  font-size: 1.2rem;

  font-weight: 400;

  display: flex;

  align-items: center;

  justify-content: flex-start;

  transition: all 0.3s ease;
}

/* Styling the Font Awesome Arrow */

.social-link i {
  color: #43daff; /* Cyan color from your design */

  font-size: 0.9rem; /* Slightly smaller than text */

  transition: transform 0.3s ease;
}

/* Hover Effect: Text turns cyan and arrow moves */

.social-link:hover {
  color: #43daff;
}

.social-link:hover i {
  transform: translate(3px, -3px); /* Subtle diagonal movement */

  color: #ffffff;
}

/* Alignment for mobile */

@media (max-width: 991px) {
  .footer-social-links {
    text-align: right;
  }
}

/********About ******/

/* Section Background */

.intro-branding-section {
  background-color: #010a35; /* Deep Navy from design */

  padding: 120px 0px 100px 0px;
}

/* Typography for the Heading */

.main-heading {
  font-size: 2.8rem;

  line-height: 1.3;

  letter-spacing: -0.02em;

  max-width: 900px;

  margin: 0 auto;
}

/* Image Styling */

.brand-image-wrapper img {
  border: 1px solid rgba(255, 255, 255, 0.1);

  transition: transform 0.5s ease;
  width: 100%;
}

/* Mobile Adjustments */

@media (max-width: 768px) {
  .main-heading {
    font-size: 1.8rem;
  }

  .intro-branding-section {
    padding: 50px 0;
  }
}

/* Background and Section Spacing */

.team-section {
  background-color: #e0f2fe; /* Light blue from design */

  padding: 80px 0;
}

/* Three Column Row Container */

.member-row {
  max-width: 1100px;

  margin: 0 auto 100px auto;

  /* Initial state for scroll reveal */

  opacity: 0;

  transform: translateY(30px);

  transition: all 0.8s ease-out;
}

.member-row.is-visible {
  opacity: 1;

  transform: translateY(0);
}

/* Profile Image - Deep rounded corners */

.team-img {
  width: 100%;

  max-width: 380px;

  height: auto;

  aspect-ratio: 4/5;

  object-fit: cover;

  border-radius: 40px;

  box-shadow: 0 20px 40px rgba(1, 10, 53, 0.1);
}

/* Typography */

.role-text {
  color: #010a35;

  font-weight: 500;

  font-size: 1.5rem;

  text-transform: uppercase;

  margin-bottom: 10px;
}

.member-name {
  color: #010a35;

  font-weight: 900;

  font-size: 3.5rem;

  margin: 0;

  line-height: 1;
}

/* Icons */

.social-links {
  display: flex;

  gap: 25px;

  margin-bottom: 15px;
}

.social-links a {
  color: #010a35;

  font-size: 1.8rem;

  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #f97316;
}

/* Responsive Overrides */

@media (max-width: 991px) {
  .member-row {
    text-align: center;
  }

  .col-lg-4 {
    justify-content: center !important;
    margin-bottom: 20px;
  }

  .member-name {
    font-size: 2.5rem;
  }
}

/**********Home Mobile**************/

@media screen and (max-width: 767px) {
  .container {
    padding: 20px;
  }

  .nav-header.scrolled .container {
    padding: 5px;
  }

  .nav-header.scrolled .container .arrow-box.is-visible {
    height: 40px;

    width: auto;
  }

  .nav-header.scrolled .ham-nav-list ul li a {
    font-size: 16px;

    text-decoration: none;

    color: #fff;
  }

  .nav-header.scrolled .ham-nav-list {
    top: 70px;

    padding: 10px;
  }

  .nav-header.scrolled .cta-wrap button.btn-primary {
    font-size: 11px;
  }

  .nav-header.scrolled .arrow-box img {
    width: 35px !important;
  }

  .nav-header.scrolled .glass-box img {
    width: 100px;
  }

  .banner-side-content h1 {
    font-size: 35px !important;
  }

  .banner-side-content .banner-sub-title {
    width: 100%;

    font-size: 15px;
  }

  .badge-container.left-side,
  .badge-container.right-side {
    display: none;
  }

  .hero {
    padding-top: 60px;

    min-height: 500px;

    height: 500px;
  }

  .experience-section {

    margin-bottom: 20px !important;
  }

  .experience-section .inner-container {
    margin: 0px !important;
  }

  .slide img {
    height: 70px;
  }

  .slider-wrapper {
    border-radius: 10px !important;

    padding: 10px !important;
  }

  .slider-track {
    gap: 10px;
  }

  .services-section {
    padding-top: 10px;

    padding-bottom: 30px;
  }

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

  .service-name,
  .discover-section span {
    font-size: 18px;

    padding-left: 20px;
  }

  .service-image-container {
    margin-bottom: 0px;
  }

  .service-desc {
    font-size: 15px;
  }

  .service-item.active {
    margin-bottom: 20px;
  }

  .discover-section img {
    height: 40px !important;
  }

  .process-section {
    padding-top: 20px;
  }

  .process-card {
    width: 100%;

    margin-left: 0px;

    padding: 15px;
  }

  h2.section-title span {
    font-size: 32px;

    padding-left: 0px;
  }

  .content-grid {
    margin-bottom: 20px;
  }

  .discover-section .secondary-heading {
    font-size: 18px;
  }

  .testimonial-section {
    padding-top: 20px;

    padding-bottom: 0px;
  }

  .testimonial-section h2 {
    margin-bottom: 10px !important;
  }

  .swiper-slide {
    width: 350px; /* Width for side cards */

    transition: all 0.6s ease;

    opacity: 0.3;

    transform: scale(0.85);

    cursor: pointer;
  }

  /* The Middle (Active) Card */

  .swiper-slide-active {
    opacity: 1;

    transform: scale(1);
  }

  .testimonial-card {
    padding: 16px;
  }

  .join-team {
    padding-top: 0px;

    padding-bottom: 0px;
  }

  .join-team h2 {
    font-size: 32px;

    padding-left: 0px;
  }

  .join-grid {
    gap: 20px;
  }

  .join-content p {
    font-size: 15px;
  }

  .faq-section {
    padding-top: 20px;
  }

  .faq-title {
    margin-bottom: 0px;
  }

  .faq-question h3 {
    font-size: 18px;
  }

  .faq-answer {
    font-size: 15px;
  }

  .faq-item {
    gap: 20px;

    padding: 20px 0px;
  }

  .footer-section {
    padding-top: 20px;
  }

  .tracking-widest {
    font-size: 18px;
  }

  .contact-text {
    font-size: 15px;
  }
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

/* 3. FIX BOOTSTRAP FIXED HEADERS (If you have one) */
/* If your navbar disappears, ensure it has a higher z-index than your sections */
.navbar {
  z-index: 1000 !important;
}

.experience-section {
  z-index: 1111;
}

.services-section {
  position: relative;
}

/* CAROUSEL */
.estl-carousel {
  position: relative;
  width: 100%;
  cursor: grab;
  perspective: 1500px;
}

.estl-carousel:active {
  cursor: grabbing;
}

.estl-track {
  display: flex;
  transform-style: preserve-3d;
  will-change: transform;
}

.estl-slide {
  flex: 0 0 55%;
  min-width: 0;
  padding: 0 2rem;
  transform-style: preserve-3d;
}

/* CARD */
.estl-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: border-color 0.6s ease;
}

.is-selected .estl-card {
  border-color: var(--accent);
}

/* FULL CLICK ZONES */
.estl-prev,
.estl-next {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  z-index: 10;
  cursor: pointer;
}

.estl-prev {
  left: 0;
}

.estl-next {
  right: 0;
}

@media (max-width: 768px) {
  .estl-slide {
    flex: 0 0 85%;
    padding: 0 0.5rem;
  }
}

.footer-logo {
  position: relative;
}

.about-banner {
  background-color: #d7eaf9 !important;
}

.header-sub {
  color: #000a35;
  font-size: 20px;
  margin-top:10px;
}
.top-header-sub{
  font-size: 20px;
  margin-top:10px;
}



.btn-link-orange{
      background-color: #F18557;
    width: 100%;
    color: #000A35 !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    gap: 30px;
    align-items: center;
    padding: 20px;
    border-radius: 20px;
    font-size: 26px;
    line-height:1.3;
}

.btn-link-orange a.btn-primary{
      display: block;
    max-width: 240px;
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    background-color: #D7EAF9;
    border-radius: 50px;
    width: 240px;
}
.career-single .custom-badge {
    background: #209bff;
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    margin-right: 6px;
    margin-bottom: 10px;
    display: inline-block;
    margin-top:10px;
}
.career-single .deadline-date{
  font-weight: 600;
}

.job-desc-detail{
      background-color: #CDD6DE;
    border-radius: 20px;
    padding: 30px;
}
.job-desc-detail p{
      color: #000A35;
    font-size: 18px;
    line-height: 1.3;
}

.job-desc-detail ul{
      list-style: disc;
}
.job-desc-detail strong{
  margin-bottom: 10px;
}

.job-desc-detail ul li{
      margin-bottom:10px;
}

#zohoCareerForm label{

  color: #fff !important;
}


@media screen and (max-width:768px){
    
    .cta-wrap , .icon-list{
        display:none;
    }
}