.custom-navbar {
  position: fixed;
  /* Ensures it stays at the top */
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 0;
  background: #ffffff;

  z-index: 1000;
/* 
  transition: all 0.4s ease; */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo-img {
  height: 52px;
  width: auto;
}

.navbar-nav {
  gap: 35px;
}

.nav-link {
  position: relative;

  font-size: 20px !important;
  font-weight: 500;

  color: #111 !important;

  padding: 10px 18px;

  border-radius: 50px;

  transition:
    color 0.35s ease,
    transform 0.35s ease;

  z-index: 1;
}

.nav-link::before {
  content: "";

  position: absolute;

  top: 50%;
  left: 50%;

  width: 110%;
  height: 42px;

  transform: translate(-50%, -50%) scale(0.7);

  border-radius: 50px;

  background: #fde7cd;

  backdrop-filter: blur(14px);

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

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);

  opacity: 0;

  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);

  z-index: -1;
}

.nav-link:hover::before {
  opacity: 1;

  transform: translate(-50%, -50%) scale(1);
}

.nav-link.active::before {
  opacity: 1;

  transform: translate(-50%, -50%) scale(1);

  background: rgba(13, 110, 253, 0.12);
}

.nav-link.active {
  color: #0d6efd !important;
}


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

.ticket-btn {
  padding: 12px 38px;

  

  border-radius: 50px;

  text-decoration: none;

  font-weight: 600;

  color: white;

  background: #0d6efd;

  transition: 0.3s;
}

.ticket-btn:hover {
  background: #FC7C01;

  color: white;
}

/* FULL HERO */

#heroCarousel {
  height: 100vh;
}

/* IMPORTANT */

.carousel-inner {
  height: 100%;
}

.carousel-item {
  height: 100vh;

  position: relative;
}


.carousel-item img {
  width: 100%;

  height: 100vh;

  object-fit: cover;
/* 
  transform: scale(1.08); */

  opacity: 0;
  transition:
opacity 1s ease;   /* ONLY OPACITY */

will-change:
opacity;
/* 
  transition: all 1.5s ease; */
}

/* active slide */

.carousel-item.active img {
  /* transform: scale(1); */

  opacity: 1;
}

.slant-overlay {
  position: absolute;

  top: 0;

  left: -100%;

  width: 42%;

  height: 100vh;

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

  backdrop-filter: blur(6px);

  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);

  display: flex;

  align-items: center;

  padding-left: 8%;

  z-index: 2;

  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* when slide active */

.carousel-item.active .slant-overlay {
  left: 0;
}

/* CONTENT */

.content {
  opacity: 0;

  transform: translateY(50px);

  transition: all 1s ease;

  transition-delay: 0.6s;
}

/* active */

.carousel-item.active .content {
  opacity: 1;

  transform: translateY(0);
}

.content h2 {
  font-size: 3.5rem;

  font-weight: 700;
}

.content p {
  font-size: 1rem;
}

/* REMOVE WHITE GAP */

body {
  margin: 0;

  overflow-x: hidden;
}

/* BUTTON WRAPPER */

.hero-buttons {
  display: inline-flex;

  margin-top: 30px;

  border: 2px solid white;

  border-radius: 50px;

  overflow: hidden;
}

/* COMMON */

.hero-buttons a {
  padding: 18px 40px;

  text-decoration: none;

  font-weight: 600;

  transition: all 0.4s ease;
}

/* LEFT */

.btn-left {
  background: #ff7300;

  color: white;
}

/* RIGHT */

.btn-right {
  background: white;

  color: black;
}

/* HOVER EFFECT */

.hero-buttons:hover .btn-left {
  background: white;

  color: black;
}

.hero-buttons:hover .btn-right {
  background: #ff7300;

  color: white;
}

/* little movement */

.hero-buttons a:hover {
  transform: translateY(-2px);
}

/* INDICATOR POSITION */

.carousel-indicators {
  bottom: 30px;

  gap: 16px;
}

/* BOX */

.carousel-indicators button {
  width: 34px !important;

  height: 14px !important;

  border: 2px solid #0d6efd !important;

  border-radius: 30px;

  background: transparent !important;

  opacity: 1 !important;

  margin: 0 !important;

  position: relative;

  transition: all 0.4s ease;
}

/* INNER FILL */

.carousel-indicators button::before {
  content: "";

  position: absolute;

  top: 50%;
  left: 50%;

  width: 8px;

  height: 8px;

  background: #0d6efd;

  border-radius: 50%;

  transform: translate(-50%, -50%);

  transition: all 0.4s ease;
}

/* ACTIVE */

.carousel-indicators button.active {
  border-color: #ff7300 !important;

  width: 50px !important;
}

/* ACTIVE INNER */

.carousel-indicators button.active::before {
  background: #ff7300;

  width: 18px;

  border-radius: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 10px;
}

.growth-section {
  padding: 30px 0;

  overflow: hidden;
}

.section-tag {
  font-size: 14px;

  font-weight: 700;

  color: #0d6efd;

  margin-bottom: 15px;
}

.growth-section h2 {
  font-size: 4rem;

  font-weight: 800;

  line-height: 1.1;

  margin-bottom: 20px;
}

.growth-section h2 span {
  color: #0d6efd;
}

.growth-section p {
  font-size: 18px;

  line-height: 1.8;

  color: #555;

  max-width: 520px;
}

