/* =======================
   Poppins (Static TTFs)
   Path: /fonts/Poppins/
   ======================= */
/* Thin 100 */
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins/Poppins-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins/Poppins-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

/* ExtraLight 200 */
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins/Poppins-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins/Poppins-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

/* Light 300 */
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins/Poppins-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* Regular 400 */
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins/Poppins-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Medium 500 */
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins/Poppins-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* SemiBold 600 */
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins/Poppins-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

/* Bold 700 */
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins/Poppins-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ExtraBold 800 */
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins/Poppins-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

/* Black 900 */
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins/Poppins-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* ===== Quick usage ===== */
:root {
  --font-sans: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --font-serif-slab: "Epunda Slab", Georgia, "Times New Roman", serif;
  --color-primary: ;
  --color-primary: #198bfb;
  --color-primary: #004f9e;
  --color-secondary: #0d447a;
  --color-there: #043f77;
  --color-orange: #ff7b00;
  --text-primary: #5e6381;
  --text-secondary: #0021b3;
  --bg-sub: #fff7ef;
  --bg-sub: #1900ff1f;
}

body {
  font-family: var(--font-sans);
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/* Header start */

.mainHeader .brand-logo {
  height: 65px;
}
.Headerfixed {
  background-color: rgba(255, 255, 255, 0.76);
}
.mainHeader .navbar .header-container {
  background: #fff;
  border-radius: 64px;
  border: 3px solid #198bfb;
  box-shadow: 0 10px 22px rgba(26, 30, 255, 0.18),
    /* soft drop shadow */ inset 0 0 0 1px #fff; /* crisp inside edge */
  padding: 10px 16px;
  position: relative;
}
.mainHeader .navbar-nav {
  gap: 10px;
}
.mainHeader .nav-link {
  font-size: 16px;
  border-radius: 30px;
  padding: 0.5rem 1rem !important;
  font-weight: 600;
  font-family: var(--font-sans);
  line-height: 1.2;
  transition: all 0.3s ease-in;
  border: 1px solid transparent;
}
.mainHeader .nav-link:hover {
  color: var(--color-primary);
  transition: all 0.3s ease-in;
  border-color: var(--color-primary);
}
.mainHeader .nav-link.active {
  border-color: var(--color-primary);
  transition: all 0.3s ease-in;
  color: var(--color-primary);
}
.mainHeader .dropdown .nav-link.show {
  border-color: var(--color-primary);
  transition: all 0.3s ease-in;
  color: white;
  background-color: var(--color-primary);
}

.btn-cta {
  background: linear-gradient(90deg, rgb(39, 89, 255) 0%, rgb(0, 28, 153) 100%);
  color: white;
  border: 1px solid white;
  padding: 0.5rem 1.5rem;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-serif-slab);
  line-height: 1.2;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  z-index: 1;
}

/* gradient overlay for hover */
.btn-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgb(0, 3, 153) 0%,
    rgb(39, 53, 255) 100%
  );
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-cta:hover::before {
  left: 0;
}

.btn-cta:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 132, 39, 0.4);
}

/* mega-dropdown */
.mega-dropdown {
  position: static;
}
.arrow-up {
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin-left: auto;
  margin-right: auto;
  display: none;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid rgb(255, 255, 255);
}

.mega-dropdown .dropdown-menu {
  width: 100%;
  border-radius: 10px;
  border: none;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
  margin-left: auto;
  margin-right: auto;
  /* display: none;  */
  padding: 1.5rem;
}

.mega-drop-tabs {
  flex-direction: column;
  width: 100%;
  gap: 8px;
}
.mainHeader .mega-drop-tabs .nav-link {
  width: 100%;
  background-color: white;
  border-radius: 4px;
  color: black;
  text-align: start;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mainHeader .mega-drop-tabs .nav-link .mega-tabs-heading {
  font-size: 16px;
}
.mainHeader .mega-drop-tabs .nav-link .mega-tabs-text {
  font-size: 13px;
  font-weight: 400;
  color: #555;
}
.mega-tabs-content-heading {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  font-family: serif;
}
.mainHeader .mega-drop-tabs .nav-link:hover,
.mainHeader .mega-drop-tabs .nav-link.active {
  background: #e6e9ff;
}

/* Menu List Links */
.menu-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu-list-item {
  margin-bottom: 8px;
}

.menu-list-link {
  display: flex; /* arrow + text aligned */
  align-items: center;
  text-decoration: none;
  color: #333;
  padding: 6px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
  transform: translateX(0); /* default position */
}

/* Arrow on left - hidden initially */
.menu-list-link::before {
  content: "→";
  display: inline-block;
  margin-right: 8px;
  font-size: 20px;
  font-weight: bold;
  color: #007bff;
  opacity: 0; /* hidden initially */
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hover: slide arrow and text together */
.menu-list-link:hover {
  background-color: #f0f0f0;
  color: #007bff;
  transform: translateX(6px); /* text + arrow slide */
}

.menu-list-link:hover::before {
  opacity: 1;
  transform: translateX(0); /* arrow slides to normal */
}

/* Active / Selected Link */
.menu-list-link.active {
  background-color: #007bff;
  color: #fff;
  font-weight: 600;
  transform: translateX(6px); /* active link shifted same as hover */
}

.menu-list-link.active::before {
  opacity: 1; /* always visible */
  color: #fff;
  transform: translateX(0);
}

.header-accordion {
  border: none;
  padding: 6px 0;
}
.header-accordion .accordion-item {
  border-radius: 0px !important;
  border: none;
}
.header-accordion .accordion-button {
  border-radius: 30px !important;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  font-family: serif;
}
.header-accordion .accordion-button:not(.collapsed) {
  background: #e6eaff;
}

/* mega-dropdown */

/* Header End */

/* heading  */
.heading-one {
  font-size: 54px;
  font-weight: 700;
}

.heading-two {
  font-size: 44px;
  font-weight: 700;
}

.heading-there {
  font-size: 38px;
  font-weight: 700;
}
.heading-four {
  font-size: 30px;
  font-weight: 600;
}

.sub-heading {
  color: var(--text-secondary);
  background-color: var(--bg-sub);
  font-size: 24px;
  font-weight: 600;
  padding: 10px 30px;
  display: inline-block;
  border-radius: 50px;
  font-family: serif;
  line-height: 1;
}
.sub-heading-line {
  color: var(--color-primary);
  text-decoration: underline;
}
.color-primary {
  color: var(--color-primary);
}
.color-secondary {
  color: var(--color-secondary);
}

.text-gray {
  color: #6c757d;
}
.text-orange {
  color: var(--color-primary);
}
.section-text p {
  text-align: justify;
}
.text-70ch{
  max-width: 70ch;
    color: #475569;
}
.card-text{
      font-size: 14px;
  margin: 0;color:#475569;
}
.lr-tag{
  display:inline-block; padding:.3rem .55rem; border-radius:999px;
  background:#e9f2ff; color:#0d6efd; font-weight:600; font-size:.85rem;
  border:1px solid #d6e6ff;
} .lr-badge{
  background:#0d6efd; color:#fff; font-weight:700; font-size:.78rem;
  padding:.22rem .5rem; border-radius:999px;
}
/* heading-end */
/* button */
.button-one {
  display: inline-block;
  text-align: center;
  background: linear-gradient(90deg, #001a66, #0033cc, #0066ff);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 4px;
  box-shadow: 0 14px 30px rgba(47, 0, 255, 0.25);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.6s ease;
  z-index: 1;
}

/* Shine overlay */
.button-one::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0) 80%
  );
  transform: skewX(-25deg);
  transition: left 0.6s ease;
  z-index: -1;
}

