* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* ===== COLORS (Variables) ===== */
:root {
  --blue-dark: #01328E;
  --blue-light: #08A1DD;
  --bg-light: #f4f4f4;
  --text-dark: #000;
  --text-muted: #555;
  --white: #ffffff;

  /* ✅ Add new ones here */
  --border-color: #E2E8F0;
  --primary-blue: #08A1DD;
  --glow-blue: rgba(8, 161, 221, 0.15);
  --transition-smooth: all 0.3s ease;
  --text-main: #1E293B;
  --font-family: 'Inter', sans-serif;
}

/* ============================= */
/*         NAVBAR                */
/* ============================= */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 55px;
  display: block;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-size: 15px;
  font-weight: 500;
  transition: 0.2s;
}

.nav-links a:hover {
  color: var(--blue-light);
}

.nav-links a.active {
  color: var(--blue-light) !important;
  font-weight: 700;
}

.login-btn {
  background: var(--blue-dark);
  color: white !important;
  padding: 8px 39px;
  border-radius: 30px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  margin-left: 0px;
  transition: 0.3s;
}

.login-btn:hover {
  background: var(--blue-light);
  color: white !important;
}

/* ===== HAMBURGER MENU ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #000;
  border-radius: 5px;
  transition: 0.3s;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.product-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 25px;
  margin-left: 10px;
  background: #01328E;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.product-btn:hover {
  background: #08A1DD;
  transform: translateY(-2px);
}

/* Menu */
.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .3s;
  overflow: hidden;
  z-index: 999;
}

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

.dropdown-menu a:hover {
  background: #f5f5f5;
  color: #01328E;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===== NAVBAR RESPONSIVE ===== */
@media (max-width: 1140px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 19px;
  }
}

@media (max-width: 1100px) {
  .nav-container {
    flex-direction: row;
  }

  .nav-links {
    gap: 16px;
  }
}

@media (max-width: 1080px) {
  .nav-container {
    flex-direction: row;
  }

  .nav-links {
    gap: 10px;
  }
}

@media (max-width: 1020px) {
  .nav-container {
    flex-direction: row;
    gap: 10px;
  }

}

@media (max-width: 980px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .login-btn {
    margin-left: 0;
  }
}


.hero {
  width: 100%;
  padding: 40px 20px;
  background: white;
  overflow: hidden;
}

.hero-container {
  max-width: 1156px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 0px;
  animation: fadeUp 0.9s ease forwards;
}