.cta-row {
  display: flex;

  align-items: center;

  gap: 30px;

  margin: 30px 0;
}

.grow-btn {
  background: #0d6efd;

  padding: 16px 35px;

  border-radius: 50px;

  color: white;

  text-decoration: none;

  font-weight: 600;
}

.stats {
  display: flex;

  gap: 30px;
}

.stats div {
  font-size: 24px;

  font-weight: 700;
}

.stats span {
  display: block;

  font-size: 13px;

  color: gray;
}

/* mini features */

.services-mini {
  display: flex;

  flex-wrap: wrap;

  gap: 15px;

  margin-top: 20px;
}

.services-mini div {
  padding: 14px 20px;

  background: white;

  border-radius: 18px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
/* STRIP */

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

.img-wrap {
  width: 100%;

  height: 100%;

  display: flex;

  align-items: center;

  justify-content: flex-end; /* PUSH RIGHT */
}

/* IMAGE */

.img-wrap img {
  width: 90%; /* reduce size */

  max-width: 650px;

  height: auto;

  object-fit: contain;

  transform: translate(40px, /* move right */ -30px /* move slightly up */);
}

.service-strip {
  display: flex;

  justify-content: space-between;

  gap: 18px;

  margin-top: 25px;

  padding: 24px;

  background: white;

  border-radius: 30px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* ITEM */

.service-item {
  display: flex;

  align-items: center;

  gap: 5px;

  padding: 10px;

  transition: 0.35s ease;

  flex: 1;
}

/* ICON */

.icon {
  width: 55px;

  height: 55px;

  border-radius: 16px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #f4f8ff;

  font-size: 22px;

  transition: 0.3s;
}

/* TITLE */

.service-item h5 {
  margin: 0;

  font-size: 18px;

  font-weight: 700;
}

.service-item p {
  margin: 0;

  font-size: 13px;

  color: gray;
}

/* HOVER */

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

.service-item:hover .icon {
  background: #0d6efd;

  color: white;
}

/* ==========================
SERVICES SECTION
========================== */
.services-section {
  padding: 10px 0;

  background: linear-gradient(
    135deg,
    #edf4ff 0%,

    /* blue */ #f3f7ff 35%,

    #fff4ea 100% /* orange */
  );

  position: relative;

  overflow: hidden;
}

/* BLUE */

.services-section::before {
  content: "";

  position: absolute;

  top: 80px;

  left: -100px;

  width: 350px;

  height: 350px;

  background: rgba(13, 110, 253, 0.18);

  border-radius: 50%;

  filter: blur(110px);
}

/* ORANGE */

.services-section::after {
  content: "";

  position: absolute;

  bottom: 60px;

  right: -100px;

  width: 320px;

  height: 320px;

  background: rgba(255, 115, 0, 0.15);

  border-radius: 50%;

  filter: blur(110px);
}
/* ======================
SECTION TITLE
====================== */

.section-title {
  text-align: center;

  margin-bottom: 50px;
}

/* TOP SMALL */

.section-title span {
  display: inline-block;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 5px;

  color: #0d6efd;

  text-transform: uppercase;

  margin-bottom: 18px;

  position: relative;
}

.section-title h2 span {
  color: #0d6efd;

  position: relative;

  padding: 0 230px; /* space for lines */
}

/* lines */

.section-title h2 span:before {
  content: "────";

  color: #ff7300;

  position: absolute;

  left: 60px;
}

.section-title h2 span:after {
  content: "────";

  color: #0d6efd;

  position: absolute;

  right: 60px;
}

/* BIG TITLE */

.section-title h2 {
  font-size: 3rem;

  font-weight: 800;

  line-height: 1.1;

  color: #07133b;

  margin: 0;
}

/* BLUE PART */

.section-title h2 span {
  display: inline;

  color: #0d6efd;

  letter-spacing: normal;

  font-size: inherit;

  margin: 0;
}

/* SUBTEXT */

.section-title p {
  font-size: 20px;

  color: #667085;

  max-width: 700px;

  margin: 25px auto 0;

  line-height: 1.7;
}

/* MOBILE */

@media (max-width: 991px) {
  .section-title h2 {
    font-size: 2.5rem;
  }

  .section-title span::before,
  .section-title span::after {
    display: none;
  }

  .section-title p {
    font-size: 16px;
  }
}
/* ==========================
GRID
========================== */
/* ==========================
SERVICES GRID
========================== */

.services-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 30px;

  margin-top: 50px;
}

/* ==========================
PANELS
========================== */

.service-panel {
  position: relative;

  padding: 28px;

  border-radius: 32px;

  background: white;

  border: 1.5px solid rgba(0, 0, 0, 0.06);
}

.orange {
  border-color: rgba(255, 115, 0, 0.65);
}

.blue {
  border-color: rgba(13, 110, 253, 0.65);
}

.panel-label {
  position: absolute;

  top: -24px;

  left: 35px;

  display: flex;

  align-items: center;

  gap: 14px;

  font-size: 20px;

  font-weight: 700;

  background: white;

  padding: 0 14px;

  z-index: 10;
  border-radius: 25px;
}

.panel-label i {
  width: 62px;

  height: 62px;

  border-radius: 18px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 28px;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* ORANGE LABEL */

.orange .panel-label i {
  background: linear-gradient(135deg, #ff7300, #ff9948);

  color: white;
}

/* BLUE LABEL */

.blue .panel-label i {
  background: linear-gradient(135deg, #0d6efd, #4f9bff);

  color: white;
}

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

.service-card {
  display: flex;

  align-items: center;

  gap: 22px;

  padding: 18px 20px;

  margin-bottom: 18px;

  background: linear-gradient(180deg, #ffffff, #fcfcfd);

  border: 1px solid rgba(0, 0, 0, 0.05);

  border-radius: 24px;

  min-height: 120px;

  transition: all 0.35s ease;
}

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

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

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

.icon-box {
  width: 80px;

  height: 60px;

  border-radius: 22px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 38px;
}

/* ORANGE ICON BG */

.orange .icon-box {
  background: #fff5ed;

  border: 1px solid #ffd9ba;

  color: #ff7300;
}

/* BLUE ICON BG */

.blue .icon-box {
  background: #edf4ff;

  border: 1px solid #d8e6ff;

  color: #0d6efd;
}

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

.service-card h4 {
  font-size: 21px;

  font-weight: 700;

  margin-bottom: 8px;

  color: #08102f;
}

.service-card p {
  font-size: 15px;

  line-height: 1.8;

  color: #667085;

  margin: 0;
}

/* ==========================
ARROW
========================== */
/* ==========================
NEW ARROW
========================== */

.arrow {
  margin-left: auto;

  width: 58px;

  height: 58px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 28px; /* BIGGER */

  font-weight: 700;

  border-radius: 18px; /* square-round */

  position: relative;

  overflow: hidden;

  transition: all 0.35s ease;
}

/* ORANGE */

.orange .arrow {
  background: linear-gradient(135deg, #fff5ed, #ffe7d1);

  border: 1px solid #ffd2aa;

  color: #ff7300;
}

/* BLUE */

.blue .arrow {
  background: linear-gradient(135deg, #edf4ff, #dfeaff);

  border: 1px solid #cddfff;

  color: #0d6efd;
}

/* HOVER */

.service-card:hover .arrow {
  transform: translateX(6px) rotate(-8deg);

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
/* FULL RESET */

.bottom-strip {
  display: flex !important;

  justify-content: space-between !important;

  align-items: center !important;

  padding: 5px 10px !important;

  margin-top: 35px !important;

  background: linear-gradient(
    90deg,
    #e7f0ff 0%,
    #edf4ff 50%,
    #fff1e5 50%,
    #ffe8d1 100%
  ) !important;

  border: 2px solid rgba(8, 8, 8, 0.08) !important;

  border-radius: 30px !important;
}

.bottom-strip > div {
  display: flex !important;

  align-items: center !important;

  gap: 14px !important;

  padding: 10px !important;

  flex: 1 !important;

  position: relative !important;
}

/* separator */

.bottom-strip > div:not(:last-child)::after {
  content: "" !important;

  position: absolute !important;

  right: 0 !important;

  height: 45px !important;

  width: 1px !important;

  background: rgba(0, 0, 0, 0.08) !important;
}

/* icon */

.bottom-strip i {
  width: 56px !important;

  height: 56px !important;

  display: flex !important;

  align-items: center !important;

  justify-content: center !important;

  font-size: 24px !important;

  border-radius: 18px !important;

  flex-shrink: 0 !important;
}

/* colors */

.bottom-strip > div:nth-child(odd) i {
  background: #dbe8ff !important;

  color: #0d6efd !important;
}

.bottom-strip > div:nth-child(even) i {
  background: #ffe4cd !important;

  color: #ff7300 !important;
}

/* text */

.bottom-strip h5 {
  margin: 0 !important;

  font-size: 17px !important;

  font-weight: 700 !important;
}

.bottom-strip p {
  margin: 4px 0 0 !important;

  font-size: 13px !important;

  color: #666 !important;
}

/* ======================
CASE SECTION
====================== */

.fill1 {
  width: 20%;
}

.fill2 {
  width: 40%;
}

.fill3 {
  width: 60%;
}

.fill4 {
  width: 80%;
}

.fill5 {
  width: 100%;
}

.case-section {
  padding: 40px 30px; /* adds left-right space */

  background: #f8fbff;
}

.case-section h2 {
  text-align: center;

  font-size: 3rem;

  margin-bottom: 50px;

  font-weight: 700;
}

.case-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 30px;

  align-items: stretch;
}

/* CARD */

.case-card {
  background: white;

  width: 100%;

  margin: auto;

  border-radius: 28px;

  overflow: hidden;
}

.case-card {
  background: #e9f2ff;

  border: 2px solid rgba(13, 110, 253, 0.08);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);

  border-radius: 28px;

  overflow: hidden;

  transition: 0.4s;
  transform: translateY(-8px);

  border-color: rgba(255, 115, 0, 0.25);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ======================
SLIDER
====================== */

.case-card .carousel {
  height: 280px;

  overflow: hidden;

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

/* IMAGE */

.case-card .carousel-item {
  height: 280px;
  width: 100%;
}

.case-card .carousel-item img {
  width: 100%;

  height: 100%;

  object-fit: fill; /* shows full image */

  padding: 10px 0; /* little breathing */

  background: white;

  display: block;
}

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

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

.case-content {
  padding: 8px 12px;
  margin: 0;
}

.case-content span {
  display: inline-block;

  padding: 8px 18px;

  background: #ff7300;

  color: white;

  font-size: 13px;

  border-radius: 50px;

  margin-bottom: 16px;
}

.case-content h4 {
  font-size: 1.8rem;

  margin: 0 0 12px;

  font-weight: 700;

  line-height: 1.2;
}

.case-content p {
  font-size: 15px;

  line-height: 1.7;

  color: #666;

  margin-bottom: 18px;
}

.case-content a {
  font-weight: 600;

  text-decoration: none;

  color: #0d6efd;
}

/* ===================
HEADING
=================== */

.case-heading {
  text-align: center;

  margin-bottom: 35px; /* LESS SPACE */
}

.case-heading h2 {
  font-size: 3.2rem;

  font-weight: 800;

  margin: 0;

  line-height: 1;

  color: #08112f;
}

/* gradient only */

.case-heading h2 span {
  background: linear-gradient(90deg, #ff7300, #0d6efd);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.case-heading p {
  margin-top: 10px;

  font-size: 17px;

  color: #666;
}

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

.cta-section {
  padding: 20px 25px; /* LESS HEIGHT */

  background: linear-gradient(
    135deg,
    #fff7f1 0%,

    #fff1e6 60%,

    #fff8f3 100%
  );

  margin: 2px auto;

  overflow: hidden;

  position: relative;
}

/* decorative blur */

.cta-section::before {
  content: "";

  position: absolute;

  width: 250px;

  height: 250px;

  background: rgba(255, 115, 0, 0.08);

  border-radius: 50%;

  top: -80px;

  left: -80px;

  filter: blur(60px);
}

/* ======================
LEFT
====================== */

/* small tag */

.cta-tag {
  display: inline-block;

  padding: 10px 20px;

  background: rgba(255, 115, 0, 0.08);

  color: #ff7300;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;

  border-radius: 50px;

  margin-bottom: 16px;
}

/* heading */

.cta-section h2 {
  font-size: 3rem;

  font-weight: 800;

  line-height: 1.05;

  margin: 10px 0 18px;

  color: #08112f;
}

.cta-section h2 span {
  color: #0d6efd;
}

/* desc */

.cta-section p {
  font-size: 17px;

  line-height: 1.8;

  color: #666;

  max-width: 420px;

  margin-bottom: 24px;
}

/* button */

.cta-btn {
  display: inline-block;

  padding: 14px 30px;

  background: #0d6efd;

  color: white;

  font-weight: 600;

  text-decoration: none;

  border-radius: 50px;

  transition: 0.3s;
}

.cta-btn:hover {
  background: #ff7300;

  transform: translateY(-4px);

  color: white;
}

.grow-btn:hover  {
    background: #ff7300;
      transform: translateY(-4px);

  color: white;
}

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

.cta-img {
  display: flex;

  justify-content: flex-end;

  align-items: center;
}

.cta-img img {
  width: 100%;

  max-width: 650px; /* BIG */

  height: auto;

  transform: scale(1.18);

  object-fit: contain;
}

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

@media (max-width: 991px) {
  .cta-section {
    padding: 35px 2px;

    border-radius: 28px;
  }

  .cta-section h2 {
    font-size: 2rem;

    line-height: 1.1;
  }

  .cta-section p {
    font-size: 15px;

    margin-bottom: 20px;
  }

  .cta-btn {
    padding: 12px 24px;

    font-size: 14px;
  }

  .cta-img {
    justify-content: center;
  }

  .cta-img img {
    max-width: 420px;

    transform: scale(1);
  }
}

/* ==========================
TESTIMONIAL SECTION
========================== */

.testimonial-section {
  /* LIGHT BLUE */

  background: linear-gradient(
    135deg,
    #f4f8ff 0%,

    #edf5ff 50%,

    #f8fbff 100%
  );

  overflow: hidden;
}

.testimonial-section {
  padding: 40px 50px;

  height: auto;

  min-height: unset;
}

/* ONE ROW */

.testimonial-wrap {
  display: flex;

  align-items: flex-start;

  gap: 40px;

  /* height: auto; 

  min-height: unset;  */

  max-height: 350px;
}

.test-left h2 {
  font-size: 3rem;

  font-weight: 800;

  line-height: 1.1;

  margin: 16px 0;
}

.test-left h2 span {
  color: #0d6efd;
}

.test-left p {
  font-size: 18px;

  line-height: 1.7;

  max-width: 300px;
}

/* CENTER */

.test-center {
  flex: 1;

  display: flex;

  justify-content: center;
}

.test-center img {
  width: 420px; /* BIGGER */
}

/* RIGHT */

/* CARD */

.review {
  padding: 16px 18px;

  min-height: 150px;

  border-radius: 20px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  background-color: lightyellow;
}

.person {
  display: flex;

  align-items: center;

  gap: 12px;

  margin: 12px 0 8px;
}

/* QUOTES */

.quote {
  font-size: 32px;

  margin-bottom: 2px;
}

.end-quote {
  display: inline;

  font-size: 32px;

  color: #ff7300;

  margin-left: 500px;
}

/* REVIEW */

.review p {
  font-size: 15px;

  line-height: 1.5;

  margin: 0px 0 0px;
}

.avatar {
  width: 60px;

  height: 60px;

  border-radius: 50%;

  background: linear-gradient(135deg, #ff7300, #0d6efd);

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: 700;

  font-size: 22px;

  color: white;
}

.person h5 {
  font-size: 18px;

  margin: 0;

  line-height: 1.1;
}

/* PROGRESS */

.progress-row {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-top: 15px;
}

.progress-line {
  width: 180px;

  height: 6px;

  background: #ddd;

  border-radius: 20px;

  overflow: hidden;
}

.fill {
  height: 100%;

  background: linear-gradient(90deg, #ff7300, #0d6efd);
}
.person span {
  font-size: 12px;

  display: block;

  margin-top: 2px;
}

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

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

@media (max-width: 768px) {
  .testimonial-section {
    padding: 18px 14px; /* LESS HEIGHT */

    overflow: hidden;
  }

  /* STACK */

  .testimonial-wrap {
    flex-direction: column;

    align-items: center;

    text-align: center;

    gap: 10px; /* LESS SPACE */

    max-height: 500px;

    height: auto;
  }

  /* LEFT */

  .test-left h2 {
    font-size: 2rem;

    line-height: 1.1;

    margin: 5px 0;
  }

  .test-left p {
    font-size: 14px;

    line-height: 1.5;

    max-width: 100%;

    margin: 0 auto 10px;
  }

  /* CENTER IMAGE */

  .test-center {
    width: 100%;
  }

  .test-center img {
    width: 200px; /* SMALLER */

    max-width: 100%;
  }

  /* CARD */

  .review {
    width: 100%;

    padding: 12px;

    min-height: unset;

    border-radius: 16px;
  }

  /* REVIEW TEXT */

  .review p {
    font-size: 13px;

    line-height: 1.5;

    margin: 6px 0;
  }

  /* QUOTES */

  .quote {
    font-size: 20px;

    margin: 0;
     text-align: left;
  }

  .end-quote {
    font-size: 20px;

    display: block;

    text-align: right;

    margin: 0;
  }

  /* AVATAR + NAME + BAR */

.person{

display:
flex;

align-items:
center;

gap:
12px;

justify-content:
flex-start;

}
  .avatar {
    width: 42px;

    height: 42px;

    font-size: 16px;

    flex-shrink: 0;
  }

  .person h5 {
    font-size: 15px;

    margin: 0;
  }

  .person span {
    font-size: 11px;
  }

  /* BAR */

  .progress-row {
    display: flex;

    align-items: center;


    gap: 8px;

    margin: 0;
    
  }
  .progress-row{

margin-left:
50px !important;

     /* MOVE LEFT */

}



  .progress-line {
    width: 80px;

    height: 5px;
  }

  /* REMOVE EMPTY HEIGHT */

  .review,
  .testimonial-wrap {
    height: auto;

    /* min-height: unset; */
            max-height: 558px;
  }
}
/* ======================
RESPONSIVE
====================== */

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

    gap: 25px;
  }

  .case-card .carousel {
    height: 220px;
  }

  .case-card .carousel-item {
    height: 220px;
  }

  .case-content {
    padding: 18px;
  }

  .case-content h4 {
    font-size: 1.5rem;
  }
}

/* mobile */

@media (max-width: 991px) {
  .bottom-strip {
    flex-direction: column !important;
  }

  .bottom-strip > div {
    width: 100% !important;
  }

  .bottom-strip > div::after {
    display: none !important;
  }
}

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

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

    gap: 45px;
  }

  .panel-label {
    font-size: 16px;

    left: 20px;
  }

  .panel-label i {
    width: 52px;

    height: 52px;

    font-size: 22px;
  }

  .service-card {
    padding: 12px 18px; /* LESS */

    min-height: 90px; /* LESS */

    gap: 16px;
  }

  .icon-box {
    width: 68px;

    height: 68px;

    font-size: 28px;
  }

  .service-card h4 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 13px;
  }

  .arrow {
    width: 46px;

    height: 46px;

    font-size: 18px;
  }

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

/* MOBILE */

@media (max-width: 991px) {
  .bottom-strip {
    grid-template-columns: 1fr;
  }

  .bottom-strip div::after {
    display: none;
  }
}

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

@media (max-width: 991px) {
  .services-section {
    padding: 20px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .panel-label {
    font-size: 14px;

    padding: 10px 18px;
  }

  .panel-label i {
    width: 40px;

    height: 40px;

    font-size: 20px;
  }

  .service-card {
    padding: 14px;

    gap: 14px;
  }

  .icon-box {
    width: 58px;

    height: 58px;

    font-size: 22px;
  }

  .service-card h4 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
  }

  .arrow {
    font-size: 20px;
  }

  .bottom-strip {
    grid-template-columns: repeat(2, 1fr);

    padding: 20px;

    gap: 15px;
  }
}

@media (max-width: 991px) {
  .section-title h2 {
    font-size: 2rem;

    line-height: 1.8;
  }

  /* blue heading */

  .section-title h2 span {
    font-size: 1.5rem !important;

    display: block;

    padding: 0 !important;

    white-space: nowrap; /* force one line */
  }

  .section-title p {
    font-size: 15px;

    padding: 0 10px;
  }
}
/* =========================
   MOBILE
========================= */

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

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

  /* HEADING */

  .growth-section h2 {
    font-size: 2rem;

    line-height: 1.2;

    max-width: 280px; /* forces 2 lines */

    margin-bottom: 15px;
  }

  /* TEXT */

  .growth-section p {
    font-size: 14px;

    line-height: 1.7;
  }

  /* CTA ROW */

  .cta-row {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: nowrap;

    margin: 20px 0;
  }

  /* BUTTON */

  .grow-btn {
    padding: 10px 18px;

    font-size: 13px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    white-space: nowrap;
  }

  /* STATS */

  .stats {
    display: flex;

    gap: 14px;
  }

  .stats div {
    font-size: 18px;

    font-weight: 700;
  }

  .stats span {
    font-size: 11px;

    line-height: 1.2;
  }

  /* SERVICES */

  .service-strip {
    display: flex;

    flex-wrap: nowrap; /* ONE LINE */

    gap: 10px;

    padding: 12px;
  }

  .service-item {
    width: auto;

    min-width: 110px;

    padding: 8px;

    gap: 8px;
  }

  /* ICON */

  .icon {
    width: 40px;

    height: 40px;

    font-size: 16px;
  }

  /* SERVICE TEXT */

  .service-item h5 {
    font-size: 12px;

    margin: 0;
  }

  .service-item p {
    font-size: 10px;

    margin: 0;
  }

  /* IMAGE */

  .img-wrap {
    margin-top: 20px;

    justify-content: center;
  }

  .img-wrap img {
    width: 100%;

    max-width: 500px;

    transform: translateY(0);
  }

  /* IMAGE COLUMN */

  .img-column {
    align-items: center;
  }
}
/* 4. Fix for Mobile Overlay */
@media (max-width: 991px) {
  /* HERO */

  #heroCarousel,
  .carousel-item {
    height: 88vh;
  }

  .carousel-item img {
    height: 88vh;
  }

  /* OVERLAY */

  .slant-overlay {
    width: 62%;
    /* LESS THAN HALF LOOK */

    height: 88vh;

    padding: 22px;

    clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);

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

    backdrop-filter: blur(4px);
  }

  /* CONTENT */

  .content {
    max-width: 90%;

    padding-top: 65px;
  }

  /* HEADING */

  .content h2 {
    font-size: 1.9rem;

    line-height: 1.15;

    margin-bottom: 15px;
  }

  /* TEXT */

  .content p {
    font-size: 14px;

    line-height: 1.6;

    margin-bottom: 18px;
  }

  /* BUTTONS */

  @media (max-width: 991px) {
    .hero-buttons {
      display: inline-flex;

      height: 42px;

      border: 2px solid white;

      border-radius: 50px;

      overflow: hidden;

      margin-top: 15px;

      transform: none;
      /* REMOVE SCALE */

      width: auto;
    }

    /* BOTH */

    @media (max-width: 991px) {
      .hero-buttons {
        height: 38px;

        margin-top: 10px;
      }

      .hero-buttons a {
        height: 38px;

        padding: 7px 12px;

        font-size: 12px;
      }

      /* LEFT */

      .btn-left {
        min-width: 70px;
      }

      /* RIGHT */

      .btn-right {
        min-width: 65px;
      }
    }

    /* LEFT */

    .btn-left {
      min-width: 80px;
    }

    /* RIGHT */

    .btn-right {
      min-width: 80px;
    }
  }

  /* INDICATORS */

  .carousel-indicators {
    bottom: 8px;

    gap: 6px;
  }

  /* ARROWS */

  .carousel-control-prev {
    left: -5px;
  }

  .carousel-control-next {
    right: -5px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 1.8rem;

    height: 1.8rem;

    padding: 6px;
  }
}


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

.footer {
  background: linear-gradient(135deg, #07142d, #0b2247, #08112f);

  color: white;

  position: relative;

  overflow: hidden;
}

/* WAVE */

.footer-wave-path {
  fill: #f5f8ff;
}

/* CONTENT */

.footer-content {
  max-width: 1300px;

  margin: auto;

  padding: 60px 30px 10px; /* FIXED */

  display: grid;

  grid-template-columns: 1.2fr 1fr 1fr 1fr;

  gap: 40px;
}

/* LOGO */

.footer-logo h1 {
  font-size: 3rem;

  font-weight: 800;

  color: white;
}

/* HEADINGS */

.footer-menu-name,
.footer-call-to-action-title {
  font-size: 16px;

  font-weight: 700;

  margin-bottom: 18px;

  position: relative;
}

.footer-menu-name::after,
.footer-call-to-action-title::after {
  content: "";

  width: 80px;

  height: 3px;

  background: #ff7300;

  position: absolute;

  left: 0;

  bottom: -8px;
}

/* LINKS */

.footer-menu-list {
  list-style: none;

  padding: 0;
}

.footer-menu-list li {
  margin: 14px 0;
}

.footer-menu-list a {
  color: #cfd7e8;

  transition: 0.3s;
}

.footer-menu-list a {
  position: relative;

  text-decoration: none;

  color: #cfd7e8;
}

.footer-menu-list a::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: -3px;

  width: 0;

  height: 2px;

  background: white;

  transform: translateX(-50%);

  transition: width 0.35s ease;
}

.footer-menu-list a:hover {
  color: white;
}

.footer-menu-list a:hover::after {
  width: 100%;
}
/* BUTTON */

.footer-call-to-action-button {
  background: linear-gradient(90deg, #ff7300, #0d6efd);

  padding: 14px 28px;

  border-radius: 50px;

  font-weight: 600;
}

.footer-call-to-action-button:hover {
  transform: translateY(-3px);
}


.footer-social-links {
  position: absolute;

  top: 550px;
  left: 150px;

  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;

  justify-content: flex-start !important;
  align-items: center !important;

  gap: 20px !important;
}
/* ICON CIRCLE */

.footer-social-links a {
  width: 60px;
  height: 60px;

  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;

  background: transparent;

  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-links i {
  color: white;
  font-size: 26px;
}

/* ICON COLOR */

.footer-social-icon-path {
  fill: #111; /* BLACK */
}
.footer-social-links a {
  text-decoration: none !important;
}


.footer-social-links i {
  font-size: 25px;
}
/* ICON ON HOVER */

.footer-social-links a:hover .footer-social-icon-path {
  fill: #ff7300;
}

/* COPYRIGHT */

/* COPYRIGHT BAR */
.footer-copyright {
  background: #f38327;

  padding: 18px 0;

  text-align: center;

  color: white;

  position: relative;

  overflow: hidden;

  z-index: 1;
}

.footer-copyright::before {
  content: '';

  position: absolute;

  top: 0;

  left: -300px;

  width: 150px;

  height: 100%;

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

  filter: blur(20px);

  transform: skewX(-25deg);

  animation: shine 3.5s infinite linear;

  z-index: 2;
}

@keyframes shine {
  from {
    left: -300px;
  }

  to {
    left: calc(100% + 300px);
  }
}
/* REMOVE */


.navbar .nav-link {
  position: relative;
  text-decoration: none !important;
}

.navbar .nav-link::after {
  content: '';

  position: absolute;

  left: 0;
  bottom: -5px;

  width: 100%;
  height: 2px;

  background: #f38327;

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.3s ease;
}

.navbar .nav-link:hover::after {
  transform: scaleX(1);
}

.footer-social-amoeba-svg {
  display: none;
}

.footer-logo-img {
  width: 180px;

  height: auto;

  object-fit: contain;

  margin-bottom: 12px;

  /* ADD */

  position: relative;

  top: 200px;
}

/* SMALL TEXT */

.footer-tag {
  font-size: 15px;

  color: rgba(255, 255, 255, 0.75);

  line-height: 1.6;

  max-width: 220px;
}

.footer-content-column:first-child .footer-menu {
  position: absolute;

  top: 190px;
}

.contact-item a {
  color: #cfd7e8;

  text-decoration: none;

  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: white;
}
/* =====================
FOOTER MOBILE
===================== */

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

    gap: 30px;

    padding: 20px 25px 2px;

    text-align: left;
  }

  /* LOGO */

  .footer-logo-img {
    width: 140px;

    top: 0; /* REMOVE 200px */
  }

  /* PRODUCTS */

  .footer-content-column:first-child .footer-menu {
    position: relative;

    top: 0;
  }

  /* TAGLINE */

  .footer-tag {
    margin-top: 1px;

    max-width: 100%;
  }

  /* SOCIAL */

  .footer-social-links {
    position: relative;

    top: 1px;

    left: 0;

    margin: 30px auto;

    justify-content: center;

    padding: 10px 18px;

    gap: 12px;
  }

  .footer-social-links a {
    width: 42px;

    height: 42px;
  }

  .footer-social-links i {
    font-size: 20px;
  }

  /* CONTACT */

  .footer-contact {
    max-width: 100%;


  }

  /* COPYRIGHT */

  .footer-copyright {
    font-size: 12px;

    padding: 14px;
  }

  /* REMOVE HUGE HEIGHT */

  .footer {
    overflow: visible;
  }
}




.mega-product{

  position:relative;

}



.glass-mega-menu{

  position:absolute;

  top:100%;

  left:50%;

  transform:
  translateX(-50%)
  translateY(15px);

  width:760px;

  padding:18px;

  display:flex;

  gap:14px;

  opacity:0;

  visibility:hidden;

  transition:.4s ease;

  z-index:999;



  background:
  rgba(255,255,255,.08);

  backdrop-filter:
  blur(22px);

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

  border:
  1px solid rgba(255,255,255,.15);

  border-radius:24px;



  box-shadow:
  0 25px 60px rgba(0,0,0,.18);

}



.mega-product:hover .glass-mega-menu{

  opacity:1;

  visibility:visible;

  transform:
  translateX(-50%)
  translateY(0);

}



/* IMAGES */

.glass-mega-menu img{

  flex:1;

  width:100%;

  height:230px;

  object-fit:cover;

  border-radius:18px;

  cursor:pointer;

  transition:.4s ease;

}



/* HOVER */

.glass-mega-menu img:hover{

  transform:
  translateY(-8px)
  scale(1.03);

}



/* LIGHT INSIDE GLASS */

.glass-mega-menu::before{

  content:"";

  position:absolute;

  width:220px;

  height:220px;

  right:-40px;

  top:-60px;

  background:

  radial-gradient(
    circle,
    rgba(255,255,255,.25),
    transparent
  );

  filter:blur(50px);

}

.service1-dropdown{
  position:relative;
}

.service1-glass{

  position:absolute;

  top:calc(100% + 25px);

  left:50%;

  transform:translateX(-50%) translateY(15px);

  width:650px;

  padding:25px;

  display:flex;

  justify-content:center;

  gap:25px;

  opacity:0;

  visibility:hidden;

  transition:.35s ease;

  background:rgba(255,255,255,.12);

  backdrop-filter:blur(20px);

  border-radius:24px;

  box-shadow:0 20px 50px rgba(0,0,0,.15);

  z-index:999;
}

.service1-dropdown:hover .service1-glass{

  opacity:1;

  visibility:visible;

  transform:translateX(-50%) translateY(0);
}

.service1-card{

  width:180px;

  text-decoration:none;

  display:flex;

  flex-direction:column;

  align-items:center;

  justify-content:center;

  /* gap:18px; */

  text-align:center;

  padding:2px;

  border-radius:20px;

  transition:.35s ease;

  background:rgba(255,255,255,.08);

}

.service1-card:hover{

  transform:translateY(-8px);

  background:rgba(255,255,255,.18);
}

.service1-card img{

  width:140px;

  height:140px;

  object-fit:contain;

}

.service1-card span{

  display:block;

 

  font-size:18px;

  font-weight:600;

  color:#0b2f6b;
}
.service1-card{

  display:flex;

  flex-direction:column-reverse;

}


.service1-showcase{

  width:220px;

  padding:5px;

  border-radius:24px;

  text-decoration:none !important;

  display:flex;

  flex-direction:column;

  align-items:center;

  justify-content:center;

  text-align:center;

  /* gap:15px; */

}



.service1-showcase:hover{

  text-decoration:none !important;

}



.service1-title{

  display:block;

  width:100%;

  text-align:center;

  font-size:24px;

  font-weight:700;

  color:#0b2f6b;

  /* margin-bottom:8px; */

}



.service-img{

  width:160px;

  height:160px;

  object-fit:contain;

}

.solution1-dropdown{

  position:relative;

}

.solution-dropdown:hover .service1-glass{

  opacity:1;

  visibility:visible;

  transform:
  translateX(-50%)
  translateY(0);

}

@media(max-width:768px){

  .service1-glass{

    position:static !important;

    width:100% !important;

    display:grid !important;

    grid-template-columns:
    repeat(3,1fr);

    gap:15px;

    padding:15px;

    opacity:1 !important;

    visibility:visible !important;

    transform:none !important;

    background:none !important;

    backdrop-filter:none !important;

    box-shadow:none !important;

    border:none !important;

  }

  .service1-showcase{

    width:100%;

    padding:10px;

  }

  .service1-title{

    font-size:16px;

    margin-bottom:8px;

  }

  .service1-img{

    width:70px;

    height:70px;

  }

} 






@media (max-width: 991px) {


  .navbar-collapse {
    background: white;

    padding: 15px 20px;

    margin-top: 12px;

    border-radius: 20px;

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



  .navbar-nav {
    gap: 0;

    margin: 10px 0;
  }


  .navbar-nav li {
    padding: 0;

    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }



  .nav-link {
    padding: 14px 10px;

    font-size: 16px;

    display: block;

    border-radius: 12px;
  }



  .ticket-btn {
    display: inline-block;

    width: 140px;

    height: 42px;

    padding: 10px 18px;

    margin: 15px 0 0 0;

    text-align: center;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 600;
  }



  .logo-img {
    height: 42px;
  }



  .navbar-toggler {
    border: none;

    box-shadow: none;
  }
} 

@media (max-width:991px){

  .service1-glass,
  .glass-mega-menu{
    position: static !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    padding: 12px;
    background: #fff;
    box-shadow: none;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-top: 8px;
  }

  .service1-showcase{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:8px;
    border-radius:10px;
    text-decoration:none;
    transition:.3s;
  }

  .service1-showcase:hover{
    background:#fff4e8;
  }

  .service1-title{
    font-size:12px;
    font-weight:600;
    margin-bottom:6px;
    color:#123b7a;
  }

  .service-img{
    width:40px !important;
    height:40px !important;
    object-fit:contain;
  }

  .glass-mega-menu img{
    width:90px;
    height:auto;
    object-fit:contain;
  }

  .nav-link{
    padding:12px 10px;
    border-radius:10px;
    transition:.3s;
  }

  .nav-link:hover{
    background:transparent;
    color:#000;
  }
}

@media (max-width:991px){

  /* CLOSED BY DEFAULT */

  #servicesMenu,
  #solutionsMenu,
  #productsMenu{
    display:none !important;
    position:static !important;
    width:100% !important;
    left:auto !important;
    top:auto !important;
    transform:none !important;
    margin-top:10px;
  }

  /* OPEN */

  .service1-dropdown.active #servicesMenu,
  .solution-dropdown.active #solutionsMenu{
    display:grid !important;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
  }

  .mega-product.active #productsMenu{
    display:flex !important;
    gap:12px;
    flex-wrap:wrap;
  }

  /* SMALL ICONS */

  .service-img{
    width:42px !important;
    height:42px !important;
  }

  #productsMenu img{
    width:120px;
    height:auto;
  }

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

  .mobile-dropdown-btn{
    width:100%;
    text-align:left;
    background:none;
    border:none;
    padding:12px 0;
  }



  .service1-dropdown.active #servicesMenu{
    display:grid;
  }

  .solution-dropdown.active #solutionsMenu{
    display:grid;
  }

  .mega-product.active #productsMenu{
    display:flex;
  }

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

  .navbar-nav li{
    position:relative !important;
    width:100%;
  }

  .nav-link,
  .mobile-dropdown-btn{
    display:block;
    width:100%;
    position:relative !important;
    z-index:10;
  }

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

  .mobile-dropdown-btn{
    width:auto !important;
    min-width:unset !important;
    display:inline-block !important;

    background:none !important;
    border:none !important;

    padding:12px 0 !important;
    border-radius:0 !important;
  }

  .mobile-dropdown-btn:hover,
  .mobile-dropdown-btn:focus,
  .mobile-dropdown-btn:active{
    background:transparent !important;
    box-shadow:none !important;
  }

}