.button-one:hover::before {
  left: 130%;
}
.button-one:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0, 102, 255, 0.55);
  background: linear-gradient(90deg, #000d40, #002b80, #0047ff);  color: #fff;
}

.button-two {
  display: inline-block;
  text-align: center;
  background: linear-gradient(90deg, #043f77, #0775dd);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 4px;
  box-shadow: 0 14px 30px rgba(51, 51, 51, 0.25);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 1;
}

/* shine effect overlay */
.button-two::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0) 80%
  );
  transform: skewX(-25deg);
  transition: left 0.5s ease;
  z-index: -1;
}

.button-two:hover::before {
  left: 125%;
}

.button-two:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(7, 117, 221, 0.35);  color: #fff;
}

.button-there {
  display: inline-block;
  text-align: center;
  background: linear-gradient(90deg, #0051ff, #0213af);
  padding: 10px 30px;
  text-decoration: none;
  font-size: 18px;
  color: white;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: var(--color-primary) 0px 1px 4px;
  position: relative;
  overflow: hidden; /* effect hide outside */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: fit-content;
}

/* Shine Effect on Hover */
.button-there::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transform: skewX(-25deg);
}

/* Hover Effects */
.button-there:hover::before {
  animation: shine 0.7s ease forwards;
}

.button-there:hover {
  transform: translateY(-3px);
  box-shadow: 0px 6px 12px rgba(0, 4, 255, 0.4);  color: white;
}

/* Shine Animation */
@keyframes shine {
  100% {
    left: 125%;
  }
}

.button-four {
  display: inline-block;
  text-align: center;
  background: #f0efff;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 600;
  border-radius: 4px;
  box-shadow: var(--color-primary) 0px 1px 4px;
  position: relative;
  overflow: hidden; /* effect hide outside */
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  z-index: 1;
}

/* Hover animation background */
.button-four::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0051ff, #0213af);
  transition: left 0.4s ease;
  z-index: -1;
}

.button-four:hover::before {
  left: 0;
}

.button-four:hover {
  color: #fff; /* text white when hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 38, 255, 0.4);
}

/* Use on <button> or <a> elements */

/* --- button-card-one : filled, cardy --- */
.button-card-one {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 10px 18px;
  border-radius: 4px;
  border: 1px solid #8a9cff;
  background: linear-gradient(90deg, #02049e, #0004ff);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 18px rgba(0, 4, 255, 0.25);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  cursor: pointer;
  font-weight: 600;
}
.button-card-one:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 26px rgba(0, 4, 255, 0.32);color: #fff;
}
.button-card-one:active {
  transform: translateY(0);
}
.button-card-one:focus-visible {
  outline: 3px solid rgba(25, 0, 255, 0.35);
  outline-offset: 2px;
}

/* --- button-card-two : outline, light card --- */
.button-card-two {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 10px 18px;
  border-radius: 4px;
  border: 2px solid #1100ff;
  background: #fff;
  color: #0011ff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 38, 255, 0.12);
  transition: transform 0.15s ease, background-color 0.2s ease,
    box-shadow 0.2s ease, color 0.2s ease;
  background: #efefff;
  cursor: pointer;
}
.button-card-two:hover {
  background: rgba(0, 17, 255, 0.08);
  transform: translateY(-2px);
}
.button-card-two:active {
  transform: translateY(0);
}
.button-card-two:focus-visible {
  outline: 3px solid rgba(4, 0, 255, 0.25);
  outline-offset: 2px;
}

/* button-end */

/* hero Section */

/* ===== base ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  perspective: 1200px;
  background: linear-gradient(
    180deg,
    #00172e,
    #002f55,
    #004080
  ); /* dark navy → deep blue */
  color: #e6f7ff;
}
.hero-section .hero-content {
  position: relative;
  z-index: 5;
  height: 100vh;
  padding-top: 120px;
}

/* optional: hero img float + tilt */
.hero-section .hero-content .hero-img {
  max-width: 100%;
  height: auto;
  display: block;
  transform-origin: 50% 60%;
  animation: heroImgFloat 7s ease-in-out infinite alternate;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.12));
}