/* Any image/illustration inside the hero stays fluid */
.hero-container img {
  max-width: 100%;
  height: auto;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-text p {
  font-size: 13px;
  padding: 6px 16px;
  color: #01328E;
  display: inline-block;
  border: 1px solid #01328E;
  border-radius: 20px;
  margin-bottom: 10px;
  opacity: 0;
  animation: slideLeft 0.7s ease forwards;
}

.hero-text h2 {
  font-size: 35px;
  font-weight: 500;
  color: #01328E;
  opacity: 0;
  animation: slideLeft 0.9s ease forwards;
  animation-delay: 0.2s;
  margin-top: 15px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 69px;
  margin-right: 18px;
  opacity: 0;
  animation: slideRight 0.9s ease forwards;
  animation-delay: 0.4s;
}

.btn-secondary {
  background-color: #01328E;
  color: #fff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  height: 38px;
  width: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: #01328E;
  color: #fff;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
  padding: 11px 37px;
}

.btn-primary:hover,
.btn-secondary:hover {
  background: #08A1DD;
  color: #fff;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 25px rgba(8, 161, 221, 0.25);
}

.btn-secondary img {
  filter: brightness(0) invert(1);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* ===== LAPTOP ===== */
@media (max-width: 1400px) {
  .hero-container {
    max-width: 1140px;
    margin-top: 50px;
  }
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
  .hero {
    padding: 35px 20px;
  }

  .hero-container {
    gap: 25px;
    margin-top: 40px;
  }

  .hero-text h2 {
    font-size: 30px;
  }

  .hero-buttons {
    margin-top: 68px;
    margin-right: 0;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hero-container {
    margin-top: 30px;
  }

  .hero-buttons {
    justify-content: center;
    margin-top: 68px;
    margin-right: 0;
  }

  .hero-text h2 {
    font-size: 30px;
  }
}

/* ===== SMALL MOBILE / STACKED ===== */
@media (max-width: 564px) {
  .hero-container {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
    text-align: left;
  }

  .hero-text {
    width: 100%;
  }

  .hero-buttons {
    justify-content: flex-start;
    margin-top: 20px;
    margin-right: 0;
  }

  .hero-text h2 {
    font-size: 28px;
  }
}

/* ===== EXTRA SMALL MOBILE ===== */
@media (max-width: 364px) {
  .hero {
    padding: 30px 15px;
  }

  .hero-container {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 15px;
    text-align: left;
  }

  .hero-buttons {
    justify-content: flex-start;
    margin-top: 20px;
    margin-right: 0;
    flex-wrap: wrap;
  }

  .hero-text h2 {
    font-size: 24px;
  }

  .hero-text p {
    font-size: 12px;
    padding: 5px 12px;
  }

  .btn-primary {
    padding: 10px 28px;
    font-size: 13px;
  }
}




/* <!-- SECTION TWO SECTION TWO SECTION TWO SECTION TWO SECTION TWO --> */

/* BASE STYLES */
.image-section {
  width: 100%;
  padding: 30px 20px 0;
  /* halka sa upar shift */
  background: #fff;
}

.image-container {
  max-width: 1130px;
  margin: auto;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: -50px;
  /* extra content hide kare */
}

.image-container img {
  width: 100%;
  max-width: 1156px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  /* optional hover zoom */
}



/* ===== RESPONSIVE ===== */
@media (max-width: 1400px) {
  .image-section {
    width: 100%;
    padding: 0px 20px 0;
    margin-top: -59px;
    background: #fff;
  }
}

@media (max-width: 1280px) {
  .image-container {
    height: 500px;
  }

  .image-container img {
    width: 100%;
    max-width: 1156px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    margin-top: 116px;
  }
}

@media (max-width: 992px) {
  .image-container {
    height: 400px;
    padding: 0 16px;
  }
}

@media (max-width: 768px) {
  .image-container {
    height: 300px;
    padding: 0 12px;
  }

  .image-container img {
    max-width: 100%;
    border-radius: 8px;
  }
}

@media (max-width: 576px) {
  .image-container {
    height: 250px;
    padding: 0 8px;
  }

  .image-container img {
    max-width: 100%;
    border-radius: 6px;
    margin-top: 76px;

  }
}

/* SECTION THREE SECTION THREE SECTION THREE SECTION THREE SECTION THREE */

.info-section {
  padding: 53px 20px;
  margin-top: 0;
  /* fix */
  overflow: hidden;
}

.container {
  max-width: 1130px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-top: 10px;
}

/* Animation initial state */
.info-section .left,
.info-section .right {
  opacity: 0;
  transition: all 0.9s ease;
}

.info-section .left {
  transform: translateX(-50px);
}

.info-section .right {
  transform: translateX(50px);
}

/* Animation start when section comes on screen */
.info-section.show .left,
.info-section.show .right {
  opacity: 1;
  transform: translateX(0);
}

/* Left Side */
.left {
  flex: 1;
  margin-top: 34px;
}

.subheading {
  font-size: 13px;
  color: #01328E;
  max-width: 469px;
  display: inline-block;
  border: 1px solid #01328E;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 25px;

}

.heading {
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #01328E;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 11px 37px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.primary,
.secondary {
  background: #01328E;
  color: #fff;
}

.primary:hover,
.secondary:hover {
  background: #08A1DD;
  color: #fff;
  transform: translateY(-4px);
}

/* Right Side */
.right {
  flex: 1;
}

.right p {
  font-size: 17px;
  line-height: 1.4;
  color: black;
  margin-top: 76px;

}

/* Responsive */
@media (max-width: 1400px) {
  .subheading {
    font-size: 13px;
    color: #01328E;
    max-width: 469px;
    display: inline-block;
    border: 1px solid #01328E;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .buttons {
    display: flex;
    gap: 15px;
    margin-top: 27px;
  }

}

@media (max-width: 768px) {
  .container {
    /* flex-direction: column; */
    text-align: left;
    margin-top: -30px;

  }

  .buttons {
    justify-content: center;
  }

  .info-section .left,
  .info-section .right {
    transform: translateY(40px);
  }

  .info-section.show .left,
  .info-section.show .right {
    transform: translateY(0);
  }

}

@media (max-width: 600px) {
  .container {
    flex-direction: column;
    text-align: left;
    margin-top: -51px;

  }

  .buttons {
    justify-content: left;
  }

  .right p {
    font-size: 16px;
    line-height: 1.4;
    color: black;
    margin-top: -8px;
  }

  .info-section .left,
  .info-section .right {
    transform: translateY(40px);
  }

  .info-section.show .left,
  .info-section.show .right {
    transform: translateY(0);
  }
}

@media (max-width: 477px) {
  .container {
    flex-direction: column;
    text-align: left;
    margin-top: -51px;

  }

  .buttons {
    justify-content: left;
  }

  .right p {
    font-size: 14px;
    line-height: 1.4;
    color: black;
    margin-top: -28px;
  }

  .heading {
    font-size: 36px;
    margin-bottom: 20px;
    color: #01328E;
  }

  .info-section .left,
  .info-section .right {
    transform: translateY(40px);
  }

  .info-section.show .left,
  .info-section.show .right {
    transform: translateY(0);
  }
}

@media (max-width: 433px) {
  .container {
    flex-direction: column;
    text-align: left;
    margin-top: -51px;

  }

  .buttons {
    justify-content: left;
  }

  .right p {
    font-size: 12px;
    line-height: 1.4;
    color: black;
    margin-top: -28px;

  }

  .heading {
    font-size: 30px;
    margin-bottom: 20px;
    color: #01328E;
  }

  .info-section .left,
  .info-section .right {
    transform: translateY(40px);
  }

  .info-section.show .left,
  .info-section.show .right {
    transform: translateY(0);
  }
}

@media (max-width: 372px) {
  .container {
    flex-direction: column;
    text-align: left;
    margin-top: -74px;

  }

  .buttons {
    justify-content: left;
    display: inline-grid;
  }

  .right p {
    font-size: 12px;
    line-height: 1.4;
    color: black;
    margin-top: -28px;

  }

  .heading {
    font-size: 29px;
    margin-bottom: 20px;
    color: #01328E;
  }

  .info-section .left,
  .info-section .right {
    transform: translateY(40px);
  }

  .info-section.show .left,
  .info-section.show .right {
    transform: translateY(0);
  }

  .subheading {
    font-size: 12px;
    color: #01328E;
    max-width: 469px;
    display: inline-block;
    border: 1px solid #01328E;
    padding: 5px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    width: 112px;
  }
}

/* SECTION FOUR SECTION FOUR SECTION FOUR SECTION FOUR SECTION FOUR */

.stats-section {
  padding: 50px 20px;
  background: #fff;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

/* BOX */
.stat-box {
  padding: 0 26px;
  border-left: 1px solid #bdbdbd;

  /* START ANIMATION */
  opacity: 0;
  transform: translateY(40px);
  animation: statFadeUp 0.8s ease forwards;
}

/* DELAY */
.stat-box:nth-child(1) {
  animation-delay: 0.1s;
}

.stat-box:nth-child(2) {
  animation-delay: 0.3s;
}

.stat-box:nth-child(3) {
  animation-delay: 0.5s;
}

.stat-box:nth-child(4) {
  animation-delay: 0.7s;
}

/* NUMBER */
.stat-box h3 {
  display: inline-block;
  background: #f3f5f7;
  color: #08A1DD;
  font-size: 34px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
  line-height: 1;

  /* HOVER EFFECT */
  transition: all 0.35s ease;
  cursor: pointer;
}

/* NUMBER HOVER */
.stat-box h3:hover {
  transform: scale(1.18);
  background: #08A1DD;
  color: #fff;
  box-shadow: 0 12px 30px rgba(8, 161, 221, 0.35);
}

/* TEXT */
.stat-box p {
  font-size: 10px;
  letter-spacing: 0.8px;
  color: #01328E;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.6;
}

.text-color {
  color: #01328E;
}

/* SECTION ANIMATION */
@keyframes statFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }
}

@media (max-width: 576px) {

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

  .stat-box {
    padding: 0 0 0 20px;
  }

  .stat-box h3 {
    font-size: 28px;
  }
}

/* ================================= */
/* SERVICES SECTION */
/* ================================= */

.services-section {
  width: 100%;
  padding: 90px 20px;
  background: #fff;
  overflow: hidden;
}

/* ================================= */
/* TITLE */
/* ================================= */

.section-title {
  color: #01328E;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 35px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-subtitle {
  max-width: 650px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 17px;
  line-height: 1.3;
}

h5.services {
  display: block;
  width: fit-content;
  margin: 57px auto 0;
  padding: 6px 16px;
  font-size: 13px;
  border-radius: 40px;
  border: 1px solid #01328E;
  color: #01328E;
  text-decoration: none;
  transition: 0.3s ease;
}

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

.service-wrapper {
  max-width: 1200px;
  margin: -20px auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 28px;
  flex-wrap: wrap;
}

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

.service-box {
  width: 100%;
  max-width: 350px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(1, 50, 142, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

  display: flex;
  flex-direction: column;

  opacity: 0;
  transform: translateY(40px);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    opacity 0.6s ease;
}

/* ================================= */
/* SCROLL ANIMATION */
/* ================================= */

.service-box.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================================= */
/* HOVER EFFECT */
/* ================================= */

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* ================================= */
/* HEADER */
/* ================================= */

.service-header {
  background: #01328E;
  color: #fff;
  padding: 18px 20px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}

/* ================================= */
/* BODY */
/* ================================= */

.service-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-body p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* ================================= */
/* LIST */
/* ================================= */

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.5;
}

.service-item img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin-top: 3px;
  flex-shrink: 0;
}

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

.service-btn {
  margin-top: auto;
  width: 100%;

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

  padding: 14px 20px;
  border-radius: 50px;

  background: #01328E;
  color: #fff;

  text-decoration: none;
  font-size: 14px;
  font-weight: 600;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.service-btn:hover {
  background: #08A1DD;
  transform: translateY(-2px);
  color: #fff;
}

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

.services {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  padding: 6px 17px;
  border-radius: 40px;
  border: 1px solid #01328E;
  color: #01328E;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: 0.3s ease;
}

/* ================================= */
/* TABLET */
/* ================================= */

@media (max-width: 1400px) {

  .section-title {
    color: #01328E;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 15px;
    font-size: 35px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
}

@media (max-width: 991px) {

  .section-subtitle {
    font-size: 32px;
  }

  .service-wrapper {
    gap: 22px;
  }

  .service-box {
    max-width: 48%;
  }
}

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

@media (max-width: 768px) {

  .services-section {
    padding: 70px 16px;
  }

  .section-subtitle {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .service-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .service-box {
    max-width: 100%;
  }

  .service-header {
    font-size: 20px;
    padding: 16px;
  }

  .service-body {
    padding: 22px 18px;
  }

  .service-body p,
  .service-item {
    font-size: 14px;
  }

  .service-btn {
    padding: 13px 18px;
  }
}

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

@media (max-width: 480px) {

  .section-subtitle {
    font-size: 22px;
    line-height: 1.4;
  }

  .service-box {
    border-radius: 20px;
  }

  .service-header {
    font-size: 18px;
  }
}



/* SECTION SIX SECTION SIX SECTION SIX SECTION SIX SECTION SIX */

/* ============================= */
/* SERVICE SECTION */
/* ============================= */

#services-section {
  padding: 74px 0px;
  text-align: center;
  box-sizing: border-box;
}

/* ============================= */
/* TITLE */
/* ============================= */

.service-title {
  font-size: 35px;
  color: #01328E;
  margin-bottom: 24px;
  margin-top: 64px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.services-ten {
  display: block;
  font-weight: 400;
  margin: 22px auto -13px;
  padding: 6px 16px;
  font-size: 13px;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid #01328E;
  color: #01328E;
  text-align: center;
  width: fit-content;
  transform: translateY(30px);

  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.services-ten:hover {
  background: #01328E;
  color: #fff;
}

/* ============================= */
/* GRID */
/* ============================= */

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
}

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

.service-card {
  width: 107%;
  background: #F6F5F2;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding-bottom: 10px;
  min-height: 300px;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;

  /* Smooth Animation */
  opacity: 0;
  transform: translateY(50px);

  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;

  will-change: transform, opacity;
}

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

.insan-logo {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 58px;
  width: 50px;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 300px;
  display: block;
  transition: transform 0.5s ease;
}

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

.service-name {
  font-weight: 500;
  font-size: 17px;
  color: #01328E;
  text-align: left;
  margin-left: 18px;
  display: flex;
  justify-content: left;
  align-items: center;
  margin-top: 18px;

  transition: color 0.3s ease;
}

.service-card h1,
.service-card h2,
.service-card h3,
.service-card h4,
.service-card p,
.service-card .card-title,
.service-card .card-description,
.service-card .service-name {
  transition: color 0.3s ease;
}

/* ============================= */
/* ICON */
/* ============================= */

.service-icon {
  position: absolute;
  bottom: 22px;
  right: 16px;
  background: #fff;
  color: #01328E;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.service-icon img {
  transition: filter 0.3s ease;
}

.service-icon:hover {
  background: #08A1DD;
  transform: scale(1.08);
}

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

/* ============================= */
/* HOVER EFFECT */
/* ============================= */

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  background-color: #01328E;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.service-card:hover .service-image {
  transform: scale(1.04);
}

.service-card:hover h1,
.service-card:hover h2,
.service-card:hover h3,
.service-card:hover h4,
.service-card:hover .card-title,
.service-card:hover .service-name {
  color: #fff;
}

.service-card:hover p,
.service-card:hover .card-description {
  color: #dddddd;
}

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

.service-button {
  margin-top: 40px;
  padding: 12px 30px;
  background-color: #01328E;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  border: 1px solid #01328E;

  opacity: 0;
  transform: translateY(30px);

  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.service-button:hover {
  background-color: #08A1DD;
  border-color: #08A1DD;
}

/* ============================= */
/* SHOW ANIMATION */
/* ============================= */

.show {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth Delays */

.service-card:nth-child(1) {
  transition-delay: 0.05s;
}

.service-card:nth-child(2) {
  transition-delay: 0.1s;
}

.service-card:nth-child(3) {
  transition-delay: 0.15s;
}

.service-card:nth-child(4) {
  transition-delay: 0.2s;
}

.hidden-services {
  display: none;
}

/* ============================= */
/* TABLET */
/* ============================= */

@media (max-width: 992px) {

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 650px;
  }

  .service-image {
    height: 240px;
  }
}

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

@media (max-width: 600px) {

  #services-section {
    padding: 40px 15px;
  }

  .service-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 320px;
  }

  .service-card {
    min-height: auto;
  }

  .service-image {
    height: 230px;
  }

  .service-name {
    font-size: 16px;
    margin-right: 55px;
  }

  .service-button {
    margin-top: 10px;
  }
}

/* ============================= */
/* EXTRA */
/* ============================= */

@media (max-width: 768px) {

  .card {
    display: flex;
    flex-direction: column;
  }

  .service-icon {
    margin-bottom: -14px;
  }
}


/* SECTION SEVEN SECTION SEVEN SECTION SEVEN SECTION SEVEN  */

#features-section {
  padding: 0px 0px;
  text-align: center;
  position: relative;
  /* 🔥 MUST (for decor positioning) */
  overflow: hidden;
  /* extra overflow hide */
}

.features-title {
  font-size: 35px;
  font-weight: 500;
  color: #01328E;
  margin-bottom: 30px;
  margin-top: 54px;
}

.services-nine {
  display: block;
  margin: 35px auto -40px;
  padding: 6px 16px;
  font-size: 13px;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid #01328E;
  color: #01328E;
  text-align: center;
  width: fit-content;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;


}

.features-card {
  background: #F6F5F2;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding-bottom: 20px;
  min-height: 300px;
  transition: all 0.4s ease;
}



/* Link underline remove */
.features-grid a,
.features-grid a:hover,
.features-grid a:focus,
.features-grid a:active,
.features-grid a:visited {
  text-decoration: none !important;
  color: inherit;
}

/* Card styling */
.features-card {
  display: block;
}

.features-image {
  width: 100%;
  height: 300px;
  display: block;
}

.features-name {
  margin: 17px 60px 0 22px;
  font-size: 17px;
  color: #01328E;
  text-align: left;
  display: flex;
  justify-content: left;
  align-items: center;
  margin-top: 20px;
  margin-left: 18px;
}

.features-icon {
  position: absolute;
  bottom: 37px;
  right: 15px;
  background: #fff;
  border-radius: 50%;
  height: 38px;
  width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.features-icon-two {
  position: absolute;
  bottom: 25px;
  right: 15px;
  background: #fff;
  border-radius: 50%;
  height: 38px;
  width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* .features-icon img {
  width: 16px;
  height: 16px;
  transition: 0.3s;
} */

.features-icon:hover {
  background: #08A1DD;
}

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

.features-icon-two:hover {
  background: #08A1DD;
}

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

.features-card:hover {
  transform: translateY(-10px) scale(1.03);
  background-color: #01328E;
}

.features-card:hover .features-name {
  color: #fff;
}

.features-button {
  margin-top: 40px;
  padding: 12px 30px;
  background-color: #01328E;
  color: #fff;
  border-radius: 25px;
  border: 1px solid #01328E;
  cursor: pointer;
}

.features-button:hover {
  background-color: #08A1DD;
  border-color: #08A1DD;
}

/* 🔥 DECOR FIX */
.offer__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  bottom: 365px;
  left: 108px;
  z-index: 10;
}

.decor {
  position: absolute;
  width: 60px;
  z-index: 0;
  opacity: 0.9;
}

/* keep cards above decor */
.features-grid,
.features-title,
.features-button {
  position: relative;
  z-index: 2;
}

/* Responsive */

.decor {
  position: absolute;
  width: clamp(30px, 4vw, 60px);
  /* screen ke hisaab se auto size */
  z-index: 0;
  opacity: 0.9;
  pointer-events: none;
}

/* bottom left */
.decor--one {
  bottom: -15px;
  left: clamp(6px, 2vw, 10px);
}

/* top left */
.decor--two {
  top: clamp(120px, 16vw, 237px);
  left: clamp(6px, 2vw, 10px);
}

/* Choti screens pe hide */
@media (max-width: 768px) {
  .decor {
    display: none;
  }
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* mobile decor */
@media (max-width: 768px) {
  .decor {
    width: 80px;
    opacity: 0.2;
  }
}

@media (max-width: 480px) {
  .decor {
    display: none;
  }

  .features-icon {
    position: absolute;
    bottom: 12px;
    right: 15px;
    background: #fff;
    border-radius: 50%;
    height: 38px;
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
  }
}


/* SECTION EIGHT SECTION EIGHT SECTION EIGHT SECTION EIGHT SECTION EIGHT  */


/* BASE STYLES */
.steps {
  padding: 70px 0px;
  margin-top: -21px;
}

.steps__container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
  margin-top: 61px;
}

.steps__tag {
  padding: 6px 16px;
  font-size: 13px;
  border: 1px solid #01328E;
  border-radius: 20px;
  color: #01328E;
}

.steps__title {
  font-size: 35px;
  font-weight: 500;
  margin: 24px 0;
  color: #01328E;
}

.steps__desc {
  color: #555;
  max-width: 600px;
  margin: auto;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.step-card {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
  width: 100%;
  max-width: 538px;
  /* maintain max width */
  margin: auto;
  height: 306px;

}

.step-card__bg {
  position: absolute;
  right: 0;
  top: 41px;
  width: 275px;
  pointer-events: none;
  z-index: 20;
}

/* TEXT & BUTTON */
.step-card__title {
  font-size: 30px;
}

.step-card__heading {

  font-size: 26px;
  font-weight: 500;
  margin-top: 14px;

}

.step-card__text {
  font-size: 15px;
  margin-top: 15px;
  font-weight: 400;

}

.step-card__list li {
  font-size: 20px;
  margin-top: 10px;
  font-weight: 500;
}

.steps__btn {
  background: #01328E;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin-top: 31px;
  border-radius: 20px;
}

.steps__btn:hover {
  background-color: #08A1DD;
  cursor: pointer;
}

/* ANIMATION */
.steps__header,
.step-card,
.steps__footer {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.steps__header.show,
.step-card.show,
.steps__footer.show {
  opacity: 1;
  transform: translateY(0);
}

/* HOVER EFFECT */
.step-card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Desktop / default */
.steps__grid .step-card:nth-child(1) {
  background: #01328E;
  /* Pehla card ka color */
  color: #fff;
}

.steps__grid .step-card:nth-child(2) {
  background: #d9e6f2;
  /* Dusra card ka color */
  color: #01328E;
}

/* Agar aur cards ho to add kar sakte ho */
.steps__grid .step-card:nth-child(3) {
  background: #08A1DD;
  color: #fff;
}

.steps__grid .step-card:nth-child(4) {
  background: #B3D4FF;
  color: #01328E;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .steps__grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .step-card__bg {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .steps__grid {
    grid-template-columns: 1fr;
    /* single column */
    gap: 20px;
  }

  .step-card__bg {
    position: relative;
    width: 140px;
    margin: 10px auto 0;
    /* center image on small screens */
    top: 0;
    right: 0;
  }

  .step-card {
    padding: 20px;
    text-align: center;
  }

  .step-card__title {
    font-size: 24px;
  }

  .step-card__heading,
  .step-card__text,
  .step-card__list li {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .steps {
    padding: 60px 15px;
  }

  .step-card__title {
    font-size: 20px;
  }

  .step-card__heading,
  .step-card__text,
  .step-card__list li {
    font-size: 16px;
  }

  .steps__btn {
    width: 100%;
    padding: 12px 0;
  }
}

/* SECTION NINE SECTION NINE SECTION NINE SECTION NINE SECTION NINE */


/* Main Container */
.testimonial-slider {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
  margin-top: -77px;

}

/* Slide */
.slide {
  min-width: 100%;
  display: flex;
  gap: 20px;
  padding: 20px;
  align-items: stretch;
  margin-top: 55px;
}

/* Left Card */
.left-card {
  flex: 1;
  position: relative;
  height: 450px;
  overflow: hidden;
  background-color: #01328E;
  border-radius: 20px;
}



/* Overlay */
.testimonial-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  padding: 20px;
  border-radius: 16px;
  color: #01328E;

}

.testimonial-overlay p {
  font-size: 41px;
  color: white;
  line-height: 1.3;
  margin-top: -6px;
  margin-left: -2px;
}



/* Right Card */
.right-card {
  flex: 1;
  background: #08A1DD;
  color: white;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}


/* Background image effect */
.right-card::before {
  content: "";
  position: absolute;
  top: -22px;
  right: -11px;
  width: 102%;
  height: 78%;
  background: url("../img/Mask-Group.png") no-repeat center;
  background-size: contain;
}


.tag {
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 5px 12px;
  border-radius: 30px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  color: white;
}

.right-card h2 {
  font-size: 30px;
  color: white;
  font-weight: 400;
  margin-bottom: 181px;
  line-height: 1.3;
  position: relative;
  z-index: 2;

}

.bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  margin-top: -20px;
}

.king {
  position: absolute;
  top: -12px;
  left: 0px;
}

.bottom h3 {
  font-size: 24px;
  color: white;
  font-weight: 800;
}

.bottom p {
  font-size: 14px;
  opacity: 0.8;
  color: white;
}

.read-btn {
  background: #01328E;
  color: white;
  border: none;
  padding: 11px 37px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.read-btn:hover {
  transform: translateY(-2px);
  background-color: white;
  color: #01328E;
}

.btn-two {

  position: absolute;
  bottom: 29px;
  right: 311px;
  background: #fff;
  border-radius: 50%;
  height: 38px;
  width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.btn-three {
  background: white;
  color: #01328E;
  border: none;
  padding: 11px 37px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 382px;
  margin-left: 38px;
}

.btn-two:hover {
  transform: translateY(-2px);
  background-color: #08A1DD;
  color: white;
}

.btn-three:hover {
  transform: translateY(-2px);
  background-color: #08A1DD;
  color: white;
}

.btn-two:hover img {
  filter: brightness(0) invert(1);

}

.tuseday {
  position: absolute;
  height: 60px;
  width: 55px;
  right: 33px;
  top: 43px;
}

.sry-blue {
  position: absolute;
  right: 33px;
  top: 37px;
  object-fit: cover;
  height: 55px;
  width: 55px;

}

/* Initial animation state */
.left-card {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.9s ease;
}

.right-card {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.9s ease;
}

/* When section comes on screen */
.testimonial-slider.show .left-card,
.testimonial-slider.show .right-card {
  opacity: 1;
  transform: translateX(0);
}

/* Overlay icons slow up-down movement */
.tuseday,
.sry-blue,
.king {
  animation: floatIcon 3s ease-in-out infinite;
}

.sry-blue {
  animation-delay: 0.4s;
}

.king {
  animation-delay: 0.8s;
}

.read-btn {
  text-decoration: none;
}


@keyframes floatIcon {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

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

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

  .testimonial-slider {
    padding: 30px 20px;
  }

  .testimonial-overlay p {
    font-size: 34px;
  }

  .right-card h2 {
    font-size: 26px;
    margin-bottom: 140px;
  }

  .btn-two {
    right: 250px;
  }
}

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

  .slide {
    flex-direction: column;
    gap: 25px;
  }

  .left-card,
  .right-card {
    width: 100%;
  }

  .left-card {
    height: 380px;
  }

  .testimonial-overlay p {
    font-size: 30px;
    line-height: 1.4;
  }

  .right-card {
    padding: 28px;
  }

  .right-card h2 {
    font-size: 24px;
    margin-bottom: 100px;
  }

  .bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .btn-two {
    position: static;
    margin-top: 15px;
  }

  .btn-three {
    margin-top: 260px;
    margin-left: 20px;
  }

  .tuseday,
  .sry-blue {
    width: 48px;
    height: 48px;
    right: 20px;
  }
}

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

  .testimonial-slider {
    margin-top: -40px;
    padding: 20px 15px;
  }

  /* Hide the top-right asterisk icon and bottom-left arrow button on the left-card.
     Replace .icon-badge / .arrow-btn below with the actual class names used
     in your HTML for these two elements if they differ. */
  .left-card .icon-badge,
  .left-card .arrow-btn {
    display: none;
  }

  .slide {
    padding: 0;
  }

  .left-card {
    height: 300px;
    border-radius: 16px;
  }

  .right-card {
    border-radius: 16px;
    padding: 22px;
  }

  .testimonial-overlay {
    top: 15px;
    left: 15px;
    right: 15px;
    padding: 10px;
  }

  .testimonial-overlay p {
    font-size: 24px;
    margin-top: 0;
    margin-left: 0;
  }

  .tag {
    font-size: 10px;
    padding: 5px 10px;
  }

  .right-card h2 {
    font-size: 22px;
    margin-bottom: 80px;
    line-height: 1.4;
  }

  .bottom h3 {
    font-size: 20px;
  }

  .bottom p {
    font-size: 13px;
  }

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

  .btn-three {
    width: calc(100% - 40px);
    margin: 180px auto 0;
    display: flex;
    justify-content: center;
  }

  .btn-two {
    width: 34px;
    height: 34px;
  }

  .king {
    width: 45px;
    top: -5px;
  }

  .tuseday,
  .sry-blue {
    width: 42px;
    height: 42px;
    top: 20px;
    right: 20px;
  }
}

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

  .left-card {
    height: 250px;
  }

  .testimonial-overlay p {
    font-size: 20px;
  }

  .right-card h2 {
    font-size: 19px;
    margin-bottom: 70px;
  }

  .bottom h3 {
    font-size: 18px;
  }

  .btn-three {
    margin-top: 150px;
    padding: 10px 20px;
  }

  .tuseday,
  .sry-blue {
    width: 42px;
    height: 42px;
    top: 20px;
    right: 20px;
    display: none;
  }

  .right-card::before {
    content: "";
    position: absolute;
    top: -22px;
    right: -11px;
    display: none;
    width: 102%;
    height: 78%;
    background: url("../img/Mask-Group.png") no-repeat center;
    background-size: contain;
  }
}

/* SECTION TEN SECTION TEN SECTION TEN SECTION TEN SECTION TEN */


.trust-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  /* FIX: flexible height */
  overflow: hidden;
  margin-top: 20px;
}

/* Full background */
.trust-bg {
  width: 100%;
  height: 80%;
  margin-top: 25px;
  object-fit: cover;
  display: block;
}

.letter {
  display: inline-block;
}

/* Card */
.trust-card {
  position: absolute;
  top: 80px;
  left: 40px;
  width: 100%;
  max-width: 550px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 24px;
}

/* Top Row */
.trust-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  /* FIX */
}