/* ===== top/bottom gradient bars + shimmer ===== */
.hero-section .bar {
  position: absolute;
  left: -20%;
  width: 140%;
  height: 70px;

  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(90deg, #00c6ff, #0072ff, #00c6ff);
  background-size: 250% auto;
  filter: drop-shadow(0 0 14px rgba(0, 180, 255, 0.6));
  animation: shimmerFlowDark 12s linear infinite;
}
.hero-section .bar::after {
  /* moving glint */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0 40%,
    rgba(255, 255, 255, 0.38) 50%,
    transparent 60% 100%
  );
  transform: translateX(-120%);
  animation: glint 4.6s ease-in-out infinite;
  mix-blend-mode: screen;
}
.hero-section .bar-top {
  clip-path: polygon(0 0, 85% 0, 95% 100%, 0 100%);
  filter: drop-shadow(0 8px 12px rgba(255, 122, 26, 0.15));
  animation-duration: 14s;
  top: 60px;
  height: 16px;
}
.hero-section .bar-bottom {
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 15% 100%);
  filter: drop-shadow(0 -6px 12px rgba(240, 67, 67, 0.12));
  animation-direction: reverse;
  bottom: 60px;
  height: 16px;
}

/* ===== big diagonal gradient bands with 3D orbit + sheen ===== */
.hero-section .band {
  position: absolute;
  width: 150vw;
  height: 65vh;
  transform: rotate(-60deg);
  z-index: 0;
  pointer-events: none;
  transform-style: preserve-3d;
  will-change: transform, filter;
  filter: saturate(110%) contrast(105%);
  background: linear-gradient(135deg, #003b7a, #0066cc, #00aaff);
  opacity: 0.18;
  animation: bandWaveDark 20s ease-in-out infinite;
}
.hero-section .band::after {
  /* diagonal sheen sweeping across */
  content: "";
  position: absolute;
  inset: -10%;
  background: linear-gradient(
    90deg,
    transparent 45%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 55%
  );
  transform: rotate(-60deg) translateX(-140%);
  animation: sweep 7.8s ease-in-out infinite;
  mix-blend-mode: screen;
}
.hero-section .band-left {
  top: -22vh;
  left: -70vw;

  animation-duration: 18s;
}
.hero-section .band-right {
  top: 15vh;
  left: 25vw;

  animation-duration: 20s;
  animation-delay: 0.6s;
}
.hero-section .band-center {
  top: 15vh;
  left: -24vw;
  height: 40vh;
  animation-duration: 17s;
  animation-delay: 0.3s;
}

/* ===== thin white slashes with sway + flash ===== */
.hero-section .slash {
  position: absolute;
  width: 2px;
  height: 160px;
  transform: rotate(-60deg);
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;

  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1),
    rgba(0, 200, 255, 0)
  );
  width: 3px;
  border-radius: 2px;
  animation: sparkFlash 3.5s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(0, 200, 255, 0.7);
}
.hero-section .slash::after {
  /* tiny flash traveling */
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  width: 4px;
  height: 24%;
  border-radius: 2px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.95),
    transparent
  );
  animation: flash 2.8s ease-in-out infinite;
}
.hero-section .s1 {
  right: 38vw;
  top: 10vh;
  opacity: 0.9;
}
.hero-section .s2 {
  right: 11vw;
  top: 33vh;
  opacity: 0.9;
  height: 120px;
  animation-duration: 7s;
}
.hero-section .s3 {
  left: 6vw;
  top: 56vh;
  opacity: 0.85;
  height: 110px;
  animation-duration: 6.5s;
}
.hero-section .s4 {
  right: 8vw;
  top: 22vh;
  opacity: 0.7;
  height: 140px;
  animation-duration: 5.5s;
}
.hero-section .s5 {
  left: 18vw;
  top: 14vh;
  opacity: 0.7;
  height: 130px;
  animation-duration: 7.5s;
}

/* ===== bubble cluster (bottom-right) with glow, float & ripple ===== */
.hero-section .bubbles {
  position: absolute;
  right: 3.5vw;
  bottom: 4vh;
  width: 420px;
  height: 420px;
  z-index: 3;
  pointer-events: none;
}
/* blue theme */
.hero-section .bubbles::before {
  content: "";
  position: absolute;
  inset: 10% 5% 5% 15%;
  background: radial-gradient(
    circle at 60% 60%,
    rgb(66 114 255 / 55%),
    rgba(255, 122, 26, 0) 60%
  );
  filter: blur(18px);
  animation: glow 6.2s ease-in-out infinite alternate;
}
/* bubbles (filled) */
.hero-section .bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #33ccff 0 40%, transparent 41%),
    linear-gradient(145deg, #0055aa, #00c6ff 80%);
  box-shadow: 0 0 40px rgba(0, 180, 255, 0.7),
    inset -6px -10px 20px rgba(0, 0, 0, 0.4);
  animation: floatDark 8s ease-in-out infinite;
}
.hero-section .bubble::after {
  /* moving specular highlight */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 25% 25%,
    rgba(255, 255, 255, 0.55),
    transparent 40%
  );
  transform: translate(-8%, -8%);
  animation: specular 5s ease-in-out infinite alternate;
  border-radius: 50%;
}
.hero-section .b-lg {
  width: 130px;
  height: 130px;
  right: 30px;
  bottom: 40px;
  animation-duration: 6.5s;
}
.hero-section .b-md {
  width: 90px;
  height: 90px;
  right: 150px;
  bottom: 100px;
  animation-delay: 1s;
  animation-duration: 5.8s;
}
.hero-section .b-sm {
  width: 60px;
  height: 60px;
  right: 240px;
  bottom: 60px;
  animation-delay: 2s;
  animation-duration: 5.2s;
}
.hero-section .b-xs {
  width: 42px;
  height: 42px;
  right: 70px;
  bottom: 180px;
  animation-duration: 5.9s;
}
.hero-section .b-xxs {
  width: 28px;
  height: 28px;
  right: 160px;
  bottom: 150px;
  animation-duration: 5.1s;
}

/* rings */
.hero-section .ring {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
  backdrop-filter: blur(0.2px);
  border: 2px solid rgba(0, 200, 255, 0.75);
  animation: rippleNeon 6s ease-in-out infinite;
}
.hero-section .r1 {
  width: 210px;
  height: 210px;
  right: 90px;
  bottom: 55px;
  animation-delay: 0.2s;
}
.hero-section .r2 {
  width: 120px;
  height: 120px;
  right: 0;
  bottom: 150px;
  animation-duration: 5.2s;
}
.hero-section .r3 {
  width: 80px;
  height: 80px;
  right: 260px;
  bottom: 110px;
  animation-duration: 3.9s;
}

/* ===== keyframes ===== */
@keyframes heroImgFloat {
  0% {
    transform: translateY(0) rotateX(0) rotateY(0);
  }
  50% {
    transform: translateY(-10px) rotateX(2deg) rotateY(-4deg);
  }
  100% {
    transform: translateY(-4px) rotateX(-1deg) rotateY(3deg);
  }
}
@keyframes barFlow {
  0% {
    background-position: 0% 50%;
    transform: translateX(0);
  }
  100% {
    background-position: 100% 50%;
    transform: translateX(-18px);
  }
}
@keyframes glint {
  0% {
    transform: translateX(-120%) skewX(-8deg);
    opacity: 0;
  }
  40% {
    opacity: 0.8;
  }
  60% {
    opacity: 0.4;
  }
  100% {
    transform: translateX(120%) skewX(-8deg);
    opacity: 0;
  }
}
@keyframes sweep {
  0% {
    transform: rotate(-60deg) translateX(-140%);
    opacity: 0;
  }
  30% {
    opacity: 0.45;
  }
  70% {
    opacity: 0.2;
  }
  100% {
    transform: rotate(-60deg) translateX(140%);
    opacity: 0;
  }
}
@keyframes sway {
  0% {
    transform: rotate(-60deg) translateX(0) translateY(0);
  }
  100% {
    transform: rotate(-60deg) translateX(-8px) translateY(-10px);
  }
}
@keyframes flash {
  0% {
    top: 0%;
    opacity: 0;
  }
  35% {
    top: 40%;
    opacity: 0.9;
  }
  70% {
    top: 78%;
    opacity: 0.4;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
@keyframes bubbleDrift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-10px, -12px) scale(1.05);
  }
}
@keyframes specular {
  0% {
    transform: translate(-8%, -8%);
    opacity: 0.9;
  }
  100% {
    transform: translate(8%, 8%);
    opacity: 0.6;
  }
}
@keyframes glow {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.08);
    opacity: 0.8;
  }
}
@keyframes ripple {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.06) rotate(8deg);
    opacity: 0.75;
  }
  100% {
    transform: scale(1) rotate(16deg);
    opacity: 0.6;
  }
}

.hero-heading {
  font-size: 78px;
  font-weight: 700;
}

.hero-heading span {
  color: var(--color-orange);
}
.hero-section p {
  font-size: 18px;
  font-weight: 600;
  text-align: justify;
} /* === Circles row === */
.cricl-img-ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  top: 120px;
  left: 50%;

  z-index: 6; /* content ke upar */
  pointer-events: auto;
}

.cricl-img-ul li {
  position: relative;
  border-radius: 50%;
  animation: bob 2.8s ease-in-out infinite;
  /* shadow for depth */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}
.cricl-img-ul li:nth-child(2) {
  animation-delay: 0.25s;
}
.cricl-img-ul li:nth-child(3) {
  animation-delay: 0.5s;
}

.cricl-img-ul img {
  width: 100%;
  height: 100%;
  display: block;
}

/* ripple ring */
.cricl-img-ul li::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  opacity: 0.7;
  animation: ring 2.8s ease-in-out infinite;
}
.cricl-img-ul li:nth-child(2)::after {
  animation-delay: 0.5s;
}
.cricl-img-ul li:nth-child(3)::after {
  animation-delay: 0.8s;
}

/* hover: thoda boost */
.cricl-img-ul li:hover {
  animation-duration: 1.8s;
  transform: translateY(-6px) scale(1.06);
}

/* keyframes */
@keyframes bob {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.06);
  }
}
@keyframes ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.4);
    opacity: 0.2;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* (optional) whole strip ko halka sa left-right swim karwana ho */
.cricl-img-ul.swim {
  animation: swim 10s ease-in-out infinite alternate;
}
@keyframes swim {
  0% {
    transform: translateX(calc(-50% - 16px));
  }
  100% {
    transform: translateX(calc(-50% + 16px));
  }
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  .cricl-img-ul,
  .cricl-img-ul li {
    animation: none !important;
    transform: none !important;
  }
}
.cricl-4 {
  position: absolute;
  right: 20px;
  top: 150px;
  animation: bob 2.8s ease-in-out infinite;
  z-index: 22;
}
.cricl-5 {
  position: absolute;
  left: 20px;
  animation: bob 2.8s ease-in-out infinite;
  top: 150px;
  z-index: 22;
}

/* blue theme */

/* ==== DARK BLUE THEME ==== */

/* Bars (deep neon shimmer) */

@keyframes shimmerFlowDark {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 250% center;
  }
}

@keyframes bandWaveDark {
  0% {
    transform: rotate(-60deg) translateX(0) translateY(0) rotateY(0deg);
  }
  25% {
    transform: rotate(-60deg) translateX(50px) translateY(-30px) rotateY(15deg);
  }
  50% {
    transform: rotate(-60deg) translateX(-40px) translateY(40px) rotateY(-15deg);
  }
  75% {
    transform: rotate(-60deg) translateX(25px) translateY(-35px) rotateY(10deg);
  }
  100% {
    transform: rotate(-60deg) translateX(0) translateY(0) rotateY(0deg);
  }
}
@keyframes sparkFlash {
  0% {
    transform: translateY(0) scaleY(0.3);
    opacity: 0;
  }
  20% {
    transform: translateY(50px) scaleY(1);
    opacity: 1;
  }
  60% {
    transform: translateY(100px) scaleY(0.8);
    opacity: 0.6;
  }
  100% {
    transform: translateY(150px) scaleY(0.4);
    opacity: 0;
  }
}