/* Badge */
.trust-badge {
  border: 1px solid #003f9e;
  color: #003f9e;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;

}

/* Heading */
.trust-card h2 {
  display: inline-block;
  background-color: rgba(156, 215, 238, 1);
  color: #01328E;
  font-size: 35px;
  font-weight: 400;
  margin: 0 0 20px;
  line-height: 1.2;
  padding: 3px 8px;
  border-radius: 12px;
  font-family: work sans-serif;
}



/* Bottom */
.trust-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Text */
.trust-bottom p {
  margin: 0;
  font-size: 14px;
  color: #222;
}

/* Button */
.trust-btn {
  background: #01328E;
  color: #fff;
  text-decoration: none;
  padding: 11px 37px;
  border-radius: 25px;
  font-size: 15px;
  white-space: nowrap;
  margin-top: 53px;
}

.trust-btn:hover {
  background-color: #08A1DD;
}

.my-love {
  margin-bottom: 2px;
  color: #01328E;
  font-size: 35px;
  font-weight: 400;
}

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

/* ===== LARGE TABLET ===== */
@media (max-width: 992px) {

  .trust-section {
    min-height: 600px;
  }

  .trust-card {
    top: 50px;
    left: 30px;
    max-width: 500px;
    padding: 22px;
  }

  .trust-card h2 {
    font-size: 34px;
  }

  .my-love {
    font-size: 32px;
  }

  .trust-bottom p {
    font-size: 15px;
  }
}

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

  .trust-section {
    min-height: 520px;
  }

  .trust-bg {
    height: 100%;
  }

  .trust-card {
    position: absolute;
    top: 30px;
    left: 20px;
    right: 20px;

    width: auto;
    max-width: 100%;

    padding: 20px;
    border-radius: 16px;
  }

  .trust-top {
    margin-bottom: 18px;
  }

  .trust-card h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .my-love {
    font-size: 28px;
  }

  .trust-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .trust-bottom p {
    font-size: 15px;
    line-height: 1.6;
  }

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

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

  .trust-section {
    min-height: 480px;
    margin-top: 10px;
  }

  .trust-card {
    top: 20px;
    left: 15px;
    right: 15px;

    padding: 18px;
    border-radius: 14px;
  }

  .trust-badge {
    font-size: 9px;
    padding: 5px 12px;
  }

  .trust-card h2 {
    font-size: 22px;
    padding: 3px 6px;
    border-radius: 8px;
  }

  .my-love {
    font-size: 22px;
  }

  .trust-bottom p {
    font-size: 14px;
  }

  .trust-btn {
    padding: 10px 18px;
    font-size: 13px;
  }
}

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

  .trust-card h2 {
    font-size: 19px;
  }

  .my-love {
    font-size: 19px;
  }

  .trust-bottom p {
    font-size: 13px;
  }

  .trust-btn {
    font-size: 12px;
    padding: 9px 16px;
  }
}