@keyframes floatDark {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
}

@keyframes rippleNeon {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}
/* blue end  */

/* ===== responsiveness ===== */
@media (max-width: 992px) {
  .hero-section {
    height: auto;
  }
  .hero-section .hero-content {
    height: auto;
  }

  .hero-section .bar-top {
    top: 28px;
    height: 58px;
  }
  .hero-section .bar-bottom {
    bottom: 24px;
    height: 58px;
  }

  .hero-section .band {
    height: 58vh;
  }
  .hero-section .band-left {
    top: -24vh;
    left: -85vw;
  }
  .hero-section .band-right {
    top: 18vh;
    left: 5vw;
  }

  .hero-section .bubbles {
    width: 300px;
    height: 300px;
    right: 2vw;
    bottom: 3vh;
  }
  .hero-section .b-lg {
    width: 90px;
    height: 90px;
  }
  .hero-section .b-md {
    width: 64px;
    height: 64px;
  }
  .hero-section .b-sm {
    width: 48px;
    height: 48px;
  }
  .hero-section .r1 {
    width: 160px;
    height: 160px;
  }
  .hero-section .r2 {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 50px;
  }
  .cricl-4,
  .cricl-5 {
    max-width: 80px;
  }
  .hero-section p {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .hero-section .band {
    height: 54vh;
  }
  .hero-section .bar-top {
    top: 20px;
  }
  .hero-heading {
    font-size: 40px;
  }
}

/* Respect user motion prefs */
@media (prefers-reduced-motion: reduce) {
  .band,
  .bar,
  .slash,
  .bubble,
  .ring,
  .img {
    animation: none !important;
  }
}

/* hero Section end */

/* Animation Common */
.animate {
  opacity: 0;
  transition: all 0.5s ease;
}
.animate.show {
  opacity: 1;
}

/* 1. Fade In Up */
.fadeInUp {
  transform: translateY(50px);
}
.fadeInUp.show {
  transform: translateY(0);
  animation: fadeInUpCustom 1s ease forwards;
}
@keyframes fadeInUpCustom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 2. Zoom In */
.zoomIn {
  transform: scale(0.5);
}
.zoomIn.show {
  transform: scale(1);
  animation: zoomInCustom 1s ease forwards;
}
@keyframes zoomInCustom {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* 3. Slide In Left */
.slideInLeft {
  transform: translateX(-100px);
}
.slideInLeft.show {
  transform: translateX(0);
  animation: slideInLeftCustom 1s ease forwards;
}
@keyframes slideInLeftCustom {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 4. Rotate In */
.rotateIn {
  transform: rotate(-200deg) scale(0.3);
}
.rotateIn.show {
  transform: rotate(0) scale(1);
  animation: rotateInCustom 1s ease forwards;
}
@keyframes rotateInCustom {
  from {
    opacity: 0;
    transform: rotate(-200deg) scale(0.3);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

/* 5. Flip In */
.flipIn {
  transform: rotateY(90deg);
}
.flipIn.show {
  transform: rotateY(0);
  animation: flipInCustom 1s ease forwards;
}
@keyframes flipInCustom {
  from {
    opacity: 0;
    transform: rotateY(90deg);
  }
  to {
    opacity: 1;
    transform: rotateY(0);
  }
}

/* about-section */
.about-section {
  background: linear-gradient(
    90deg,
    rgba(255, 249, 243, 1) 0%,
    rgba(255, 254, 254, 1) 100%
  );
  background: linear-gradient(180deg, #f2f8ff, #fff);
}

.experience-ul {
  display: flex;
  gap: 10px;
  padding: 0;
  list-style-type: none;
  flex-wrap: wrap;
}
.experience-ul li {
  border: 1px solid var(--color-primary);
  font-size: 18px;
  font-family: serif;
  background-color: white;
  color: var(--color-primary);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: var(--color-primary) 0px 1px 4px;
  transition: all ease 0.3s;
}
.experience-ul li span {
  color: var(--color-secondary);
}
.experience-ul li:hover span {
  color: white;
}
.experience-ul li:hover {
  background-color: var(--color-primary);
  color: white;
  transition: all ease 0.3s;
}

.Dm-packages-section .billing-toggle {
  display: inline-flex;
  background: #ffffff;
  border: 1px solid #d1d6ff;
  border-radius: 999px;
  padding: 6px;
  gap: 6px;
}

.Dm-packages-section .toggle-btn {
  border: 0;
  background: transparent;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
}

.Dm-packages-section .toggle-btn.active {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 20px var(--ring);
}

.Dm-packages-section .toggle-btn .save {
  margin-left: 8px;
  background: #d1d6ff;
  color: #00039a;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
}

.card-one {
  position: relative;
  background: white;
  border: 1px solid #ffe6d1;
  border-radius: 20px;
  padding: 26px 22px 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  font-family: serif;
}
.card-one .badge {
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  text-align: start;
}

.card-one .price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin: 8px 0 8px;
}
.card-one .price .value {
  font-size: 42px;
  font-weight: 900;
  color: var(--color-primary);
}
.card-one .price .period {
  color: var(--text-primary);
  font-weight: 700;
}

.card-one .desc {
  color: var(--text-primary);
  margin: 6px 0 14px;
}

.card-one .features {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.card-one .features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink);
}
.card-one .features li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 4px;
  border-radius: 4px;
  background: var(--color-primary);
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill="white" d="M8 13.5l-3-3 1.4-1.4L8 10.7l4.6-4.6L14 7.5z"/></svg>')
    center/25px 25px no-repeat;
}
.card-one .badge span {
  margin-left: 10px;
  background: var(--color-primary);
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
}
.card-one.highlight {
  border-color: var(--color-primary);
  outline: 2px solid rgba(255, 106, 0, 0.2);
}

.card-webpack {
  background-color: white;
  border-radius: 10px;
  border: 1px solid transparent;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-webpack .card-web-header {
  background-color: #f7f7f7;
  padding: 16px 10px;
  border-bottom: 1px solid black;
  transition: all 0.3s ease;
}
.card-webpack .card-web-header h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
  font-family: serif;
}
.card-webpack .card-web-header small {
  font-size: 12px;
  font-weight: 600;
}

.card-web-body {
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-webpack ul.dimond-ul {
  list-style: none; /* default bullet remove */
  padding-left: 0;
}

.card-webpack ul.dimond-ul li {
  position: relative;
  padding-left: 28px; /* space for icon */
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
}

.card-webpack ul.dimond-ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: url("../img/dimond-icon.png") no-repeat center center;
  background-size: contain; /* icon fit ho jaye */
}

.card-webpack:hover .card-web-header {
  background-color: #e6ecff;
  border-color: var(--color-primary);
  transition: all 0.3s ease;
}
.card-webpack:hover {
  border-color: var(--color-primary);
  transition: all 0.3s ease;
}
.card-raise {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: none;
  height: 100%;
}
.card-raise p {
  text-align: justify;
}
.card-raise:hover {
  transform: translateY(-6px);
  box-shadow: 0 1rem 2rem rgba(16, 24, 40, 0.15) !important;
}
.Engine-section {
  background-image: url(../img/seo-bg.png);
  background-size: cover;
}

.engine-tabs-ul {
  display: flex;
  gap: 10px;
  list-style-type: none;
  padding: 0;
  margin: 0;
  border: 2px solid #0072ff;
  border-radius: 30px;
  padding: 6px;
  width: fit-content;
  margin-top: auto;
  margin-left: auto;
}
.engine-tabs-ul .engine-link {
  padding: 4px 20px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  display: inline-block;
}

.engine-tabs-ul .engine-link.active {
  background-color: #0072ff;
  border-radius: 30px;
  border: 2px solid white;
  color: white;
}

.engine-card {
  background: linear-gradient(
    180deg,
    rgb(255, 255, 255) 0%,
    rgb(214, 218, 255) 100%
  );
  padding: 20px;
  border-radius: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: all ease 0.5s;
  height: 100%;
}
.engine-card:hover {
  transform: translateY(-4px);
  transition: all ease 0.5s;
}
.engine-card-header {
  display: flex;
  align-items: end;
  gap: 4px;
  padding: 10px;
}
.engine-card-header h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}
.engine-card-body {
  padding: 10px;
}
.engine-card-body ul {
  list-style-type: disclosure-closed;
}
.engine-card-body ul li::marker {
  color: var(--color-primary);
}

.advertising-card {
  background-color: white;
  border: 2px solid var(--color-primary);
  transition: all ease 0.5s;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.advertising-card:hover {
  transform: translateY(6px);
}

.advertising-card .adver-head {
  padding: 10px;
  text-align: center;
}
.advertising-card .adver-head .adver-heading {
  font-size: 30px;
  color: var(--color-there);
  margin: 0;
  font-weight: 600;
}
.advertising-card .adver-head .price {
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 600;
}

.advertising-card .adver-body {
  padding: 10px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.arrow-type-ul {
  list-style-type: disclosure-closed;
  font-weight: 600;
  font-family: serif;
}

.Comprehensive-card {
  padding: 20px;
  border: 1px solid var(--color-primary);
  border-radius: 10px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 6px, rgba(0, 0, 0, 0.15) 0px 3px 6px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease,
    background-color 0.5s ease;
}

/* heading */
.Comprehensive-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-there);
  transition: color 0.4s ease;
}

/* text */
.Comprehensive-card p {
  font-size: 14px;
  text-align: justify;
  color: var(--text-primary);
  transition: color 0.4s ease;
}

/* hover effects */
.Comprehensive-card:hover {
  background-color: var(--color-secondary);
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* text color change on hover */
.Comprehensive-card:hover h3,
.Comprehensive-card:hover p {
  color: #fff;
}

/* Shine effect */
.Comprehensive-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0) 80%
  );
  transform: skewX(-25deg);
  transition: left 0.6s ease;
}

.Comprehensive-card:hover::before {
  left: 100%;
}

.icon-card {
  border-radius: 10px;
  background-color: white;
  box-shadow: rgba(50, 50, 93, 0.15) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.2) 0px 3px 7px -3px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.icon-card .icon-card-heading {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
.icon-card .icon-card-text {
  color: var(--text-primary);
  font-size: 14px;
  text-align: justify;
}

/* hover effect */
.icon-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* gradient shine overlay */
.icon-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0) 80%
  );
  transform: skewX(-25deg);
  transition: left 0.6s ease;
}

.icon-card:hover::before {
  left: 100%;
}

/* icon hover glow */
.icon-card .icon-card-icon {
  background-color: var(--color-primary);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.icon-card:hover .icon-card-icon {
  box-shadow: 0 0 20px rgba(0, 150, 255, 0.6);
  transform: rotate(8deg) scale(1.05);
}

.icon-card .icon-card-icon svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.difference-section {
  background-color: #f5f5f4;
}

.differ-card {
  border-radius: 10px;
  background-color: white;
  box-shadow: #1900ff69 0px 6px 12px -2px, #0026ff44 0px 3px 7px -3px;

  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.differ-card p{
  font-size: 14px;
  text-align: justify;
}
.difference-card {
  border-radius: 10px;
  background-color: white;
  box-shadow: #2600ff69 0px 6px 12px -2px, #0059ff44 0px 3px 7px -3px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  position: sticky;
  top: 110px;
}

.differ-card .differ-card-header {
  padding: 20px 20px 10px 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.differ-card .differ-card-icon {
  background-color: var(--color-primary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.differ-card .differ-card-icon svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.differ-heading {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.differ-body {
  padding: 0px 20px 20px 20px;
  color: var(--text-primary);
}

.differ-ul {
  position: relative;
  list-style: none;
  padding-left: 40px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.differ-ul::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-primary);
  border-radius: 2px;
}

.faq-section {
  background: #f5f8ff;
}

.faq-accordion .accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.faq-accordion .accordion-item:hover {
  transform: translateY(-3px);
}

.faq-accordion .accordion-item .accordion-button {
  background: #fff;
  color: #333;
  font-weight: 600;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  box-shadow: none;
}

.faq-accordion .accordion-item .accordion-button .icon {
  font-size: 20px;
  transition: transform 0.3s ease;
  color: var(--color-primary);
}

.faq-accordion .accordion-item .accordion-button:not(.collapsed) {
  background: var(--color-primary);
  color: #fff;
}

.faq-accordion .accordion-item .accordion-button:not(.collapsed) .icon {
  transform: rotate(45deg); /* plus → cross */
  color: #fff;
}

.faq-accordion .accordion-item .accordion-body {
  background: #fff;
  padding: 15px 20px;
  color: #555;
  border-top: 1px solid #eee;
}
.faq-accordion .accordion-item .accordion-body *{
  font-size: 14px;
  
  
}

/* contact */
.star-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.star-contact-link {
  display: flex;
  background-color: white;
  box-shadow: #1900ff69 0px 1px 12px -2px, #001aff44 0px 3px 3px -3px;
  text-decoration: none;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.star-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style-type: none;
}


.star-contact-link:hover {
  transform: translateY(-4px);
  box-shadow: #0004ffaa 0px 6px 20px -2px;
}

.contact-icon {
  background-color: var(--color-primary);
  height: 50px;
  width: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  transition: transform 0.3s ease;
}

.contact-icon svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.star-contact-link:hover .contact-icon {
  transform: scale(1.1) rotate(8deg);
}

.start-contact-conent {
  display: flex;
  gap: 4px;
  flex-direction: column;
}

.start-contact-conent h4 {
  font-size: 20px;
  color: var(--color-primary);
  font-weight: 600;
  margin: 0;
  font-family: var(--font-sans);
}

.start-contact-conent span {
  text-decoration: underline;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

/* from */
.form-box {
  padding: 40px 20px;
  background-color: white;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.form-floating-custom {
  position: relative;
  margin-bottom: 20px;
}

.form-floating-custom input,
.form-floating-custom textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
  background: transparent;
  box-shadow: none !important;
}

.form-floating-custom label {
  position: absolute;
  left: 14px;
  top: 12px;
  background: #fff;
  padding: 0 5px;
  color: #777;
  font-size: 14px;
  transition: 0.3s ease all;
  pointer-events: none;
}

.form-floating-custom input:focus,
.form-floating-custom textarea:focus {
  border-color: var(--color-primary);
}

.form-floating-custom input:focus + label,
.form-floating-custom input:not(:placeholder-shown) + label,
.form-floating-custom textarea:focus + label,
.form-floating-custom textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 10px;
  font-size: 12px;
  color: var(--color-primary);
}

.btn.Send-message-btn,
.btn.whatsaap-cont-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, color 0.2s ease;
}

.btn.Send-message-btn svg,
.btn.whatsaap-cont-btn svg {
  fill: currentColor;
  flex: 0 0 auto;
}

/* Send (orange) */
.btn.Send-message-btn {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 14px rgba(0, 4, 255, 0.28);
}
.btn.Send-message-btn:hover {
  background: var(--color-secondary);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 42, 229, 0.32);
}
.btn.Send-message-btn:active {
  transform: translateY(0);
}

/* WhatsApp (green) */
.btn.whatsaap-cont-btn {
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.28);
}
.btn.whatsaap-cont-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(30, 190, 93, 0.32);
}
.btn.whatsaap-cont-btn:active {
  transform: translateY(0);
}

/* Focus (both) */
.btn.Send-message-btn:focus-visible,
.btn.whatsaap-cont-btn:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.15);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