/* ============================= */
/*     CONTACT + SUBSCRIBE       */
/* ============================= */
.contact-section {
  background: var(--blue-light);
  padding: 50px 20px;
  margin-top: 190px;

}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: stretch;
  margin-top: -365px;
}

.contact-form {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 20px;
  flex: 1;
  max-width: 100%;
}

.bottom-tag {
  border: 1px solid var(--blue-dark);
  background: transparent;
  padding: 6px 14px;
  border-radius: 20px;
  color: var(--blue-dark);
  font-size: 12px;
}

.contact-form h2 {
  margin: 15px 0 10px;
  color: var(--blue-dark);
  font-size: 32px;
}

.contact-form p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.field label {
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--text-dark);
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  background: #eaeaea;
  font-size: 14px;
  outline: none;
}

textarea {
  height: 100px;
  resize: none;
}

.full {
  margin-top: 5px;
}

.form-btn {
  background: var(--blue-dark);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 20px;
  font-weight: 500;
  transition: 0.3s ease;
}

.form-btn:hover {
  background: var(--blue-light);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-image {
  position: relative;
  flex: 1;
}

.contact-image img {
  width: 97%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.call-box {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-bottom {
  margin-top: -3px;
  width: 69px;
  height: 32px;
}

/* CONTACT ANIMATIONS */
.contact-form,
.contact-image,
.subscribe {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s ease;
}

.contact-form {
  transform: translateX(-80px);
}

.contact-image {
  transform: translateX(80px);
}

.show {
  opacity: 1;
  transform: translate(0, 0);
}

.contact-form input:focus,
.contact-form textarea:focus {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(10, 79, 163, 0.25);
}

/* SUBSCRIBE */
.subscribe {
  max-width: 700px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: white;
  flex-wrap: wrap;
  margin-bottom: 15px;
  transition-delay: 0.3s;
}

.subscribe p {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 35px;
}

.subscribe-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.subscribe-box input {
  border: none;
  padding: 12px 20px;
  outline: none;
  border-radius: 40px;
  width: 273px;
}

.subscribe-box button {
  background: white;
  color: var(--blue-dark);
  border: none;
  padding: 2px 13px;
  cursor: pointer;
  border-radius: 40px;
  transition: 0.3s ease;
  font-size: 27px;
}

.subscribe-box button img {
  height: 10px;
  margin-bottom: 3px;
  transition: 0.3s ease;
}

.subscribe-box button:hover {
  background-color: var(--blue-dark);
}

.subscribe-box button:hover img {
  filter: brightness(0) invert(1);
}

/* CONTACT RESPONSIVE */
@media (max-width: 1140px) {
  .contact-section {
    margin-top: 200px;
  }

  .contact-container {
    margin-top: -250px;
    padding: 0 20px;
  }
}

@media (max-width: 785px) {
  .contact-section {
    margin-top: 80px;
    padding: 30px 15px;
  }

  .contact-container {
    flex-direction: column;
    margin-top: 0;
    gap: 20px;
  }

  .contact-form {
    width: 92%;
  }

  .contact-image img {
    width: 100%;
  }

  .row {
    flex-direction: column;
  }
}

/* ============================= */
/*           FOOTER              */
/* ============================= */
.footer {
  background: var(--blue-dark);
  color: #fff;
  padding: 60px 80px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.bottom img {
  width: 160px;
  margin-bottom: 20px;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  opacity: 0.9;
  cursor: pointer;
}

.footer-col ul li:hover {
  opacity: 1;
}

.footer-col ul li a {
  text-decoration: none;
  color: inherit;
}

.footer-col ul li a:hover {
  text-decoration: none;
  color: inherit;
}

.link {
  text-decoration: underline;
  color: white;
}

.contact {
  margin: 15px 0;
}

.btn-group {
  margin-top: 20px;
}

.button-ten {
  background: #fff;
  color: var(--blue-dark);
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  margin-right: 10px;
  cursor: pointer;
  font-weight: bold;
}

.button-ten:hover {
  background-color: var(--blue-light);
  color: white;
}

.button-seven {
  padding: 8px 14px;
  margin-left: -9px;
  border: none;
  border-radius: 30px;
  color: var(--blue-dark);
  font-size: 16px;
  background: white;
  cursor: pointer;
}

.button-seven:hover {
  background-color: var(--blue-light);
  color: white;
}

.button-seven:hover img {
  filter: brightness(0) invert(1);
}

.button-seven img {
  height: 9px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: #ccc;
  font-size: 14px;
  gap: 15px;
}

.footer-bottom .links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom .links span {
  cursor: pointer;
  color: white;
}

.footer-bottom .social {
  display: flex;
  gap: 15px;
}

.footer-bottom .social a {
  color: white;
  font-size: 16px;
}

/* FOOTER RESPONSIVE */
@media (max-width: 992px) {
  .footer {
    padding: 50px 40px 20px;
  }

  .footer-container {
    justify-content: flex-start;
  }
}

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

  .footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    text-align: left;
    align-items: flex-start;
  }

  .footer-col {
    width: 65%;
    min-width: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-bottom .links,
  .footer-bottom .social {
    justify-content: center;
    flex-wrap: wrap;
  }
}


#popupOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  padding: 20px;
}

.about-popup {
  width: 1050px;
  max-width: 95%;
  min-height: 650px;
  display: flex;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  position: relative;
}

.popup-left {
  width: 45%;
  background: linear-gradient(180deg, #0A4DCC 0%, #0066FF 100%);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-shrink: 0;
  margin: 0;
}

/* .popup-left img {
  width: 240px;
  max-width: 80%;
  position: relative;
  z-index: 5;
  margin-bottom: 169px;
} */


.popup-left::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -120px;
  right: -120px;
}

.popup-left::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -80px;
  left: 7px;
}

.clouds {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 120px;
  z-index: 2;
}

.clouds::before,
.clouds::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
}