/* Unique Shine Animation */
.btn.Send-message-btn::after,
.btn.whatsaap-cont-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(25deg);
  transition: left 0.5s ease;
}

.btn.Send-message-btn:hover::after,
.btn.whatsaap-cont-btn:hover::after {
  left: 130%;
}

/* from-end */

.footer-section {
  background-color: #0a0f18;
  color: white;
}

.footer-logo-text {
  line-height: 1.2;
  color: #c5d0e0;
}

.newsletter {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.nl-field {
  position: relative;
  flex: 1;
}
.nl-field input {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  outline: none;
  border: 1px solid var(--stroke-2);
  background: #0f1624;
  color: #e7edf6;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.nl-field input:focus {
  border-color: #ffb27e;
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.15);
  border: 1px solid var(--color-primary);
}
.nl-field .lbl {
  position: absolute;
  left: 12px;
  top: 12px;
  color: #97a6bd;
  background: #0f1624;
  padding: 0 6px;
  transform-origin: left top;
  transition: 0.15s;
  pointer-events: none;
}
.nl-field input:not(:placeholder-shown) + .lbl,
.nl-field input:focus + .lbl {
  transform: translateY(-18px) scale(0.86);
  color: #ffb27e;
}

.nl-btn {
  position: relative;
  white-space: nowrap;
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 900;
  cursor: pointer;
  color: #0c0f16;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  box-shadow: 0 12px 28px var(--ring);
  overflow: hidden;
}

.nl-field input:focus,
.nl-field input:not(:placeholder-shown) {
  border-color: #ff6a00;
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.15);
  border: 1px solid var(--color-primary);
}

.social-icon-ul {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
  gap: 8px;
  flex-wrap: wrap;
}

.social-icon-ul .social-icon-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #b4c2d9;
  background: #0f1624;
  overflow: hidden;
  position: relative;
  perspective: 600px; /* 3D effect ke liye */
}