.clouds::before {
  width: 180px;
  height: 90px;
  left: 20px;
  bottom: 0;
}

.clouds::after {
  width: 120px;
  height: 120px;
  left: 80px;
  bottom: 20px;
}

.popup-right {
  width: 55%;
  background: linear-gradient(135deg,
      #ffffff 0%,
      #f4f8ff 50%,
      #eaf2ff 100%);
  padding: 50px;
  position: relative;
}

.popup-right::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.05);
  top: -120px;
  right: -120px;
}

.popup-right::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.08);
  bottom: -80px;
  left: -80px;
}

.popup-right::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.05);
  top: -120px;
  right: -120px;
}

.popup-right::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.08);
  bottom: -80px;
  left: -80px;
}

.popup-right input,
.popup-right textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #dbe6ff;
  border-radius: 12px;
  padding: 15px 18px;
  margin-bottom: 15px;
  font-size: 15px;
  box-sizing: border-box;
}

.popup-right textarea {
  height: 140px;
  resize: none;
}

.submit {
  background-color: #01328E;
  color: white;
  padding: 5px 12px;
  border: none;
  border-radius: 27px;
}

.submit:hover {
  background-color: #08A1DD;
  color: white;
}

@media (max-width: 768px) {

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

  .popup-left {
    width: 100%;
    min-height: 300px;
  }

  .popup-left img {
    width: 180px;
  }
}