.social-icon-ul .social-icon-link svg {
  width: 25px;
  height: 25px;
  fill: #b4c2d9;
  transition: transform 0.4s ease, fill 0.4s ease;
  z-index: 2;
}

/* Overlay for color fill */
.social-icon-ul .social-icon-link::after {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: bottom 0.4s ease;
  z-index: 1;
}

/* Hover effects (brand wise) */
.social-icon-ul .sosial-icon-item:nth-child(1) .social-icon-link:hover::after {
  background: #1877f2; /* Facebook */
  bottom: 0;
}
.social-icon-ul .sosial-icon-item:nth-child(1) .social-icon-link:hover svg {
  fill: white;
  transform: rotateY(360deg);
}

/* Instagram Hover */
.social-icon-ul .sosial-icon-item:nth-child(2) .social-icon-link:hover::after {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  bottom: 0;
}
.social-icon-ul .sosial-icon-item:nth-child(2) .social-icon-link:hover svg {
  fill: white;
  transform: rotateY(360deg);
}

.social-icon-ul .sosial-icon-item:nth-child(3) .social-icon-link:hover::after {
  background: #0a66c2; /* LinkedIn */
  bottom: 0;
}
.social-icon-ul .sosial-icon-item:nth-child(3) .social-icon-link:hover svg {
  fill: white;
  transform: rotateY(360deg);
}

.social-icon-ul .sosial-icon-item:nth-child(4) .social-icon-link:hover::after {
  background: #1da1f2; /* Twitter */
  bottom: 0;
}
.social-icon-ul .sosial-icon-item:nth-child(4) .social-icon-link:hover svg {
  fill: white;
  transform: rotateY(360deg);
}

.social-icon-ul .sosial-icon-item:nth-child(5) .social-icon-link:hover::after {
  background: #ff0000; /* YouTube */
  bottom: 0;
}
.social-icon-ul .sosial-icon-item:nth-child(5) .social-icon-link:hover svg {
  fill: white;
  transform: rotateY(360deg);
}

.footer-heading {
  font-size: 28px;
  color: white;
  font-weight: 600;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.footer-list .footer-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
  padding-left: 28px; /* arrow ke liye space aage */
}

/* Arrow hidden by default */
.footer-list .footer-link::before {
  content: "➜"; /* Arrow symbol */
  position: absolute;
  left: 0;
  font-size: 18px; /* mota/bada arrow */
  font-weight: bold;
  color: #ff9800; /* arrow ka color */
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

/* Hover par arrow animate hoke show hoga */
.footer-list .footer-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Text hover effect */
.footer-list .footer-link:hover {
  color: #ff9800; /* text ka color change */
  transform: translateX(4px); /* thoda side shift hoga */
}

.copy-right-text {
  color: var(--text-primary);
  font-size: 14px;
  margin: 0;
  font-weight: 500;
}

.police-ul {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.police-ul .police-link {
  color: var(--text-primary);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease; /* smooth transition */
}

.police-ul .police-link:hover {
  color: #ff9800; /* hover पर रंग बदल जाएगा */
  text-decoration: underline; /* underline भी आ जाएगी */
}

.steps-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.step-box {
  background: #fff;
  border-radius: 12px;
  border: 2px solid var(--color-primary);
  transition: all 0.3s ease;
  padding: 20px;
  height: 100%;
}

.step-box:hover {
  background: var(--color-primary);
  color: #fff;
}
.step-box p {
  text-align: justify;
  font-size: 14px;
}

.step-box .step-number {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-box-heading {
  font-size: 20px;
  font-weight: 600;
}



.circle-list{
  margin:0; padding:0; list-style:none; max-width:54ch; color:#0f172a;
}.circle-list li{
  position:relative; padding-left:28px; margin-bottom:.5rem;
}.circle-list li::before{
  content:""; position:absolute; left:0; top:.35rem; width:10px; height:10px;
  border-radius:50%; background:#0d6efd;
  box-shadow:0 0 0 6px #e9f2ff; /* soft ring */
}   /* image overlays */

.img-shade{
        position:absolute; inset:0; pointer-events:none;
        background:linear-gradient(180deg, rgba(13,110,253,.08), rgba(13,110,253,.0) 60%);
        }
        .checklist-ul{ margin:0; padding:0; list-style:none; }
.checklist-ul li{
  position:relative; padding-left:34px; margin-bottom:10px; color:#0f172a;
}
.checklist-ul li::before{
  content:""; position:absolute; left:0; top:.35rem; width:20px; height:20px;
  border-radius:50%; background:#0d6efd12; border:2px solid #0d6efd;
}
.checklist-ul li::after{
  content:""; position:absolute; left:6px; top:.55rem; width:6px; height:10px;
  border-right:2px solid #0d6efd; border-bottom:2px solid #0d6efd; transform:rotate(45deg);
}
@media (max-width: 1200px) {
  .mainHeader {
    background-color: white;
  }
  .mainHeader .navbar .header-container {
    border: none;
    box-shadow: none;
    padding: 0 1.5rem;
  }  .mega-dropdown .dropdown-menu {
    padding: 2px 0;
    margin: 0;
    box-shadow: none;
  }
}
@media (max-width: 992px) {
  .heading-one {
    font-size: 48px;
  }

  .heading-two {
    font-size: 40px;
  }

  .heading-there {
    font-size: 34px;
  }
  .heading-four {
    font-size: 28px;
  }


}
@media (max-width: 768px) {
  .heading-one {
    font-size: 44px;
  }

  .heading-two {
    font-size: 36px;
  }
  .sub-heading {
    font-size: 20px;
  }
}
@media (max-width: 568px) {
  .heading-one {
    font-size: 34px;
  }

  .heading-two {
    font-size: 30px;
  }

  .heading-there {
    font-size: 28px;
  }
  .heading-four {
    font-size: 22px;
  }
    .sub-heading {
    font-size: 18px;
  }
}