/* ============================= */
/*     CONTACT + SUBSCRIBE       */
/* ============================= */

.contact-section {
  background: #08A1DD;
  /* Original solid sky blue background */
  padding: 50px 20px;
  margin-top: 237px;
  position: relative;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: stretch;
  margin-top: -365px;
  position: relative;
  z-index: 5;
}

/* ===== DARK PREMIUM FORM CONTAINER (Image 2 Style) ===== */
.contact-form {
  background: #F6F5F2;
  /* Sleek dark theme background matching image 2 */
  padding: 38px;
  border-radius: 20px;
  flex: 1;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

/* Form Header Tracker Badges */
.tracker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 24px;
}

.tracker-pill {
  background: #08A1DD;
  border: 1px solid #08A1DD;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #01328E;
}

.tracker-pill.progress-pct {
  background: #08A1DD;
  border-color: #08A1DD;
  color: #01328E;
}

/* Swift Launch VIP Tag */
.badge-container {
  margin-bottom: 24px;
}

.bottom-tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  border: 1px solid #1f3ea6;
  border-radius: 30px;
  color: #1f3ea6;
  background: #fff;
  margin-bottom: 20px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

/* Form Typography */
.contact-form h2 {
  margin: 0 0 12px 0;
  color: #01328E;
  /* Contrast white header for dark theme */
  font-size: 35px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.contact-form p {
  font-size: 14px;
  line-height: 1.6;
  color: #01328E;
  /* Soft muted description */
  margin-bottom: 32px;
}

/* Inner Row Layout */
.row {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Inner Icon Inputs styling matched to Image 2 */
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 12px;
  transition: all 0.3s ease;
}



.input-icon {
  position: absolute;
  left: 18px;
  top: 15px;
  color: #01328E;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 5;
}

/* Form Control Elements */
input,
textarea {
  width: 100%;
  padding: 16px 16px 16px 52px;
  /* Left indent for icons */
  border-radius: 12px;
  border: none;
  background: white;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  border: 1px solid #e5e5e5;
}

textarea {
  height: 120px;
  resize: none;
  padding-top: 16px;
}

/* Focus visual states */
.input-wrapper:focus-within {
  border-color: #01328E;
  box-shadow: #01328E;

}

.input-wrapper:focus-within .input-icon {
  color: #01328E;
}

/* Full Width Field */
.full {
  margin-top: 4px;
  margin-bottom: 24px;
}

/* Premium Button Style matching Image 2 Gradient */
.form-btn {
  background: #01328E;
  color: white;
  padding: 11px 37px;
  border: none;
  border-radius: 100px;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: #01328E;
  transition: all 0.3s ease;
  width: auto;
}

.form-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(30deg);
  animation: shimmer 4s infinite linear;
}

@keyframes shimmer {
  0% {
    left: -150%;
  }

  50% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}

.form-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px #01328E;
  background-color: #08A1DD;
  color: white;
}

.form-btn:active {
  transform: translateY(1px);
}

/* Success Toast inside card */
.success-toast {
  display: none;
  background: linear-gradient(90deg, #064e3b 0%, #022c22 100%);
  border: 1px solid #10b981;
  color: #a7f3d0;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  align-items: center;
  gap: 12px;
  animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-15px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}


/* ===== ORIGINAL RIGHT IMAGE SECTION (Unchanged layout) ===== */
.contact-image {
  position: relative;
  flex: 1;
}

.contact-image img {
  width: 97%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.call-box {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.call-box p {
  font-size: 13px;
  line-height: 1.5;
  color: #444;
}

.icon-bottom {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #01328E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}


/* ===== ORIGINAL SUBSCRIBE FOOTER SECTION (Unchanged style) ===== */
.subscribe {
  max-width: 700px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: white;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.subscribe p {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 35px;
}

.subscribe-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.subscribe-box input {
  border: none;
  padding: 12px 20px;
  outline: none;
  border-radius: 40px;
  width: 273px;
  background: white;
  color: #333;
}

.subscribe-box button {
  background: white;
  color: #01328E;
  border: none;
  width: 38px;
  height: 38px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscribe-box button svg {
  width: 10px;
  height: 10px;
  color: #01328E;
  transition: 0.3s ease;
}

.subscribe-box button:hover {
  background-color: #01328E;
}

.subscribe-box button:hover svg {
  color: white;
}


/* ===== ANIMATION SYSTEM ===== */
.contact-form,
.contact-image,
.subscribe {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s ease;
}

.contact-form {
  transform: translateX(-80px);
}

.contact-image {
  transform: translateX(80px);
}

.show {
  opacity: 1;
  transform: translate(0, 0);
}

.subscribe {
  transition-delay: 0.3s;
}


/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1140px) {
  .contact-section {
    margin-top: 200px;
  }

  .contact-container {
    margin-top: -250px;
    padding: 0 20px;
  }
}

@media (max-width: 785px) {
  .contact-section {
    margin-top: 80px;
    padding: 30px 15px;
  }

  .contact-container {
    flex-direction: column;
    margin-top: 0;
    gap: 20px;
  }

  .contact-form {
    width: 100%;
    padding: 28px 20px;
  }

  .contact-form h2 {
    font-size: 32px;
  }

  .contact-image img {
    width: 100%;
  }

  .row {
    flex-direction: column;
    gap: 16px;
  }

  .form-btn {
    width: 100%;
  }

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

  .subscribe-box {
    width: 100%;
    justify-content: center;
  }
}

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

/* Footer */
.footer {
  background: #01328E;
  color: #fff;
  padding: 60px 80px 20px;
}

/* Container */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

/* Columns */
.footer-col {
  flex: 1;
  min-width: 220px;
  width: auto;
}

/* Logo */
.bottom img {
  width: 160px;
  margin-bottom: 20px;
}

/* Headings */
.footer-col h4 {
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 1px;
}

/* List */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  opacity: 0.9;
  cursor: pointer;
}

.footer-col ul li:hover {
  opacity: 1;
}

.footer-col ul li a {
  text-decoration: none;
  color: inherit;
}

.footer-col ul li a:hover {
  text-decoration: none;
  color: inherit;
}

/* Links */
.link {
  text-decoration: underline;
  color: white;
}

.contact {
  margin: 15px 0;
}

/* Buttons */
.btn-group {
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.button-ten {
  background: #fff;
  color: #01328E;
  border: none;
  padding: 11px 37px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
}

.button-ten:hover {
  background-color: #08A1DD;
  color: white;
}

.button-seven {
  height: 38px;
  width: 38px;
  border: none;
  border-radius: 30px;
  color: #01328E;
  font-size: 16px;
  background: white;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button-seven:hover {
  background-color: #08A1DD;
  color: white;
}

.button-seven:hover img {
  filter: brightness(0) invert(1);
}

.button-seven img {
  height: 10px;
}

/* Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  color: #ccc;
  font-size: 14px;
  gap: 15px;
}

.footer-bottom .links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom .links span {
  cursor: pointer;
  color: white;
}

.footer-bottom .social {
  display: flex;
  gap: 15px;
}

.footer-bottom .social a {
  color: white;
  font-size: 16px;
}

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

/* Large tablet / small desktop */
@media (max-width: 1100px) {
  .footer {
    padding: 55px 50px 20px;
  }

  .footer-container {
    gap: 25px;
  }
}

/* Tablet — 2 columns */
@media (max-width: 992px) {
  .footer {
    padding: 50px 40px 20px;
  }

  .footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: left;
  }

  .footer-col {
    width: 100%;
    min-width: 0;
  }
}

/* Mobile — single column, fully centered */
@media (max-width: 600px) {
  .footer {
    padding: 40px 20px;
    text-align: center;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-col {
    width: 100%;
    min-width: 100%;
  }

  .bottom img {
    margin-left: auto;
    margin-right: auto;
  }

  .btn-group {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-bottom .links,
  .footer-bottom .social {
    justify-content: center;
  }
}

/* Small mobile */
@media (max-width: 380px) {
  .footer {
    padding: 30px 15px;
  }

  .button-ten {
    padding: 10px 28px;
    font-size: 13px;
  }

  .footer-bottom .links {
    gap: 12px;
  }
}


/* ===== DEMO TRIGGER ===== */
.demo-container {
  text-align: center;
  max-width: 600px;
  padding: 40px 20px;
  z-index: 5;
}

.demo-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 40%, #93C5FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.demo-subtitle {
  font-size: 1.125rem;
  color: #94A3B8;
  margin-bottom: 32px;
  line-height: 1.6;
}

.demo-trigger {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0036A3 100%);
  color: #fff;
  border: none;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 82, 255, 0.35);
  transition: var(--transition-smooth);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.demo-trigger:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 82, 255, 0.5);
  background: linear-gradient(135deg, #1a66ff 0%, var(--primary-blue) 100%);
}

/* ===== POPUP OVERLAY ===== */
#popupOverlay {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgba(2, 6, 23, 0.8);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

#popupOverlay.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

/* ===== 3D PERSPECTIVE WRAPPER ===== */
.tilt-wrapper {
  perspective: 2000px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 900px;

}

/* ===== MAIN POPUP CARD - FIXED SIZING ===== */
.about-popup {
  width: 100%;
  max-width: 1040px;
  /* Fixed max-width */
  min-height: 640px;
  display: flex;
  border-radius: 32px;
  overflow: hidden;
  background: #ffffff;
  position: relative;
  box-shadow: var(--card-shadow);
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
  aspect-ratio: 1040 / 640;
  /* Fixed aspect ratio */
}

#popupOverlay.active .about-popup {
  transform: scale(1);
  opacity: 1;
}

/* ===== CLOSE BUTTON ===== */
.close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(241, 245, 249, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 100;
  transition: var(--transition-smooth);
  color: var(--text-main);
}

.close-btn:hover {
  background: #ffffff;
  transform: rotate(90deg) scale(1.05);
  color: var(--primary-blue);
  border-color: var(--primary-blue);
  box-shadow: 0 4px 15px rgba(0, 82, 255, 0.15);
}

/* ===== LEFT PANEL ===== */
.popup-left {
  width: 45%;
  background: linear-gradient(160deg, #0A192F 0%, #020c1b 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 50px 36px;
  text-align: center;
  color: #ffffff;
  transform-style: preserve-3d;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

#three-d-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}

#rocket-overlay-container {
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(60px);
  width: 160px;
  height: auto;
  z-index: 3;
  pointer-events: none;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
  will-change: transform;
}

#rocket-logo-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(0, 210, 255, 0.35));
  transform-style: preserve-3d;
}

.left-content {
  position: relative;
  z-index: 5;
  pointer-events: none;
  width: 100%;
  transform: translateZ(40px);
}

.logo-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00D2FF;
  margin-bottom: 16px;
  display: inline-block;
  background: rgba(0, 210, 255, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1.5px solid rgba(0, 210, 255, 0.2);
}

.left-content h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.25;
  background: linear-gradient(135deg, #ffffff 60%, #93C5FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.left-content p {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.6;
  font-weight: 500;
  max-width: 90%;
  margin: 0 auto;
}

/* Updated Left Footer - Smaller Circle */
.left-footer {
  position: relative;
  z-index: 5;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 12px;
  /* Reduced gap */
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.1) 0%, rgba(10, 25, 47, 0.8) 100%);
  padding: 10px 22px;
  /* Reduced padding */
  border-radius: 50px;
  border: 1.5px solid rgba(0, 210, 255, 0.25);
  transform: translateZ(35px);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Smaller Circle */
.brand-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  /* Reduced from 38px */
  height: 30px;
  /* Reduced from 38px */
  background: linear-gradient(135deg, #0A192F 0%, #001E62 100%);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
  flex-shrink: 0;
  overflow: hidden;
  padding: 2px;
}

/* Smaller Image inside Circle */
.brand-logo-icon img {
  width: 22px;
  /* Reduced from 30px */
  height: 22px;
  /* Reduced from 30px */
}

/* Slightly smaller text */
.brand-name-text {
  font-size: 13px;
  /* Reduced from 14px */
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #E2E8F0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#three-d-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#three-d-canvas canvas {
  width: 88% !important;
  height: 74% !important;
  margin-left: 17px;
  margin-top: 91px;
}

#leftPanel {
  position: relative;
  overflow: hidden;
}

/* ===== RIGHT PANEL ===== */
.popup-right {
  width: 55%;
  background: #ffffff;
  padding: 60px 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  transform-style: preserve-3d;
}

.popup-right::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.04) 0%, rgba(0, 82, 255, 0) 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

#formContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  transform: translateZ(25px);
}

.popup-right h2 {
  font-size: 30px;
  color: var(--text-main);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.form-sub {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.input-group {
  position: relative;
  width: 100%;
}

.popup-right input,
.popup-right textarea {
  width: 100%;
  background: #F8FAFC;
  border: 1.5px solid var(--border-color);
  border-radius: 14px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  font-family: var(--font-family);
  outline: none;
  box-sizing: border-box;
  transition: var(--transition-smooth);
}

.popup-right input:hover,
.popup-right textarea:hover {
  border-color: #CBD5E1;
  background: #F1F5F9;
}

.popup-right input:focus,
.popup-right textarea:focus {
  border-color: var(--primary-blue);
  background: #ffffff;
  box-shadow: 0 0 0 4px var(--glow-blue), 0 8px 16px rgba(0, 82, 255, 0.04);
}

.popup-right input::placeholder,
.popup-right textarea::placeholder {
  color: #94A3B8;
  opacity: 1;
  font-weight: 500;
}

.popup-right textarea {
  height: 100px;
  resize: none;
  line-height: 1.5;
}

.submit-container {
  margin-top: 6px;
}

.submit {
  background: #0B2447;
  color: #ffffff;
  padding: 11px 37px;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(11, 36, 71, 0.2);
  position: relative;
  overflow: hidden;
}

.submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 82, 255, 0.3);
  background-color: var(--primary-blue);
}

.submit:active {
  transform: translateY(0);
}

.submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.6s;
}

.submit:hover::after {
  left: 100%;
}

/* ===== SUCCESS SCREEN ===== */
.success-screen {
  display: none;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 100%;
  animation: fadeIn 0.4s ease forwards;
  position: relative;
  z-index: 20;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-icon {
  width: 72px;
  height: 72px;
  background: #ECFDF5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10B981;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
  border: 2px solid #A7F3D0;
}

.success-screen h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-main);
}

.success-screen p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 320px;
  line-height: 1.6;
  font-weight: 500;
}

/* ================================================================ */
/* ===== RESPONSIVE BREAKPOINTS - FIXED CONSISTENT SIZING ===== */
/* ================================================================ */

/* LAPTOP & TABLET LANDSCAPE (1024px - 1400px) */
@media (max-width: 1200px) {
  .about-popup {
    max-width: 920px;
    min-height: 580px;
    aspect-ratio: 920 / 580;
  }

  .popup-left {
    padding: 40px 28px;
  }

  .popup-right {
    padding: 48px 36px;
  }

  .left-content h3 {
    font-size: 28px;
  }

  #rocket-overlay-container {
    width: 200px;
  }

  .popup-right h2 {
    font-size: 32px;
  }
}

/* TABLET PORTRAIT & SMALL LAPTOP (768px - 1023px) */
/* @media (max-width: 1400px) {
  .left-footer {
    position: relative;
    z-index: 5;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.1) 0%, rgba(10, 25, 47, 0.8) 100%);
    padding: 10px 22px;
    border-radius: 50px;
    border: 1.5px solid rgba(0, 210, 255, 0.25);
    transform: translateZ(35px);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }

} */

@media (max-width: 1023px) {
  .about-popup {
    max-width: 700px;
    min-height: auto;
    aspect-ratio: 700 / 580;
    flex-direction: column;
    border-radius: 24px;
  }

  .popup-left {
    width: 100%;
    min-height: 280px;
    padding: 32px 28px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .popup-right {
    width: 100%;
    padding: 40px 32px;
  }

  #rocket-overlay-container {
    width: 170px;
    top: 55%;
  }

  .left-content h3 {
    font-size: 26px;
  }

  .left-footer {
    display: flex;
    /* Show footer on tablet */
    padding: 10px 22px;
  }

  .popup-right h2 {
    font-size: 30px;
  }

  .popup-right input,
  .popup-right textarea {
    padding: 12px 18px;
    font-size: 14px;
  }

  .popup-right textarea {
    height: 80px;
  }
}

/* MOBILE LARGE & TABLET SMALL (480px - 767px) */
@media (max-width: 767px) {
  #popupOverlay {
    padding: 12px;
  }

  .about-popup {
    max-width: 480px;
    min-height: auto;
    aspect-ratio: auto;
    border-radius: 20px;
    flex-direction: column;
  }

  .popup-left {
    width: 100%;
    min-height: 240px;
    padding: 24px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .popup-right {
    width: 100%;
    padding: 32px 24px;
  }

  #rocket-overlay-container {
    width: 140px;
    top: 52%;
  }

  .left-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .left-content p {
    font-size: 13px;
    max-width: 100%;
  }

  .logo-tag {
    font-size: 10px;
    padding: 4px 14px;
    margin-bottom: 12px;
  }

  .left-footer {
    display: flex;
    padding: 8px 18px;
    gap: 10px;
  }

  .brand-logo-icon {
    width: 32px;
    height: 32px;
  }

  .brand-logo-icon img {
    width: 24px;
    height: 24px;
  }

  .brand-name-text {
    font-size: 12px;
  }

  .popup-right h2 {
    font-size: 26px;
  }

  .form-sub {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .popup-form {
    gap: 12px;
  }

  .popup-right input,
  .popup-right textarea {
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 12px;
  }

  .popup-right textarea {
    height: 70px;
  }

  .submit {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
  }

  .close-btn {
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
  }

  .close-btn svg {
    width: 16px;
    height: 16px;
  }

  .success-screen h3 {
    font-size: 24px;
  }

  .success-icon {
    width: 60px;
    height: 60px;
  }
}

/* MOBILE SMALL (320px - 479px) */
@media (max-width: 479px) {
  #popupOverlay {
    padding: 8px;
  }

  .about-popup {
    max-width: 100%;
    border-radius: 16px;
    min-height: auto;
  }

  .popup-left {
    min-height: 200px;
    padding: 20px 16px;
  }

  .popup-right {
    padding: 24px 16px;
  }

  #rocket-overlay-container {
    width: 110px;
    top: 50%;
  }

  .left-content h3 {
    font-size: 18px;
  }

  .left-content p {
    font-size: 12px;
  }

  .logo-tag {
    font-size: 9px;
    padding: 3px 12px;
  }

  .left-footer {
    padding: 6px 14px;
    gap: 8px;
  }

  .brand-logo-icon {
    width: 28px;
    height: 28px;
  }

  .brand-logo-icon img {
    width: 20px;
    height: 20px;
  }

  .brand-name-text {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .popup-right h2 {
    font-size: 22px;
  }

  .form-sub {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .popup-form {
    gap: 10px;
  }

  .popup-right input,
  .popup-right textarea {
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 10px;
  }

  .popup-right textarea {
    height: 60px;
  }

  .submit {
    padding: 12px 16px;
    font-size: 13px;
  }

  .close-btn {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
  }

  .close-btn svg {
    width: 14px;
    height: 14px;
  }

  .success-screen h3 {
    font-size: 20px;
  }

  .success-screen p {
    font-size: 13px;
  }

  .success-icon {
    width: 50px;
    height: 50px;
  }
}


.sl-demo-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #090d16;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding: 20px;
}

.sl-headline-box {
  text-align: center;
  margin-bottom: 24px;
  z-index: 1;
}

.sl-headline-box h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.sl-headline-box p {
  color: #64748b;
  font-size: 16px;
  font-weight: 500;
}

/* Demo launch button */
.sl-trigger-action {
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border: none;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.sl-trigger-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.5);
}

/* --- UNIQUE PRESET POPUP DESIGN (ALL CLASS NAMES HAVE BEEN CHANGED) --- */

/* Overlay background mask */
#slPopupOverlayMask {
  position: fixed;
  inset: 0;
  background: rgba(8, 11, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#slPopupOverlayMask.sl-mask-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Main container wrap with background and dark gradient overlay */
.sl-modal-board {
  width: 980px;
  max-width: 100%;
  background: #01328E;
  /* Unified royal brand solid backup */
  background-size: cover;
  background-position: center;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  display: flex;
  transform: translateY(40px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  padding: 40px;
  gap: 40px;
  align-items: stretch;
  /* FIXED: Prevents vertical offset layout clipping */
}

/* Canvas Grid fallback design layer to ensure clean background visual */
.sl-modal-grid-decor {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 1;
  opacity: 0.7;
}

#slPopupOverlayMask.sl-mask-visible .sl-modal-board {
  transform: translateY(0) scale(1);
}

/* Close (X) button */
#slCloseAction {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 20;
}

#slCloseAction:hover {
  background: #08A1DD;
  color: white;
  border-color: #01328E;
  transform: rotate(90deg);
}

/* Left side: branding pane */
.sl-sidebar-pane {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  margin-bottom: 72px;
  position: relative;
  z-index: 2;
  padding: 20px;
  min-width: 0;
  /* FIXED: Allows column to shrink on tablet screens without pushing card */
}

/* Top Logo branding block */
.sl-sidebar-logo-block {
  display: flex;
  align-items: center;
  margin-top: 35px;
  gap: 12px;
}

.sl-sidebar-logo-icon-holder {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sl-sidebar-logo-icon-holder svg {
  width: 22px;
  height: 22px;
  color: #1d4ed8;
}

.sl-sidebar-logo-block span {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 1px;
  color: #ffffff;
}

/* Left side: Middle Typography content */
.sl-sidebar-body-text {
  margin: 40px 0;
}

.sl-sidebar-body-text h2 {
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -1.5px;
  text-shadow: 0 2px 12px rgba(15, 23, 42, 0.5);
}

.sl-sidebar-body-text p {
  font-size: 18px;
  color: #e0f2fe;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(15, 23, 42, 0.4);
}

/* Left side bottom help email anchor */
.sl-sidebar-footer-link a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.95;
  transition: opacity 0.2s;
  text-shadow: 0 1px 5px rgba(15, 23, 42, 0.3);
}

.sl-sidebar-footer-link a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Right side: Modern bright form card */
.sl-form-white-shield {
  flex: 1.2;
  background: #F6F5F2;
  border-radius: 28px;
  padding: 40px;
  /* Adjusted slightly to preserve inner breathing space on all viewports */
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  z-index: 2;
  color: #0f172a;
  min-width: 0;
  /* FIXED: Keeps flex structure contained inside the desktop card width */
}

.sl-form-shield-title {
  margin-bottom: 24px;
}

.sl-form-shield-title h3 {
  font-size: 24px;
  font-weight: 800;
  color: #1e3a8a;
  letter-spacing: -0.5px;
}

/* Structured form rows */
.sl-form-grid-row {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  width: 100%;
}

.sl-field-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.sl-field-container label {
  font-size: 13px;
  font-weight: 700;
  color: #01328E;
}

/* Rounded stable form input structures */
.sl-form-white-shield input,
.sl-form-white-shield select,
.sl-form-white-shield textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #F6F5F2;
  ;
  background: white;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  outline: none;
  transition: all 0.2s ease;
}

.sl-form-white-shield input::placeholder,
.sl-form-white-shield textarea::placeholder {
  color: #94a3b8;
}

/* Interactive input focused states */
.sl-form-white-shield input:focus,
.sl-form-white-shield select:focus,
.sl-form-white-shield textarea:focus {
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Layout rules for full block layouts */
.sl-full-block-container {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Horizontal choices layout */
.sl-choices-wrapper {
  display: flex;
  gap: 20px;
  margin-top: 4px;
}

.sl-choice-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #01328E;
  font-weight: 600;
  cursor: pointer;
}

.sl-choice-label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #2563eb;
  cursor: pointer;
}

/* Custom File uploader design components */
.sl-uploader-block {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.sl-uploader-trigger-action {
  background: none;
  border: none;
  color: #01328E;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.sl-uploader-trigger-action:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* Premium submit/action button */
.sl-form-submit-action {
  width: 100%;
  border: none;
  padding: 15px;
  border-radius: 12px;
  background: #01328E;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.2);
  transition: all 0.25s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.sl-form-submit-action:hover {
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
  background-color: #08A1DD;
}

.sl-form-submit-action:active {
  transform: translateY(1px);
}

/* Dynamic internal card success notification layout */
.sl-form-success-shield {
  text-align: center;
  padding: 30px 10px;
}

.sl-form-success-icon-badge {
  width: 74px;
  height: 74px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2563eb;
  margin: 0 auto 20px auto;
  border: 2px solid #bfdbfe;
}

/* Responsive adjustments for portable displays */
@media(max-width: 950px) {
  .sl-modal-board {
    flex-direction: column;
    align-items: stretch;
    /* FIXED: Forces responsive vertical flow cards to stretch properly */
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px 24px;
    gap: 24px;
    border-radius: 28px;
  }

  .sl-sidebar-pane {
    align-items: center;
    text-align: center;
    min-height: auto;
    width: 100%;
    padding: 20px 0;
  }

  .sl-sidebar-logo-block {
    justify-content: center;
    margin-bottom: 12px;
  }

  .sl-sidebar-body-text {
    margin: 15px 0;
  }

  .sl-sidebar-body-text h2 {
    font-size: 32px;
  }

  .sl-sidebar-body-text p {
    font-size: 15px;
  }

  .sl-form-white-shield {
    width: 100%;
    padding: 30px 20px;
    border-radius: 20px;
  }

  #slCloseAction {
    background: rgba(255, 255, 255, 0.3);
    top: 15px;
    right: 15px;
  }
}

.sl-sidebar-logo-icon-holder img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

@media(max-width: 600px) {
  .sl-form-grid-row {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 14px;
  }
}